Search found 5 matches

by ajosev5
Thu Nov 09, 2023 7:24 pm
Forum: ESP-IDF
Topic: [Solved, this code works!] ESP32-S3 + W5500 Ethernet no link up
Replies: 2
Views: 3669

Re: ESP32-S3 + W5500 Ethernet no link up

Did you first try any of the W5500 SPI boards out there first ? https://www.amazon.com/s?k=w5500+ethernet+network+module&crid=2HCBRUB5W8Q8V&qid=1699499896&sprefix=w5500%2Caps%2C82&ref=sr_pg_1 No, but I did order a couple today to try. Good suggestion, and probably what I should have done first. I w...
by ajosev5
Wed Nov 08, 2023 9:01 pm
Forum: ESP-IDF
Topic: [Solved, this code works!] ESP32-S3 + W5500 Ethernet no link up
Replies: 2
Views: 3669

[Solved, this code works!] ESP32-S3 + W5500 Ethernet no link up

Thank you, this is solved. There is a yet undetermined fault in the hardware design on our custom PCB. Connecting via SPI to an external W5500 ethernet module works - Link Up, IP address acquired, and ping success. A good lesson to test software with modules first. Hello, I'd like to check if anyon...
by ajosev5
Tue Apr 04, 2023 11:29 pm
Forum: ESP-IDF
Topic: ESP32-S3 - WiFi task causing incorrect FreeRTOS timer interrupt exec?
Replies: 4
Views: 1893

Re: ESP32-S3 - WiFi task causing incorrect FreeRTOS timer interrupt exec?

How do you figure the timer callback is being called back *prematurely*? I could explain the callback being *late* (as a higher-priority WiFi task may be delaying its execution) but prematurely is odd. Hi, I found this was happening by placing a log print in the timer handler. It fires exactly when...
by ajosev5
Wed Mar 29, 2023 2:45 pm
Forum: ESP-IDF
Topic: ESP32-S3 - WiFi task causing incorrect FreeRTOS timer interrupt exec?
Replies: 4
Views: 1893

ESP32-S3 - WiFi task causing incorrect FreeRTOS timer interrupt exec?

Device: ESP32-S3 IDF Version 5.0.1 Issue: My main code task runs some routines with an external radio, and I'm using a FreeRTOS timer to set timeouts for command responses. I start my WiFi task (which immediately connects to a network) and my main task simultaneously, and I am noticing that very oft...
by ajosev5
Wed Mar 29, 2023 2:43 am
Forum: ESP-IDF
Topic: WIFI task messes up timer interrupts
Replies: 1
Views: 1076

Re: WIFI task messes up timer interrupts

Hi, I seem to have a similar problem with the WiFi task clobbering my timer I'm using in another task, while WiFi is connecting. It appears to be causing my timer expired interrupt/callback to execute. Honestly, a pretty egregious bug. I found this by putting a LOG in my timer callback - it executes...