sangaboard-firmware/platformio.ini
Filip Ayazi 35d969aadd Add endstops, light_sensor, test, many fixes
- Added endstop and light_sensor module
 - Improved configuration by splitting wiring configs to boards.h
 - Added a unit test for argument parsing
 - Fixed many smaller bugs
2021-05-25 01:43:11 +01:00

42 lines
No EOL
981 B
INI

; 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]
monitor_speed = 115200
framework = arduino
test_build_project_src = true
lib_deps =
adafruit/Adafruit TSL2591 Library @ ^1.3.1
adafruit/Adafruit ADS1X15 @ ^2.1.1
adafruit/Adafruit BusIO @ ^1.7.3
SPI
lib_ldf_mode = chain
[env:nano]
platform = atmelavr
board = nanoatmega328new
build_flags = -D MCU_NANO -lc
[env:leonardo]
platform = atmelavr
board = leonardo
monitor_speed = 115200
build_flags = -D MCU_LEONARDO
[env:pico]
platform = raspberrypi
board = pico
build_flags = -D MCU_PICO
[env:bluepill]
platform = ststm32
board = bluepill_f103c8
upload_protocol = stlink
build_flags = -D MCU_BLUEPILL