-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathplatformio.ini
33 lines (30 loc) · 1.04 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
;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:teensy40]
platform = teensy
;board = teensy40
board = teensy41
framework = arduino
lib_deps =
i2c-underneath
; Use a local copy of i2c-underneath while it's in development
lib_extra_dirs = C:/projects/i2c-underneath
; Test Setup
; Enable custom test_framework to see Serial.print() output.
test_framework = custom
test_build_src = yes
build_flags = -I tests
test_speed = 921600
; Set the test port so we don't try to use the wrong port on multi-port systems
; Doesn't seem necessary with PlatformIO 6
;test_port = COM3
;test_port = COM4
; Use a script to wait for the Teensy COM port to reappear after upload
extra_scripts = pio_scripts/upload_delay.py