From 925d4aedb21514964a91bd541f4b2c57110f95a4 Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Tue, 18 Jan 2022 19:06:48 -0500 Subject: [PATCH] v1.5.0 to add more features and fix bug ### Releases v1.5.0 1. Fix `multiple-definitions` linker error. Drop `src_cpp` and `src_h` directories 2. Add feature to select among highest, medium or lowest accuracy for Timers for shortest, medium or longest time 3. Fix reattachInterrupt() bug. Check [bugfix: reattachInterrupt() pass wrong frequency value to setFrequency() #19](https://github.com/khoih-prog/ESP8266TimerInterrupt/pull/19) 4. Update examples --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d8195c3..50f0a2c 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ * [ 6. TimerInterruptTest](examples/TimerInterruptTest) * [ 7. ISR_16_Timers_Array](examples/ISR_16_Timers_Array) **New** * [ 8. ISR_16_Timers_Array_Complex](examples/ISR_16_Timers_Array_Complex) **New** -* [Example ISR_Timer_Complex](#example-isr_timer_complex) +* [Example Change_Interval](#example-change_interval) * [Debug Terminal Output Samples](#debug-terminal-output-samples) * [1. TimerInterruptTest on ESP8266_NODEMCU_ESP12E](#1-timerinterrupttest-on-esp8266_nodemcu_esp12e) * [2. Change_Interval on ESP8266_NODEMCU_ESP12E](#2-change_interval-on-esp8266_nodemcu_esp12e) @@ -125,7 +125,7 @@ The catch is **your function is now part of an ISR (Interrupt Service Routine), ## Prerequisites -1. [`Arduino IDE 1.8.16+`](https://www.arduino.cc/en/Main/Software) +1. [`Arduino IDE 1.8.19+` for Arduino](https://github.com/arduino/Arduino). [![GitHub release](https://img.shields.io/github/release/arduino/Arduino.svg)](https://github.com/arduino/Arduino/releases/latest) 2. [`ESP8266 Core 3.0.2+`](https://github.com/esp8266/Arduino) for ESP8266-based boards. [![Latest release](https://img.shields.io/github/release/esp8266/Arduino.svg)](https://github.com/esp8266/Arduino/releases/latest/). To use ESP8266 core 2.7.1+ for LittleFS. 3. [`SimpleTimer library`](https://github.com/jfturcot/SimpleTimer) to use with some examples.