Re: Webserver running on Core0 issues
Posted: Thu Jan 31, 2019 3:18 pm
Dimming of mains. Zero crossing detection and handling of triacs. In pic microconrollers I use a hardware interrupt and can handle the rest of my code in between interrupts but with the esp32 so far I did not have good success with its interrupt (seemed to not be consistant) so I have it dedicated to the core1 task. Any interruption and your delay routine is thrown off and your output power is a mess. So ideally the webserver side would totally run off of core0 but it seems its own wifi and background tasks don't allow consistent pages to be served.