Hi everyone,
I have setup a esp-now network using Adafruit ESP8266. From one sender I Broadcast 1 byte at a time every second. All my 5 slaves receive this byte with a jitter of ~80 Micro second.
But when I look at how long it takes the sender to pass that 1 byte to the receivers, i have a fixed ...
Search found 4 matches
- Tue Jan 28, 2025 12:24 am
- Forum: Sample Code
- Topic: ESP now broadcast latency
- Replies: 0
- Views: 12754
- Tue Dec 10, 2024 3:48 pm
- Forum: Sample Code
- Topic: ESP32: low jitter implementation
- Replies: 2
- Views: 14417
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 ...
- Thu Nov 28, 2024 9:16 pm
- Forum: ESP32 Arduino
- Topic: Esp now reduce jitter
- Replies: 1
- Views: 2370
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 ...
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 ...
- Thu Nov 28, 2024 5:18 pm
- Forum: Sample Code
- Topic: ESP32: low jitter implementation
- Replies: 2
- Views: 14417
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 ...
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 ...