summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266/etshal.h
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-09-03 20:45:11 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-09-03 20:45:11 +0300
commit015774a04faa50708ce3692dc3748989e19e98e9 (patch)
tree725d857dc113ee2085db8d2be531eeeeec0b9fe7 /esp8266/etshal.h
parent4a33677c9720bd7f2ce5b0f816cc4c87220570ac (diff)
downloadmicropython-015774a04faa50708ce3692dc3748989e19e98e9.tar.gz
micropython-015774a04faa50708ce3692dc3748989e19e98e9.zip
esp8266/modmachinewdt: Add .deinit() method.
Diffstat (limited to 'esp8266/etshal.h')
-rw-r--r--esp8266/etshal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/esp8266/etshal.h b/esp8266/etshal.h
index dd61ddec93..e7326a43ba 100644
--- a/esp8266/etshal.h
+++ b/esp8266/etshal.h
@@ -20,6 +20,9 @@ void ets_timer_arm_new(os_timer_t *tim, uint32_t millis, bool repeat, bool is_mi
void ets_timer_setfn(os_timer_t *tim, ETSTimerFunc callback, void *cb_data);
void ets_timer_disarm(os_timer_t *tim);
+extern void ets_wdt_disable(void);
+extern void wdt_feed(void);
+
// Opaque structure
typedef char MD5_CTX[64];