16uint32_t WDG_get_CSR(
void);
18static constexpr uint32_t WATCHDOG_TIMEOUT_MS = 1000;
19static constexpr uint32_t WATCHDOG_PET_PERIOD_MS = 100;
21#define DEFINE_WATCHDOG_TASK() DEFINE_TASK(WDG_pet, WATCHDOG_PET_PERIOD_MS, osPriorityLow, STACK_256)
23#define START_WATCHDOG_TASK() START_TASK(WDG_pet)
Wrapper macros for FreeRTOS constructs (tasks, queues, semaphores) to simplify static memory allocati...