mirror of
https://github.com/C0ntroller/keyboard.git
synced 2024-11-22 14:34:48 +01:00
030f2a39ae
Debouncing, the way it was done may have been appropriate for human input, but is wholly inadequate for the sequential scanning of the host keyboard IC. It is however neccessary to provide something like debounce, because the teensy and host IC aren't syncronized.
15 lines
482 B
INI
15 lines
482 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:teensylc]
|
|
platform = teensy
|
|
board = teensylc
|
|
framework = arduino
|
|
build_flags = -D USB_MIDI -D TEENSY_OPT_FASTEST |