Search found 2 matches

by markelov69
Sun May 29, 2022 9:24 am
Forum: General Discussion
Topic: ESP32-S3 hardware timer interrupt doesn't work stable
Replies: 6
Views: 4894

Re: ESP32-S3 hardware timer interrupt doesn't work stable

I use
#define TIMER_DIVIDER (2) // Hardware timer clock divider

To reply my issue you need to add some task, not only timer, in my case it tcp_server.

xTaskCreate(tcp_server_task, "tcp_server", 4096, NULL, 1, NULL);

And when it start to receive data through wi-fi i see unstable interrupts.
by markelov69
Sat May 28, 2022 9:54 am
Forum: General Discussion
Topic: ESP32-S3 hardware timer interrupt doesn't work stable
Replies: 6
Views: 4894

ESP32-S3 hardware timer interrupt doesn't work stable

Hi, everyone.
I have timer and 1 tcp server task.
The problem is:
https://sun9-west.userapi.com/sun9-53/s/v1/if2/9GNdqljKU3IhRaEbBrbmxfERS-DDALO6vcGOXiVDldKsHsmId4cvl-GTpy4diU1-uDdZvAT9WeAGy5Il6I4TIqhX.jpg?size=651x133&quality=96&type=album

My timer interrupt code for debug is:

static bool ...

Go to advanced search