- I use a hw_timer_t to run an IRAM_ATTR ISR every 10us to update the matrix shift register,
- and have a TCP server (WiFiServer) to receive instructions, checking for new clients in the loop().
I have looked through the core release notes but cannot find anything timer/wifi related, except maybe https://github.com/espressif/arduino-es ... t/954df2fc but i don't know how that could help me.
I have tried to add portENTER_CRITICAL_ISR and EXIT in the ISR but that does not help.
I thought of using RTOS tasks but that would get complicated, and i hope there is another fix to make it work again as before.
(I know there are DMA libraries for LED matrix too, i'm using one with another type of matrix and the issue does not occur with DMA. Unfortunately i cannot make the DMA library work with the above matrix)
Any advice much appreciated, thanks.