commit | 34e01984368ff2c689808ef8de182d838cd96725 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Tue Sep 20 14:28:17 2016 +1000 |
committer | Damien George <damien.p.george@gmail.com> | Tue Sep 20 14:28:17 2016 +1000 |
tree | 1c11ed0ec0571d05fb654f43981a234a6b83b53a | |
parent | cc7c311b5eab2749bc071716eec8a06271278f01 [diff] [blame] |
esp8266: Extend system microsecond counter to 64-bits; use in ticks_ms. So now ticks_ms can count up to the full 30 bits. Fixes issue #2412.
diff --git a/esp8266/ets_alt_task.h b/esp8266/ets_alt_task.h index 4b5ba26..dba0c5f 100644 --- a/esp8266/ets_alt_task.h +++ b/esp8266/ets_alt_task.h
@@ -1,2 +1,4 @@ extern int ets_loop_iter_disable; +extern uint32_t system_time_high_word; + bool ets_loop_iter(void);