From e673b455b7ba6301f54ed730d1967ccd92e64f85 Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Wed, 16 Nov 2022 15:01:29 -0500 Subject: [PATCH] v1.5.0 fixes doubling time bug ### Releases v1.5.0 1. Fix doubled time for ESP32_C3, ESP32_S2 and ESP32_S3. Check [Error in the value defined by TIMER0_INTERVAL_MS #28](https://github.com/khoih-prog/ESP32_New_TimerInterrupt/issues/28) 2. Modify examples to avoid using `LED_BUILTIN` / `GPIO2` as it can cause crash in some boards, such as `ESP32_C3` 3. Use `allman astyle` and add `utils` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c173c3d..7fb7614 100644 --- a/README.md +++ b/README.md @@ -280,7 +280,7 @@ Before using any Timer, you have to make sure the Timer has not been used by any ### Example [ISR_16_Timers_Array_Complex](examples/ISR_16_Timers_Array_Complex) -https://github.com/khoih-prog/ESP32_New_TimerInterrupt/blob/bf13ce54803b1f2cdc22649e711141d2f1cac45f/examples/ISR_16_Timers_Array_Complex/ISR_16_Timers_Array_Complex.ino#L43-L369 +https://github.com/khoih-prog/ESP32_New_TimerInterrupt/blob/eb11f04967974c3b19e9c0f7b7ba078af49526c9/examples/ISR_16_Timers_Array_Complex/ISR_16_Timers_Array_Complex.ino#L43-L383 --- ---