mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 21:27:30 -04:00
11 lines
263 B
C++
11 lines
263 B
C++
#pragma once
|
|
#include "watchdog.hpp"
|
|
|
|
namespace bsp::watchdog
|
|
{
|
|
__attribute__((weak)) void init() {}
|
|
__attribute__((weak)) void system_reset() {}
|
|
__attribute__((weak)) void pet() {}
|
|
__attribute__((weak)) std::string reset_cause() { return {}; }
|
|
}
|