Search found 8 matches

by maximekli
Wed Jul 29, 2020 10:57 am
Forum: ESP-IDF
Topic: Wi-Fi sending delays
Replies: 1
Views: 2791

Wi-Fi sending delays

Hello, I am currently working on a project where an ESP32 based board is used in a legged robot as a bridge between a control computer using Ethernet or Wi-Fi and a set of sensors and actuators using SPI. The control loop is working at 1kHz. While working in Wi-Fi, we are sometimes witnessing some s...
by maximekli
Mon Jul 06, 2020 9:09 am
Forum: ESP-IDF
Topic: Ethernet reception delays and unwanted behaviours
Replies: 3
Views: 4111

Re: Ethernet reception delays and unwanted behaviours

Hello all !

Any insight on this ? Is there something I am missing about the ESP32 ethernet API ?
by maximekli
Thu Jul 02, 2020 9:22 am
Forum: ESP-IDF
Topic: Ethernet reception delays and unwanted behaviours
Replies: 3
Views: 4111

Re: Ethernet reception delays and unwanted behaviours

Hi, thank you for your reply. it's something related to the OS scheduler We are already investigating the guilt of the scheduler and RT capabilities of the OS in that matter, but the issues are still present (even though less frequent) with 2 ESP32s (one sending, one receiving) so Linux is not the o...
by maximekli
Wed Jul 01, 2020 7:52 am
Forum: ESP-IDF
Topic: Ethernet reception delays and unwanted behaviours
Replies: 3
Views: 4111

Ethernet reception delays and unwanted behaviours

Hello, I am currently working on a project where an ESP32 based board is used in a legged robot as a bridge between a control computer using Ethernet and a set of sensors and actuators using SPI. The control loop is working at 1kHz. Sometimes, we are clearly seeing that some packets are lost or dela...
by maximekli
Thu May 28, 2020 10:32 am
Forum: ESP-IDF
Topic: Pin Ethernet related tasks to core 1 [IDFGH-3383]
Replies: 6
Views: 6435

Re: Pin Ethernet related tasks to core 1

Thank you for your answer, that would be great !

ESP_morris wrote:
Wed May 27, 2020 10:15 am
By now, you can hack esp-idf code a little to pin the task to the core you want: https://github.com/espressif/esp-idf/bl ... p32.c#L458
This litlle hack worked perfectly, thanks.

Maxime
by maximekli
Wed May 27, 2020 9:42 am
Forum: ESP-IDF
Topic: Pin Ethernet related tasks to core 1 [IDFGH-3383]
Replies: 6
Views: 6435

Re: Pin Ethernet related tasks to core 1

Hi ! Thank you for your answer. The board I'm working on is used in a legged robot as a bridge between a control computer using Ethernet and a set of sensors and actuators using SPI. The control loop is working at 1kHz. Then, we need the Ethernet communication, and especially the receiving callback,...
by maximekli
Mon May 25, 2020 9:36 am
Forum: ESP-IDF
Topic: Pin Ethernet related tasks to core 1 [IDFGH-3383]
Replies: 6
Views: 6435

Re: Pin Ethernet related tasks to core 1

The reaction to a incoming packet needs to be as fast as possible, that's why being able to pin that to one core would be very helpful.

Any insight on this ?
by maximekli
Wed May 20, 2020 9:58 am
Forum: ESP-IDF
Topic: Pin Ethernet related tasks to core 1 [IDFGH-3383]
Replies: 6
Views: 6435

Pin Ethernet related tasks to core 1 [IDFGH-3383]

Hello, I am currently working on a project where an ESP32 based board needs to communicate with a computer via Ethernet. Is there any way to pin all Ethernet related tasks to core 1, as for the Wi-Fi task in menuconfig ? I should specify that I am using the driver in standalone mode (without TCP/IP ...