esp8266/esp_mphal: Remove mp_hal_feed_watchdog.
It doesn't do anything and is not needed. ets_loop_iter/ets_event_poll now take care of feeding the WDT.
This commit is contained in:
parent
c4e26dd19a
commit
d4f4cb6a24
@ -51,12 +51,6 @@ void mp_hal_init(void) {
|
|||||||
uart_init(UART_BIT_RATE_115200, UART_BIT_RATE_115200);
|
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) {
|
void mp_hal_delay_us(uint32_t us) {
|
||||||
uint32_t start = system_get_time();
|
uint32_t start = system_get_time();
|
||||||
while (system_get_time() - start < us) {
|
while (system_get_time() - start < us) {
|
||||||
@ -71,7 +65,6 @@ int mp_hal_stdin_rx_chr(void) {
|
|||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
mp_hal_delay_us(1);
|
mp_hal_delay_us(1);
|
||||||
mp_hal_feed_watchdog();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,7 +41,6 @@ void mp_hal_signal_dupterm_input(void);
|
|||||||
|
|
||||||
void mp_hal_init(void);
|
void mp_hal_init(void);
|
||||||
void mp_hal_rtc_init(void);
|
void mp_hal_rtc_init(void);
|
||||||
void mp_hal_feed_watchdog(void);
|
|
||||||
|
|
||||||
uint32_t mp_hal_ticks_us(void);
|
uint32_t mp_hal_ticks_us(void);
|
||||||
void mp_hal_delay_us(uint32_t);
|
void mp_hal_delay_us(uint32_t);
|
||||||
|
Loading…
Reference in New Issue
Block a user