diff --git a/esp8266/esp_mphal.c b/esp8266/esp_mphal.c
index 914097f9b5e7919303cac9e7ea12a8145a456d06..0573f3d56cba6547e0d5bdb32e020042c2463f0b 100644
--- a/esp8266/esp_mphal.c
+++ b/esp8266/esp_mphal.c
@@ -51,12 +51,6 @@ void mp_hal_init(void) {
     uart_init(UART_BIT_RATE_115200, UART_BIT_RATE_115200);
 }
 
-void mp_hal_feed_watchdog(void) {
-    //ets_wdt_disable(); // it's a pain while developing
-    //WRITE_PERI_REG(0x60000914, 0x73);
-    //wdt_feed(); // might also work
-}
-
 void mp_hal_delay_us(uint32_t us) {
     uint32_t start = system_get_time();
     while (system_get_time() - start < us) {
@@ -71,7 +65,6 @@ int mp_hal_stdin_rx_chr(void) {
             return c;
         }
         mp_hal_delay_us(1);
-        mp_hal_feed_watchdog();
     }
 }
 
diff --git a/esp8266/esp_mphal.h b/esp8266/esp_mphal.h
index 6ce00fce41d73bea8e29a8cc946607cbd6ded0be..82277ed5af0ae1723457b6ef7b1549013ff1a5ec 100644
--- a/esp8266/esp_mphal.h
+++ b/esp8266/esp_mphal.h
@@ -41,7 +41,6 @@ void mp_hal_signal_dupterm_input(void);
 
 void mp_hal_init(void);
 void mp_hal_rtc_init(void);
-void mp_hal_feed_watchdog(void);
 
 uint32_t mp_hal_ticks_us(void);
 void mp_hal_delay_us(uint32_t);