Untitled
Anonymous
plain_text
05/19/2022 3:44 PM
484 B
21
Indexable
void blinkingLed( void *pvParameters __attribute__((unused)) ) // This is a Task.
{
// Task1: Higher priority (initially)
int i;
#if defined(__ESP32__)
esp_task_wdt_init(30, false); // Disable the HW watchdog for 30 seconds, only for ESPRESSIF BOARDS (ESP32)
#endif
for (;;) // A Task shall never return or exit.
{
}
}Editor is loading...