Skip to content

Commit

Permalink
Made platformio config work (on my system)
Browse files Browse the repository at this point in the history
I hope it works for everyone else as well.
  • Loading branch information
Mikael Degerfält authored and blind committed May 3, 2023
1 parent c58c3f9 commit 07582ab
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions NuEVI/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,26 @@
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html

[env:teensy31]

[platformio]
src_dir = .

[env]
platform = teensy
board = teensy31
framework = arduino
build_flags = -D USB_MIDI -D TEENSY_OPT_FASTER
board_build.f_cpu = 96000000L
board_build.f_cpu = 96000000L
lib_deps =
adafruit/Adafruit MPR121 @ ^1.1.1
adafruit/Adafruit SSD1306 @ ^2.5.7

[env:nuevi]
build_flags = ${env.build_flags}

[env:nurad]
build_flags = ${env.build_flags} -D NURAD

[env:nurad_seamus]
build_flags = ${env.build_flags} -D NURAD -D SEAMUS

0 comments on commit 07582ab

Please sign in to comment.