This group contains all active watchdogs.
Each watchdog is a sub group with the watchdog name as the group name.
"watchdog": { "timeout_watchdog": { "type": "timeout" "timeout": "100ms" } }
defines what type of watchdog. Type can be:
type: enum
default: timeout
defines the deadline for a timeout watchdog
type: string
default: 100ms
The part “watchdog name” in the described functions will be replaced by the name of the watchdog. E.g. if your watchdog is called “window_watchdog” then the API function “void watchdog_name_feed(void)” will become “void window_watchdog_feed(void)”.
void watchdog_name_feed(void)