Merge branch 'master' of github.com:espruino/Espruino

This commit is contained in:
Gordon Williams 2020-10-09 15:52:31 +01:00
commit 95a97e5f38

View File

@ -412,13 +412,17 @@ void jshSetOutputValue(JshPinFunction func, int value) {
*/
void jshEnableWatchDog(JsVarFloat timeout) {
UNUSED(timeout);
#ifdef DEBUG
jsError(">> jshEnableWatchDog Not implemented,using taskwatchdog from RTOS");
#endif
}
// Kick the watchdog
void jshKickWatchDog() {
#ifdef DEBUG
jsError(">> jshKickWatchDog Not implemented,using taskwatchdog from RTOS");
#endif
}