Browse Source

Fix up paths for bioi boards - parallel compilation failures due to file collisions. (#13806)

pull/13812/head
Nick Brassel 2 years ago
committed by GitHub
parent
commit
a4c050b5ae
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions
  1. +3
    -3
      keyboards/bioi/g60/rules.mk
  2. +3
    -3
      keyboards/bioi/morgan65/rules.mk

+ 3
- 3
keyboards/bioi/g60/rules.mk View File

@ -7,9 +7,9 @@ F_CPU = 8000000
# Bootloader selection
BOOTLOADER = qmk-dfu
SRC += ../usart.c \
../ble.c \
../main.c
SRC += usart.c \
ble.c \
main.c
OPT_DEFS += -DPROTOCOL_BLE
OPT_DEFS += -DUART_RX1_BUFFER_SIZE=16 -DUART_TX1_BUFFER_SIZE=16


+ 3
- 3
keyboards/bioi/morgan65/rules.mk View File

@ -7,9 +7,9 @@ F_CPU = 8000000
# Bootloader selection
BOOTLOADER = qmk-dfu
SRC += ../usart.c \
../ble.c \
../main.c
SRC += usart.c \
ble.c \
main.c
OPT_DEFS += -DPROTOCOL_BLE
OPT_DEFS += -DUART_RX1_BUFFER_SIZE=16 -DUART_TX1_BUFFER_SIZE=16


Loading…
Cancel
Save