-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
54 lines (49 loc) · 1.1 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
47
48
49
50
51
52
53
54
; PlatformIO Project Configuration File
;
; Supported platforms for the MobiFlight EEPROM clear firmware are:
; atmega2560
; promicro
; uno
;
; Common build settings across all devices
[env]
monitor_speed = 115200
extra_scripts =
pre:get_version.py
[env:arduino_mega]
platform = atmelavr
board = megaatmega2560
framework = arduino
build_flags =
${env.build_flags}
extra_scripts =
${env.extra_scripts}
[env:arduino_promicro]
platform = atmelavr
board = micro
framework = arduino
build_flags =
${env.build_flags}
extra_scripts =
${env.extra_scripts}
[env:arduino_uno]
platform = atmelavr
board = uno
framework = arduino
build_flags =
${env.build_flags}
extra_scripts =
${env.extra_scripts}
; Build settings for the Raspberry Pico original
[env:raspberry_pico]
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
board = pico
framework = arduino
board_build.core = earlephilhower ; select new core
board_build.filesystem_size = 0M ; configure filesystem size. Default 0 Mbyte.
lib_ldf_mode = chain+
upload_protocol = mbed
build_flags =
${env.build_flags}
extra_scripts =
${env.extra_scripts}