Skip to content

Commit

Permalink
esp8266/esp_mphal: No longer disable watchdog on startup.
Browse files Browse the repository at this point in the history
Disabling it was an omission from early development stages.
  • Loading branch information
Paul Sokolovsky committed Aug 20, 2016
1 parent d076fae commit f2a21a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp8266/esp_mphal.c
Expand Up @@ -46,7 +46,7 @@ void mp_hal_debug_tx_strn_cooked(void *env, const char *str, uint32_t len);
const mp_print_t mp_debug_print = {NULL, mp_hal_debug_tx_strn_cooked};

void mp_hal_init(void) {
ets_wdt_disable(); // it's a pain while developing
//ets_wdt_disable(); // it's a pain while developing
mp_hal_rtc_init();
uart_init(UART_BIT_RATE_115200, UART_BIT_RATE_115200);
}
Expand Down

1 comment on commit f2a21a2

@holdenweb
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm wondering if this explains the rash of

rst cause: 4, boot mode:(3,7)

wdt reset

errors that have been reported for the D1 Mini. Do you happen to know which release this patch became active, please?

Please sign in to comment.