-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
46 lines (42 loc) · 1.37 KB
/
platformio.ini
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
[env:nano]
platform = atmelavr
framework = arduino
board = nanoatmega328
build_flags = -DTRANSPONDER
lib_ldf_mode = chain+
lib_ignore = Adafruit ILI9341, Adafruit_GFX, Adafruit_STMPE610, Touch_Screen, SD, Teensy-RAM-Monitor
src_filter = -<*> +<common/*> +<transponder/*>
lib_deps = arduino-libraries/SD@^1.2.4
[env:mega]
platform = atmelavr
framework = arduino
board = megaatmega2560
lib_install = 13
build_flags = -DHANDSET
src_filter = -<*> +<common/*> +<handset/*>
[env:teensy]
platform = teensy
framework = arduino
board = teensy35
lib_ignore = Adafruit ILI9341, Adafruit_GFX, Adafruit_STMPE610, Touch_Screen, SD, gSoftSerial
build_flags = -D__MK64FX512__ -DTRANSPONDER -DDEBUG -DDEBUGV
src_filter = -<*> +<common/*> +<transponder/*>
lib_deps = arduino-libraries/SD@^1.2.4
[env:sta_teensy]
platform = teensy
framework = arduino
board = teensy35
lib_ldf_mode = chain+
lib_ignore = Adafruit ILI9341, Adafruit_GFX, Adafruit_STMPE610, Touch_Screen, SD, gSoftSerial
build_flags = -D__MK64FX512__ -DSTATION -DDEBUG -DDEBUGV
src_filter = -<*> +<common/*> +<station/*>
lib_deps = arduino-libraries/SD@^1.2.4
[env:sta_uno]
platform = atmelavr
framework = arduino
board = uno
lib_ldf_mode = chain+
build_flags = -DSTATION -DDEBUG -DDEBUGV
lib_ignore = Adafruit ILI9341, Adafruit_GFX, Adafruit_STMPE610, Touch_Screen, SD
src_filter = -<*> +<common/*> +<station/*>
lib_deps = arduino-libraries/SD@^1.2.4