diff options
author | Ryan <fauxpark@gmail.com> | 2023-05-20 22:12:59 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-20 22:12:59 +1000 |
commit | ab8c5013c856bfa23289d7892be1c2bee808b542 (patch) | |
tree | 79af0e03a476908bd5f74b9528f8c9ee43f24188 /keyboards/bioi/g60 | |
parent | 7b31c18d464356bde219c5b3fff346f3e7a89d1a (diff) |
BIOI G60/Morgan65: use custom Bluetooth driver (#20897)
Diffstat (limited to 'keyboards/bioi/g60')
-rw-r--r-- | keyboards/bioi/g60/rules.mk | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/keyboards/bioi/g60/rules.mk b/keyboards/bioi/g60/rules.mk index d6c97aa974..a22a56ecec 100644 --- a/keyboards/bioi/g60/rules.mk +++ b/keyboards/bioi/g60/rules.mk @@ -1,14 +1,6 @@ # Processor frequency F_CPU = 8000000 -SRC += usart.c \ - ble.c \ - main.c - -OPT_DEFS += -DPROTOCOL_BLE -OPT_DEFS += -DUART_RX1_BUFFER_SIZE=16 -DUART_TX1_BUFFER_SIZE=16 -OPT_DEFS += -DUSART1_ENABLED - # Build Options # change yes to no to disable # @@ -22,5 +14,12 @@ BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow AUDIO_ENABLE = no # Audio output LTO_ENABLE = yes # Reduce firmware size +BLUETOOTH_ENABLE = yes +BLUETOOTH_DRIVER = custom VIA_ENABLE = yes # VIA support should be enabled here due to the main() loop will be compiled first. + +SRC += usart.c ble.c + +OPT_DEFS += -DUART_RX1_BUFFER_SIZE=16 -DUART_TX1_BUFFER_SIZE=16 +OPT_DEFS += -DUSART1_ENABLED |