-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
47 lines (46 loc) · 999 Bytes
/
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
; 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
[env:seeed_xiao]
platform = atmelsam
board = seeed_xiao
framework = arduino
build_flags =
-std=c++17
-fno-threadsafe-statics
-Os
-ffunction-sections
-fdata-sections
-Wall
-mcpu=cortex-m0plus
-mthumb
--param max-inline-insns-single=500
-Wno-expansion-to-defined
-DPLATFORMIO=60106
-DARDUINO_SAMD_ZERO
-D__SAMD21__
-D__SAMD21G18A__
-DARM_MATH_CM0PLUS
-DSEEED_XIAO_M0
-DARDUINO=10805
-DF_CPU=48000000L
-DUSBCON
-DUSB_VID=0x2886
-DUSB_PID=0x802F
-DARDUINO_ARCH_SAMD
-DUSB_CONFIG_POWER=100
-I include
-I lib
build_unflags =
-std=gnu++11
-frtti
-fexceptions
build_type = debug
lib_deps =
fastled/FastLED@^3.5.0