-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathplatformio.ini
More file actions
42 lines (33 loc) · 756 Bytes
/
platformio.ini
File metadata and controls
42 lines (33 loc) · 756 Bytes
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
; PlatformIO Project Configuration File
[platformio]
src_dir = examples/basic_working
;src_dir = examples/test
lib_dir = .
default_envs = mega
; Commmon
[env]
framework = arduino
platform = atmelavr
board = megaatmega2560
monitor_speed = 115200
check_tool = cppcheck
build_flags =-D YOUR_MOTORBIKE=KAWASAKI
; Test the library on different platforms
[env:mega]
platform = atmelavr
board = megaatmega2560
[env:esp32]
platform = espressif32
board = lolin32
[env:stm32]
platform = ststm32
board = maple_mini_b20
; Test the library on each brand
[env:suzuki]
build_flags =-D YOUR_MOTORBIKE=SUZUKI
[env:kawasaki]
build_flags =-D YOUR_MOTORBIKE=KAWASAKI
[env:yamaha]
build_flags =-D YOUR_MOTORBIKE=YAMAHA
[env:honda]
build_flags =-D YOUR_MOTORBIKE=HONDA