#include "../cpu.h" #include #include "../watchdog.h" namespace hal { namespace cpu { void Init() { } void Reset() { cli(); watchdog::Enable(watchdog::configuration::compute(0)); //quickest watchdog reset for (;;) ; //endless loop while waiting for the watchdog to reset } } // namespace CPU } // namespace hal