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

Commit cc1b6a5

Browse files
authored
Merge pull request #5 from brentru/add-newer-adafruit-boards
Add newer Adafruit boards
2 parents d26fe91 + 731251e commit cc1b6a5

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ESP32_ISR_Servo",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"keywords": "timer, interrupt, isr, hardware, servo, isr-based-servo, servo-control, esp32, esp32-s2, esp32-s3, esp32-c3, mission-critical, precise, non-blocking",
55
"description": "This library enables you to use 1 Hardware Timer on an ESP32-based board to control up to 16 or more servo motors. Now supporting ESP32, ESP32_S2, ESP32_S3, ESP32_C3-based boards. Tested OK with ESP32 core v2.0.3",
66
"authors":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESP32_ISR_Servo
2-
version=1.3.0
2+
version=1.3.1
33
author=Khoi Hoang
44
maintainer=Khoi Hoang <[email protected]>
55
license=MIT

src/ESP32_ISR_Servo.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,13 @@
3131

3232
#if ( ARDUINO_ESP32S2_DEV || ARDUINO_FEATHERS2 || ARDUINO_ESP32S2_THING_PLUS || ARDUINO_MICROS2 || \
3333
ARDUINO_METRO_ESP32S2 || ARDUINO_MAGTAG29_ESP32S2 || ARDUINO_FUNHOUSE_ESP32S2 || \
34-
ARDUINO_ADAFRUIT_FEATHER_ESP32S2_NOPSRAM )
34+
ARDUINO_ADAFRUIT_FEATHER_ESP32S2_NOPSRAM || ARDUINO_ADAFRUIT_QTPY_ESP32S2)
3535
#define USING_ESP32_S2_TIMERINTERRUPT true
3636
#elif ( defined(ARDUINO_ESP32S3_DEV) || defined(ARDUINO_ESP32_S3_BOX) || defined(ARDUINO_TINYS3) || \
37-
defined(ARDUINO_PROS3) || defined(ARDUINO_FEATHERS3) )
37+
defined(ARDUINO_PROS3) || defined(ARDUINO_FEATHERS3) || defined(ARDUINO_ADAFRUIT_FEATHER_ESP32S3_NOPSRAM) || \
38+
defined(ARDUINO_ADAFRUIT_QTPY_ESP32S3_NOPSRAM))
3839
#define USING_ESP32_S3_TIMERINTERRUPT true
39-
#elif ( ARDUINO_ESP32C3_DEV )
40+
#elif ( ARDUINO_ESP32C3_DEV)
4041
#define USING_ESP32_C3_TIMERINTERRUPT true
4142
#elif defined(ESP32)
4243
#define USING_ESP32_TIMERINTERRUPT true

0 commit comments

Comments
 (0)