File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Software/Arduino code/OpenAstroTracker Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 25
25
1.0.1 K Hoang 16/11/2019 Add long timer feature, clean up, higher accuracy
26
26
1.0.2 K Hoang 28/11/2019 Permit up to 16 super-long-time, super-accurate ISR-based timers to avoid being blocked
27
27
****************************************************************************************************************************/
28
- #if !defined(ESP8266)
28
+ #if !defined(ESP8266) && !defined(ESP32)
29
29
30
30
#define TIMER_INTERRUPT_DEBUG 0
31
31
#include " TimerInterrupt.h"
Original file line number Diff line number Diff line change @@ -13,7 +13,10 @@ src_dir = .
13
13
14
14
[env]
15
15
framework = arduino
16
+ lib_ldf_mode = chain+
16
17
lib_deps =
18
+ SPI
19
+ Serial
17
20
LiquidCrystal
18
21
AccelStepper
19
22
EEPROM
@@ -22,7 +25,6 @@ lib_deps =
22
25
[env:mega2560]
23
26
platform = atmelavr
24
27
board = megaatmega2560
25
- framework = arduino
26
28
27
29
[env:uno]
28
30
platform = atmelavr
@@ -35,4 +37,8 @@ lib_deps =
35
37
LiquidCrystal
36
38
AccelStepper
37
39
EEPROM
38
- ESP8266WiFi
40
+ ESP8266WiFi
41
+
42
+ [env:esp32]
43
+ platform = espressif32
44
+ board = esp32dev
You can’t perform that action at this time.
0 commit comments