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

Commit 10918f2

Browse files
authored
v1.7.0 to add support to more boards
### Releases v1.7.0 1. Add support to - ESP32_C3 : LOLIN_C3_MINI, DFROBOT_BEETLE_ESP32_C3, ADAFRUIT_QTPY_ESP32C3, AirM2M_CORE_ESP32C3, XIAO_ESP32C3
1 parent ea1bddf commit 10918f2

File tree

8 files changed

+0
-32
lines changed

8 files changed

+0
-32
lines changed

examples/Argument_None/Argument_None.ino

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@
3737
written
3838
*/
3939

40-
#if !( ARDUINO_ESP32C3_DEV )
41-
#error This code is intended to run on the ESP32_C3 platform! Please check your Tools->Board setting.
42-
#endif
43-
4440
// These define's must be placed at the beginning before #include "TimerInterrupt_Generic.h"
4541
// _TIMERINTERRUPT_LOGLEVEL_ from 0 to 4
4642
// Don't define _TIMERINTERRUPT_LOGLEVEL_ > 0. Only for special ISR debugging only. Can hang the system.

examples/Change_Interval/Change_Interval.ino

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@
3737
written
3838
*/
3939

40-
#if !( ARDUINO_ESP32C3_DEV )
41-
#error This code is intended to run on the ESP32_C3 platform! Please check your Tools->Board setting.
42-
#endif
43-
4440
// These define's must be placed at the beginning before #include "TimerInterrupt_Generic.h"
4541
// _TIMERINTERRUPT_LOGLEVEL_ from 0 to 4
4642
// Don't define _TIMERINTERRUPT_LOGLEVEL_ > 0. Only for special ISR debugging only. Can hang the system.

examples/ISR_16_Timers_Array/ISR_16_Timers_Array.ino

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@
3737
written
3838
*/
3939

40-
#if !( ARDUINO_ESP32C3_DEV )
41-
#error This code is intended to run on the ESP32_C3 platform! Please check your Tools->Board setting.
42-
#endif
43-
44-
4540
// These define's must be placed at the beginning before #include "ESP32TimerInterrupt.h"
4641
// _TIMERINTERRUPT_LOGLEVEL_ from 0 to 4
4742
// Don't define _TIMERINTERRUPT_LOGLEVEL_ > 0. Only for special ISR debugging only. Can hang the system.

examples/ISR_16_Timers_Array_Complex/ISR_16_Timers_Array_Complex.ino

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@
3737
written
3838
*/
3939

40-
#if !( ARDUINO_ESP32C3_DEV )
41-
#error This code is intended to run on the ESP32_C3 platform! Please check your Tools->Board setting.
42-
#endif
4340

4441
// These define's must be placed at the beginning before #include "TimerInterrupt_Generic.h"
4542
// _TIMERINTERRUPT_LOGLEVEL_ from 0 to 4

examples/RPM_Measure/RPM_Measure.ino

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@
3737
written
3838
*/
3939

40-
#if !( ARDUINO_ESP32C3_DEV )
41-
#error This code is intended to run on the ESP32_C3 platform! Please check your Tools->Board setting.
42-
#endif
43-
4440
// These define's must be placed at the beginning before #include "TimerInterrupt_Generic.h"
4541
// _TIMERINTERRUPT_LOGLEVEL_ from 0 to 4
4642
// Don't define _TIMERINTERRUPT_LOGLEVEL_ > 0. Only for special ISR debugging only. Can hang the system.

examples/SwitchDebounce/SwitchDebounce.ino

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@
3737
written
3838
*/
3939

40-
#if !( ARDUINO_ESP32C3_DEV )
41-
#error This code is intended to run on the ESP32_C3 platform! Please check your Tools->Board setting.
42-
#endif
43-
4440
//These define's must be placed at the beginning before #include "TimerInterrupt.h"
4541
// Don't define TIMER_INTERRUPT_DEBUG > 2. Only for special ISR debugging only. Can hang the system.
4642
#define TIMER_INTERRUPT_DEBUG 1

examples/TimerInterruptTest/TimerInterruptTest.ino

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@
3737
written
3838
*/
3939

40-
#if !( ARDUINO_ESP32C3_DEV )
41-
#error This code is intended to run on the ESP32_C3 platform! Please check your Tools->Board setting.
42-
#endif
43-
4440
// These define's must be placed at the beginning before #include "TimerInterrupt_Generic.h"
4541
// _TIMERINTERRUPT_LOGLEVEL_ from 0 to 4
4642
// Don't define _TIMERINTERRUPT_LOGLEVEL_ > 0. Only for special ISR debugging only. Can hang the system.

examples/multiFileProject/multiFileProject.ino

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020

2121
// To demo how to include files in multi-file Projects
2222

23-
#if !( ARDUINO_ESP32C3_DEV )
24-
#error This code is intended to run on the ESP32_C3 platform! Please check your Tools->Board setting.
25-
#endif
26-
2723
#include "multiFileProject.h"
2824

2925
// Can be included as many times as necessary, without `Multiple Definitions` Linker Error

0 commit comments

Comments
 (0)