-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplatformio.ini
More file actions
55 lines (49 loc) · 1.35 KB
/
platformio.ini
File metadata and controls
55 lines (49 loc) · 1.35 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
51
52
53
54
55
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter, extra scripting
; Upload options: custom port, speed and extra flags
; Library options: dependencies, extra library storages
;
; Please visit documentation for the other options and examples
; http://docs.platformio.org/en/stable/projectconf.html
[env:uno]
platform = atmelavr
framework = arduino
board = uno
; ..versionchanged:: 0.30
; Add DEVICE_ID_RESPONSE to build flags
build_flags = !python build_flags.py
[env:pro8MHzatmega328]
platform = atmelavr
framework = arduino
board = pro8MHzatmega328
; ..versionchanged:: 0.30
; Add DEVICE_ID_RESPONSE to build flags
build_flags = !python build_flags.py
[env:teensy31]
platform = teensy
board = teensy31
framework = arduino
; ..versionchanged:: 0.29.2
; Disable I2C on Teensy to avoid freezing.
; ..versionchanged:: 0.30
; Add DEVICE_ID_RESPONSE to build flags
build_flags = !python build_flags.py -DDISABLE_I2C
; ..versionadded:: 0.32
[env:micro]
platform = atmelavr
framework = arduino
board = micro
build_flags = !python build_flags.py
; ..versionadded:: 0.35
[env:megaADK]
platform = atmelavr
framework = arduino
board = megaADK
build_flags = !python build_flags.py
; ..versionadded:: 0.35
[env:megaatmega2560]
platform = atmelavr
framework = arduino
board = megaatmega2560
build_flags = !python build_flags.py