bool core0_task() {
sys_printf(
"core 0: Failed to initialize watchdog\n");
return false;
}
}
int count = 0;
do {
if (count == 50) {
}
} while (true);
return true;
}
int main() {
sys_printf(
"Watchdog not supported on this hardware\n");
return -1;
}
if (core0_task() == false) {
}
return 0;
}