diff options
author | Ryan <fauxpark@gmail.com> | 2023-07-29 15:16:14 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-29 15:16:14 +1000 |
commit | b4a7b9253a996484b10b4762f7b2fff7c9105c34 (patch) | |
tree | 5690b166d442664d46df40cdf6c98c7bef247245 /keyboards/converter | |
parent | 4af6f1df06326376ce07a43560ff0a68e9dd1eb1 (diff) |
Bluetooth: driver naming cleanups (#21624)
Diffstat (limited to 'keyboards/converter')
-rw-r--r-- | keyboards/converter/m0110_usb/readme.md | 2 | ||||
-rw-r--r-- | keyboards/converter/usb_usb/ble/info.json | 5 | ||||
-rw-r--r-- | keyboards/converter/usb_usb/ble/rules.mk | 1 |
3 files changed, 5 insertions, 3 deletions
diff --git a/keyboards/converter/m0110_usb/readme.md b/keyboards/converter/m0110_usb/readme.md index d066aa5a7c..1eb051f000 100644 --- a/keyboards/converter/m0110_usb/readme.md +++ b/keyboards/converter/m0110_usb/readme.md @@ -5,7 +5,7 @@ This is a port of the original M0110 converter from TMK to QMK. The original con ## Enabling Bluetooth for the Adafruit Feather 32U4 BLE -Simply add `BLUETOOTH = BluefruitLE` to your `rules.mk` file. This enables code specifically for the Adafruit Feather 32U4 BLE. If enabled, the device will use the `PRODUCT` value from `config.h` for the device name displayed by the Feather on host devices. You can simply change these values to change the device name. +Simply add `BLUETOOTH = bluefruit_le` to your `rules.mk` file. This enables code specifically for the Adafruit Feather 32U4 BLE. If enabled, the device will use the `PRODUCT` value from `config.h` for the device name displayed by the Feather on host devices. You can simply change these values to change the device name. ## Pins diff --git a/keyboards/converter/usb_usb/ble/info.json b/keyboards/converter/usb_usb/ble/info.json index 56062f7ad3..18edf5f577 100644 --- a/keyboards/converter/usb_usb/ble/info.json +++ b/keyboards/converter/usb_usb/ble/info.json @@ -1,3 +1,6 @@ { - "bootloader": "caterina" + "bootloader": "caterina", + "bluetooth": { + "driver": "bluefruit_le" + } } diff --git a/keyboards/converter/usb_usb/ble/rules.mk b/keyboards/converter/usb_usb/ble/rules.mk index 86a4e15ffe..5b0435372b 100644 --- a/keyboards/converter/usb_usb/ble/rules.mk +++ b/keyboards/converter/usb_usb/ble/rules.mk @@ -3,5 +3,4 @@ F_CPU = 8000000 EXTRAKEY_ENABLE = no BLUETOOTH_ENABLE = yes -BLUETOOTH_DRIVER = BluefruitLE LTO_ENABLE = yes |