fix(esp8266): fix CPU ticks per milli second at 160MHz

Closes https://github.com/espressif/ESP8266_RTOS_SDK/issues/762
This commit is contained in:
Dong Heng
2019-11-22 11:13:18 +08:00
parent d9aafacfe3
commit 0e39eb1038

View File

@ -103,7 +103,7 @@
#define CPU_FREQ_160MHZ (160 * 1000 * 1000)
#define CPU_FREQ_80MHz (80 * 1000 * 1000)
#define CPU_160M_TICKS_PRT_MS (CPU_FREQ_160MHZ / FREQ_1MHZ)
#define CPU_160M_TICKS_PRT_MS (CPU_FREQ_160MHZ / FREQ_1KHZ)
#define CPU_80M_TICKS_PRT_MS (CPU_FREQ_80MHz / FREQ_1KHZ)
#define CPU_160M_TICKS_PRT_US (CPU_FREQ_160MHZ / FREQ_1MHZ)