-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
50 lines (45 loc) · 1.2 KB
/
platformio.ini
File metadata and controls
50 lines (45 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[platformio]
default_envs = teensy40
[env:teensylc]
platform = teensy
board = teensylc
framework = arduino
build_flags =
-D TEENSY_OPT_SMALLEST_CODE
-D SERIAL1_RX_BUFFER_SIZE=256
lib_deps =
br3ttb/PID@^1.2.1
arduino-libraries/Servo@^1.2.1
marcoschwartz/LiquidCrystal_I2C@^1.1.4
khoih-prog/TimerInterrupt_Generic@^1.13.0
[env:uno]
platform = atmelavr
board = uno
framework = arduino
build_flags = -D ENABLE_ARDUINO=1
lib_deps =
br3ttb/PID@^1.2.1
arduino-libraries/Servo@^1.2.1
marcoschwartz/LiquidCrystal_I2C@^1.1.4
khoih-prog/TimerInterrupt_Generic@^1.13.0
[env:teensy40]
platform = teensy
board = teensy40
framework = arduino
build_flags =
-D TEENSY_OPT_SMALLEST_CODE
-D SERIAL1_RX_BUFFER_SIZE=512
lib_deps =
br3ttb/PID@^1.2.1
arduino-libraries/Servo@^1.2.1
marcoschwartz/LiquidCrystal_I2C@^1.1.4
khoih-prog/TimerInterrupt_Generic@^1.13.0