Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 497bd4a

Browse files
authored
v1.10.0 to use latest ESP32 versions
### Major Releases v1.10.0 1. Update to use latest versions of ESP32_New_TimerInterrupt Library - [ESP32_New_TimerInterrupt v1.3.0](https://github.com/khoih-prog/ESP32_New_TimerInterrupt) 2. Update `Packages_Patches`
1 parent f92bd31 commit 497bd4a

File tree

7 files changed

+7
-9
lines changed

7 files changed

+7
-9
lines changed

examples/ESP32/Argument_None/Argument_None.ino

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************************************************************
22
Argument_None.ino
3-
For ESP32, ESP32_S2, ESP32_C3 boards with ESP32 core v2.0.0+
3+
For ESP32, ESP32_S2, ESP32_S3, ESP32_C3 boards with ESP32 core v2.0.0+
44
Written by Khoi Hoang
55
66
Built by Khoi Hoang https://github.com/khoih-prog/ESP32_New_TimerInterrupt
@@ -57,7 +57,6 @@
5757
bool IRAM_ATTR TimerHandler0(void * timerNo)
5858
{
5959
static bool toggle0 = false;
60-
static bool started = false;
6160

6261
//timer interrupt toggles pin LED_BUILTIN
6362
digitalWrite(LED_BUILTIN, toggle0);
@@ -74,7 +73,6 @@ bool IRAM_ATTR TimerHandler1(void * timerNo)
7473
/////////////////////////////////////////////////////////
7574

7675
static bool toggle1 = false;
77-
static bool started = false;
7876

7977
//timer interrupt toggles outputPin
8078
digitalWrite(PIN_D3, toggle1);

examples/ESP32/Change_Interval/Change_Interval.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************************************************************
22
Change_Interval.ino
3-
For ESP32, ESP32_S2, ESP32_C3 boards with ESP32 core v2.0.0+
3+
For ESP32, ESP32_S2, ESP32_S3, ESP32_C3 boards with ESP32 core v2.0.0+
44
Written by Khoi Hoang
55
66
Built by Khoi Hoang https://github.com/khoih-prog/ESP32_New_TimerInterrupt

examples/ESP32/ISR_16_Timers_Array/ISR_16_Timers_Array.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************************************************************
22
ISR_16_Timers_Array.ino
3-
For ESP32, ESP32_S2, ESP32_C3 boards with ESP32 core v2.0.0+
3+
For ESP32, ESP32_S2, ESP32_S3, ESP32_C3 boards with ESP32 core v2.0.0+
44
Written by Khoi Hoang
55
66
Built by Khoi Hoang https://github.com/khoih-prog/ESP32_New_TimerInterrupt

examples/ESP32/ISR_16_Timers_Array_Complex/ISR_16_Timers_Array_Complex.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************************************************************
22
ISR_16_Timers_Array_Complex.ino
3-
For ESP32, ESP32_S2, ESP32_C3 boards with ESP32 core v2.0.0+
3+
For ESP32, ESP32_S2, ESP32_S3, ESP32_C3 boards with ESP32 core v2.0.0+
44
Written by Khoi Hoang
55
66
Built by Khoi Hoang https://github.com/khoih-prog/ESP32_New_TimerInterrupt

examples/ESP32/RPM_Measure/RPM_Measure.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************************************************************
22
RPM_Measure.ino
3-
For ESP32, ESP32_S2, ESP32_C3 boards with ESP32 core v2.0.0+
3+
For ESP32, ESP32_S2, ESP32_S3, ESP32_C3 boards with ESP32 core v2.0.0+
44
Written by Khoi Hoang
55
66
Built by Khoi Hoang https://github.com/khoih-prog/ESP32_New_TimerInterrupt

examples/ESP32/SwitchDebounce/SwitchDebounce.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************************************************************
22
SwitchDebounce.ino
3-
For ESP32, ESP32_S2, ESP32_C3 boards with ESP32 core v2.0.0+
3+
For ESP32, ESP32_S2, ESP32_S3, ESP32_C3 boards with ESP32 core v2.0.0+
44
Written by Khoi Hoang
55
66
Built by Khoi Hoang https://github.com/khoih-prog/ESP32_New_TimerInterrupt

examples/ESP32/TimerInterruptTest/TimerInterruptTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************************************************************
22
TimerInterruptTest.ino
3-
For ESP32, ESP32_S2, ESP32_C3 boards with ESP32 core v2.0.0+
3+
For ESP32, ESP32_S2, ESP32_S3, ESP32_C3 boards with ESP32 core v2.0.0+
44
Written by Khoi Hoang
55
66
Built by Khoi Hoang https://github.com/khoih-prog/ESP32_New_TimerInterrupt

0 commit comments

Comments
 (0)