Search found 3 matches
- Tue Dec 10, 2024 3:48 pm
- Forum: Sample Code
- Topic: ESP32: low jitter implementation
- Replies: 2
- Views: 2448
Re: ESP32: low jitter implementation
Receiver code void loop() { } Any clue/help would be really appreciated!! Give the CPU some breathing room: void loop() { vTaskDelete(NULL); } or at least void loop() { vTaskDelay(10000/portTICK_PERIOD_MS); } Thanks a lot! I realized that the esp32 boards were not running with full speed in Arduino...
- Thu Nov 28, 2024 9:16 pm
- Forum: ESP32 Arduino
- Topic: Esp now reduce jitter
- Replies: 1
- Views: 992
Esp now reduce jitter
Hi everyone, I am working on a low jitter solution using two ESP32 S3 V1 board with Arduino IDE. My delay and jitter is currently 8 ms and 4 ms respectively. I am wondering how to improve the performace of in terms of jitter. Any clue would be greatly appreciated! Below is my code: Sender Code: #inc...
- Thu Nov 28, 2024 5:18 pm
- Forum: Sample Code
- Topic: ESP32: low jitter implementation
- Replies: 2
- Views: 2448
ESP32: low jitter implementation
Hi everyone, I am working on a low jitter solution using two ESP32 S3 V1 board with Arduino IDE. My delay and jitter is currently 8 ms and 4 ms respectively. I am wondering how to improve the performace of in terms of jitter. Any clue would be greatly appreciated! Below is my code: Sender Code: #inc...