diff options
| author | Ryan <fauxpark@gmail.com> | 2022-01-31 04:29:42 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-30 17:29:42 +0000 |
| commit | 7d685956cc616a8d76aa7866f42bf569a9ca3fca (patch) | |
| tree | 55f20f489b9ab12fde6bba1a8f8b59499e8ed179 /keyboards | |
| parent | 9f4769fbe62fd3763a72f4a56dee18b5fbabec29 (diff) | |
Rename `AdafruitBLE` to `BluefruitLE` (#16127)
Diffstat (limited to 'keyboards')
26 files changed, 34 insertions, 34 deletions
diff --git a/keyboards/10bleoledhub/rules.mk b/keyboards/10bleoledhub/rules.mk index 33170c43a2..bd10e11022 100644 --- a/keyboards/10bleoledhub/rules.mk +++ b/keyboards/10bleoledhub/rules.mk | |||
| @@ -20,7 +20,7 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
| 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
| 21 | AUDIO_ENABLE = no # Audio output | 21 | AUDIO_ENABLE = no # Audio output |
| 22 | BLUETOOTH_ENABLE = yes | 22 | BLUETOOTH_ENABLE = yes |
| 23 | BLUETOOTH_DRIVER = AdafruitBLE | 23 | BLUETOOTH_DRIVER = BluefruitLE |
| 24 | OLED_ENABLE = yes | 24 | OLED_ENABLE = yes |
| 25 | OLED_DRIVER = SSD1306 | 25 | OLED_DRIVER = SSD1306 |
| 26 | ENCODER_ENABLE = yes | 26 | ENCODER_ENABLE = yes |
diff --git a/keyboards/40percentclub/mf68/keymaps/mf68_ble/rules.mk b/keyboards/40percentclub/mf68/keymaps/mf68_ble/rules.mk index 160b3684b3..975c581883 100644 --- a/keyboards/40percentclub/mf68/keymaps/mf68_ble/rules.mk +++ b/keyboards/40percentclub/mf68/keymaps/mf68_ble/rules.mk | |||
| @@ -5,5 +5,5 @@ F_CPU = 8000000 | |||
| 5 | # change yes to no to disable | 5 | # change yes to no to disable |
| 6 | # | 6 | # |
| 7 | BLUETOOTH_ENABLE = yes | 7 | BLUETOOTH_ENABLE = yes |
| 8 | BLUETOOTH_DRIVER = AdafruitBLE | 8 | BLUETOOTH_DRIVER = BluefruitLE |
| 9 | BACKLIGHT_ENABLE = no | 9 | BACKLIGHT_ENABLE = no |
diff --git a/keyboards/atreus/feather/rules.mk b/keyboards/atreus/feather/rules.mk index ad0b4a5046..6280275c1e 100644 --- a/keyboards/atreus/feather/rules.mk +++ b/keyboards/atreus/feather/rules.mk | |||
| @@ -11,5 +11,5 @@ BOOTLOADER = caterina | |||
| 11 | # change yes to no to disable | 11 | # change yes to no to disable |
| 12 | # | 12 | # |
| 13 | BLUETOOTH_ENABLE = yes | 13 | BLUETOOTH_ENABLE = yes |
| 14 | BLUETOOTH_DRIVER = AdafruitBLE | 14 | BLUETOOTH_DRIVER = BluefruitLE |
| 15 | CONSOLE_ENABLE = no | 15 | CONSOLE_ENABLE = no |
diff --git a/keyboards/bioi/main.c b/keyboards/bioi/main.c index 7c8922c0a0..54caf6937b 100644 --- a/keyboards/bioi/main.c +++ b/keyboards/bioi/main.c | |||
| @@ -45,8 +45,8 @@ extern keymap_config_t keymap_config; | |||
| 45 | #endif | 45 | #endif |
| 46 | 46 | ||
| 47 | #ifdef BLUETOOTH_ENABLE | 47 | #ifdef BLUETOOTH_ENABLE |
| 48 | #ifdef MODULE_ADAFRUIT_BLE | 48 | #ifdef BLUETOOTH_BLUEFRUIT_LE |
| 49 | #include "adafruit_ble.h" | 49 | #include "bluefruit_le.h" |
| 50 | #else | 50 | #else |
| 51 | #include "bluetooth.h" | 51 | #include "bluetooth.h" |
| 52 | #endif | 52 | #endif |
| @@ -319,7 +319,7 @@ int main(void) | |||
| 319 | setup_usb(); | 319 | setup_usb(); |
| 320 | sei(); | 320 | sei(); |
| 321 | 321 | ||
| 322 | #if defined(MODULE_ADAFRUIT_EZKEY) || defined(MODULE_RN42) | 322 | #if defined(BLUETOOTH_RN42) |
| 323 | serial_init(); | 323 | serial_init(); |
| 324 | #endif | 324 | #endif |
| 325 | 325 | ||
diff --git a/keyboards/converter/m0110_usb/readme.md b/keyboards/converter/m0110_usb/readme.md index a148091cd9..d066aa5a7c 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 | |||
| 5 | 5 | ||
| 6 | ## Enabling Bluetooth for the Adafruit Feather 32U4 BLE | 6 | ## Enabling Bluetooth for the Adafruit Feather 32U4 BLE |
| 7 | 7 | ||
| 8 | Simply add `BLUETOOTH = AdafruitBLE` 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. | 8 | 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. |
| 9 | 9 | ||
| 10 | 10 | ||
| 11 | ## Pins | 11 | ## Pins |
diff --git a/keyboards/converter/usb_usb/ble/config.h b/keyboards/converter/usb_usb/ble/config.h index 80e4968c41..92df24d003 100644 --- a/keyboards/converter/usb_usb/ble/config.h +++ b/keyboards/converter/usb_usb/ble/config.h | |||
| @@ -4,8 +4,8 @@ | |||
| 4 | #define PRODUCT QMK BLE Adapter | 4 | #define PRODUCT QMK BLE Adapter |
| 5 | 5 | ||
| 6 | // Turn off the mode leds on the BLE module | 6 | // Turn off the mode leds on the BLE module |
| 7 | #define ADAFRUIT_BLE_ENABLE_MODE_LEDS 0 | 7 | #define BLUEFRUIT_LE_ENABLE_MODE_LEDS 0 |
| 8 | #define ADAFRUIT_BLE_ENABLE_POWER_LED 0 | 8 | #define BLUEFRUIT_LE_ENABLE_POWER_LED 0 |
| 9 | 9 | ||
| 10 | #define NO_ACTION_MACRO | 10 | #define NO_ACTION_MACRO |
| 11 | #define NO_ACTION_FUNCTION | 11 | #define NO_ACTION_FUNCTION |
diff --git a/keyboards/converter/usb_usb/ble/rules.mk b/keyboards/converter/usb_usb/ble/rules.mk index 596f719630..df5bc36635 100644 --- a/keyboards/converter/usb_usb/ble/rules.mk +++ b/keyboards/converter/usb_usb/ble/rules.mk | |||
| @@ -12,6 +12,6 @@ RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | |||
| 12 | AUDIO_ENABLE = no # Audio output | 12 | AUDIO_ENABLE = no # Audio output |
| 13 | 13 | ||
| 14 | BLUETOOTH_ENABLE = yes | 14 | BLUETOOTH_ENABLE = yes |
| 15 | BLUETOOTH_DRIVER = AdafruitBLE | 15 | BLUETOOTH_DRIVER = BluefruitLE |
| 16 | 16 | ||
| 17 | LTO_ENABLE = yes | 17 | LTO_ENABLE = yes |
diff --git a/keyboards/dtisaac/dosa40rgb/readme.md b/keyboards/dtisaac/dosa40rgb/readme.md index 5f288c6b76..a2995a5c0f 100644 --- a/keyboards/dtisaac/dosa40rgb/readme.md +++ b/keyboards/dtisaac/dosa40rgb/readme.md | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | A 40 percent keyboard dosa40rgb Bluetooth Low Energy | 5 | A 40 percent keyboard dosa40rgb Bluetooth Low Energy |
| 6 | 6 | ||
| 7 | * Keyboard Maintainer: [DTIsaac](https://github.com/daotakisaac) | 7 | * Keyboard Maintainer: [DTIsaac](https://github.com/daotakisaac) |
| 8 | * Hardware Supported: ATmega32U4 + AdafruitBLE SPI | 8 | * Hardware Supported: ATmega32U4 + Bluefruit LE SPI |
| 9 | 9 | ||
| 10 | Make example for this keyboard (after setting up your build environment): | 10 | Make example for this keyboard (after setting up your build environment): |
| 11 | 11 | ||
diff --git a/keyboards/dtisaac/dosa40rgb/rules.mk b/keyboards/dtisaac/dosa40rgb/rules.mk index 91d3c94ba5..caecba365e 100644 --- a/keyboards/dtisaac/dosa40rgb/rules.mk +++ b/keyboards/dtisaac/dosa40rgb/rules.mk | |||
| @@ -17,7 +17,7 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
| 17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
| 18 | AUDIO_ENABLE = no # Audio output | 18 | AUDIO_ENABLE = no # Audio output |
| 19 | BLUETOOTH_ENABLE = yes # Enable Bluetooth | 19 | BLUETOOTH_ENABLE = yes # Enable Bluetooth |
| 20 | BLUETOOTH_DRIVER = AdafruitBLE | 20 | BLUETOOTH_DRIVER = BluefruitLE |
| 21 | RGB_MATRIX_ENABLE = yes | 21 | RGB_MATRIX_ENABLE = yes |
| 22 | RGB_MATRIX_DRIVER = WS2812 | 22 | RGB_MATRIX_DRIVER = WS2812 |
| 23 | 23 | ||
diff --git a/keyboards/handwired/42/rules.mk b/keyboards/handwired/42/rules.mk index 5742e84bf5..655ce00bef 100644 --- a/keyboards/handwired/42/rules.mk +++ b/keyboards/handwired/42/rules.mk | |||
| @@ -21,4 +21,4 @@ RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | |||
| 21 | AUDIO_ENABLE = no # Audio output | 21 | AUDIO_ENABLE = no # Audio output |
| 22 | 22 | ||
| 23 | BLUETOOTH_ENABLE = yes | 23 | BLUETOOTH_ENABLE = yes |
| 24 | BLUETOOTH_DRIVER = AdafruitBLE | 24 | BLUETOOTH_DRIVER = BluefruitLE |
diff --git a/keyboards/handwired/bdn9_ble/rules.mk b/keyboards/handwired/bdn9_ble/rules.mk index e5abbcfb88..a3082cf364 100644 --- a/keyboards/handwired/bdn9_ble/rules.mk +++ b/keyboards/handwired/bdn9_ble/rules.mk | |||
| @@ -21,4 +21,4 @@ RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | |||
| 21 | AUDIO_ENABLE = no # Audio output | 21 | AUDIO_ENABLE = no # Audio output |
| 22 | ENCODER_ENABLE = no | 22 | ENCODER_ENABLE = no |
| 23 | BLUETOOTH_ENABLE = yes | 23 | BLUETOOTH_ENABLE = yes |
| 24 | BLUETOOTH_DRIVER = AdafruitBLE | 24 | BLUETOOTH_DRIVER = BluefruitLE |
diff --git a/keyboards/handwired/fruity60/rules.mk b/keyboards/handwired/fruity60/rules.mk index 74628e3e6f..c84f68f0bf 100644 --- a/keyboards/handwired/fruity60/rules.mk +++ b/keyboards/handwired/fruity60/rules.mk | |||
| @@ -20,6 +20,6 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
| 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
| 21 | AUDIO_ENABLE = no # Audio output | 21 | AUDIO_ENABLE = no # Audio output |
| 22 | BLUETOOTH_ENABLE = yes | 22 | BLUETOOTH_ENABLE = yes |
| 23 | BLUETOOTH_DRIVER = AdafruitBLE | 23 | BLUETOOTH_DRIVER = BluefruitLE |
| 24 | 24 | ||
| 25 | LAYOUTS = 60_tsangan_hhkb | 25 | LAYOUTS = 60_tsangan_hhkb |
diff --git a/keyboards/handwired/prkl30/feather/rules.mk b/keyboards/handwired/prkl30/feather/rules.mk index f83173fa0b..7578dcef74 100644 --- a/keyboards/handwired/prkl30/feather/rules.mk +++ b/keyboards/handwired/prkl30/feather/rules.mk | |||
| @@ -22,4 +22,4 @@ AUDIO_ENABLE = no # This can be enabled if a speaker is connected to t | |||
| 22 | RGBLIGHT_ENABLE = no # This can be enabled if a ws2812 strip is connected to the expansion port. | 22 | RGBLIGHT_ENABLE = no # This can be enabled if a ws2812 strip is connected to the expansion port. |
| 23 | 23 | ||
| 24 | BLUETOOTH_ENABLE = yes | 24 | BLUETOOTH_ENABLE = yes |
| 25 | BLUETOOTH_DRIVER = AdafruitBLE | 25 | BLUETOOTH_DRIVER = BluefruitLE |
diff --git a/keyboards/handwired/promethium/keymaps/default/keymap.c b/keyboards/handwired/promethium/keymaps/default/keymap.c index 14a293bb39..e12142c50b 100644 --- a/keyboards/handwired/promethium/keymaps/default/keymap.c +++ b/keyboards/handwired/promethium/keymaps/default/keymap.c | |||
| @@ -137,7 +137,7 @@ enum planck_keycodes { | |||
| 137 | #ifndef FAUXCLICKY_ENABLE | 137 | #ifndef FAUXCLICKY_ENABLE |
| 138 | FC_TOG, | 138 | FC_TOG, |
| 139 | #endif | 139 | #endif |
| 140 | #ifndef MODULE_ADAFRUIT_BLE | 140 | #ifndef BLUETOOTH_BLUEFRUIT_LE |
| 141 | OUT_BT, | 141 | OUT_BT, |
| 142 | #endif | 142 | #endif |
| 143 | RGBDEMO, | 143 | RGBDEMO, |
| @@ -1261,7 +1261,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 1261 | } | 1261 | } |
| 1262 | 1262 | ||
| 1263 | void set_output_user(uint8_t output) { | 1263 | void set_output_user(uint8_t output) { |
| 1264 | #ifdef MODULE_ADAFRUIT_BLE | 1264 | #ifdef BLUETOOTH_BLUEFRUIT_LE |
| 1265 | switch(output) { | 1265 | switch(output) { |
| 1266 | case OUTPUT_USB: | 1266 | case OUTPUT_USB: |
| 1267 | led_set_output_usb(); | 1267 | led_set_output_usb(); |
| @@ -1285,7 +1285,7 @@ void matrix_init_user() { | |||
| 1285 | #endif | 1285 | #endif |
| 1286 | 1286 | ||
| 1287 | // auto detect output on init | 1287 | // auto detect output on init |
| 1288 | #ifdef MODULE_ADAFRUIT_BLE | 1288 | #ifdef BLUETOOTH_BLUEFRUIT_LE |
| 1289 | uint8_t output = auto_detect_output(); | 1289 | uint8_t output = auto_detect_output(); |
| 1290 | if (output == OUTPUT_USB) { | 1290 | if (output == OUTPUT_USB) { |
| 1291 | set_output(OUTPUT_USB); | 1291 | set_output(OUTPUT_USB); |
diff --git a/keyboards/handwired/promethium/keymaps/priyadi/keymap.c b/keyboards/handwired/promethium/keymaps/priyadi/keymap.c index 094eb15762..94b505aa2c 100644 --- a/keyboards/handwired/promethium/keymaps/priyadi/keymap.c +++ b/keyboards/handwired/promethium/keymaps/priyadi/keymap.c | |||
| @@ -140,7 +140,7 @@ enum planck_keycodes { | |||
| 140 | #ifndef FAUXCLICKY_ENABLE | 140 | #ifndef FAUXCLICKY_ENABLE |
| 141 | FC_TOG, | 141 | FC_TOG, |
| 142 | #endif | 142 | #endif |
| 143 | #ifndef MODULE_ADAFRUIT_BLE | 143 | #ifndef BLUETOOTH_BLUEFRUIT_LE |
| 144 | OUT_BT, | 144 | OUT_BT, |
| 145 | #endif | 145 | #endif |
| 146 | RGBDEMO, | 146 | RGBDEMO, |
| @@ -1264,7 +1264,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 1264 | } | 1264 | } |
| 1265 | 1265 | ||
| 1266 | void set_output_user(uint8_t output) { | 1266 | void set_output_user(uint8_t output) { |
| 1267 | #ifdef MODULE_ADAFRUIT_BLE | 1267 | #ifdef BLUETOOTH_BLUEFRUIT_LE |
| 1268 | switch(output) { | 1268 | switch(output) { |
| 1269 | case OUTPUT_USB: | 1269 | case OUTPUT_USB: |
| 1270 | led_set_output_usb(); | 1270 | led_set_output_usb(); |
| @@ -1288,7 +1288,7 @@ void matrix_init_user() { | |||
| 1288 | #endif | 1288 | #endif |
| 1289 | 1289 | ||
| 1290 | // auto detect output on init | 1290 | // auto detect output on init |
| 1291 | #ifdef MODULE_ADAFRUIT_BLE | 1291 | #ifdef BLUETOOTH_BLUEFRUIT_LE |
| 1292 | uint8_t output = auto_detect_output(); | 1292 | uint8_t output = auto_detect_output(); |
| 1293 | if (output == OUTPUT_USB) { | 1293 | if (output == OUTPUT_USB) { |
| 1294 | set_output(OUTPUT_USB); | 1294 | set_output(OUTPUT_USB); |
diff --git a/keyboards/handwired/promethium/promethium.c b/keyboards/handwired/promethium/promethium.c index 8eb1680d84..0df6c28e9b 100644 --- a/keyboards/handwired/promethium/promethium.c +++ b/keyboards/handwired/promethium/promethium.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | #include "timer.h" | 3 | #include "timer.h" |
| 4 | #include "matrix.h" | 4 | #include "matrix.h" |
| 5 | #include "musical_notes.h" | 5 | #include "musical_notes.h" |
| 6 | #include "adafruit_ble.h" | 6 | #include "bluefruit_le.h" |
| 7 | 7 | ||
| 8 | float fauxclicky_pressed_note[2] = MUSICAL_NOTE(_A4, 0.0625); | 8 | float fauxclicky_pressed_note[2] = MUSICAL_NOTE(_A4, 0.0625); |
| 9 | float fauxclicky_released_note[2] = MUSICAL_NOTE(_A4, 0.0625); | 9 | float fauxclicky_released_note[2] = MUSICAL_NOTE(_A4, 0.0625); |
| @@ -12,7 +12,7 @@ float fauxclicky_beep_note[2] = MUSICAL_NOTE(_C6, 0.25); | |||
| 12 | // cubic fit {3.3, 0}, {3.5, 2.9}, {3.6, 5}, {3.7, 8.6}, {3.8, 36}, {3.9, 62}, {4.0, 73}, {4.05, 83}, {4.1, 89}, {4.15, 94}, {4.2, 100} | 12 | // cubic fit {3.3, 0}, {3.5, 2.9}, {3.6, 5}, {3.7, 8.6}, {3.8, 36}, {3.9, 62}, {4.0, 73}, {4.05, 83}, {4.1, 89}, {4.15, 94}, {4.2, 100} |
| 13 | 13 | ||
| 14 | uint8_t battery_level(void) { | 14 | uint8_t battery_level(void) { |
| 15 | float voltage = adafruit_ble_read_battery_voltage() * 2 * 3.3 / 1024; | 15 | float voltage = bluefruit_le_read_battery_voltage() * 2 * 3.3 / 1024; |
| 16 | if (voltage < MIN_VOLTAGE) return 0; | 16 | if (voltage < MIN_VOLTAGE) return 0; |
| 17 | if (voltage > MAX_VOLTAGE) return 255; | 17 | if (voltage > MAX_VOLTAGE) return 255; |
| 18 | return (voltage - MIN_VOLTAGE) / (MAX_VOLTAGE - MIN_VOLTAGE) * 255; | 18 | return (voltage - MIN_VOLTAGE) / (MAX_VOLTAGE - MIN_VOLTAGE) * 255; |
diff --git a/keyboards/handwired/promethium/rules.mk b/keyboards/handwired/promethium/rules.mk index f41e88b0c4..383800ee01 100644 --- a/keyboards/handwired/promethium/rules.mk +++ b/keyboards/handwired/promethium/rules.mk | |||
| @@ -23,7 +23,7 @@ PS2_MOUSE_ENABLE = yes | |||
| 23 | PS2_USE_INT = yes | 23 | PS2_USE_INT = yes |
| 24 | CUSTOM_MATRIX = yes | 24 | CUSTOM_MATRIX = yes |
| 25 | BLUETOOTH_ENABLE = yes | 25 | BLUETOOTH_ENABLE = yes |
| 26 | BLUETOOTH_DRIVER = AdafruitBLE | 26 | BLUETOOTH_DRIVER = BluefruitLE |
| 27 | 27 | ||
| 28 | SRC += ws2812.c | 28 | SRC += ws2812.c |
| 29 | SRC += rgbsps.c | 29 | SRC += rgbsps.c |
diff --git a/keyboards/handwired/pterodactyl/rules.mk b/keyboards/handwired/pterodactyl/rules.mk index 629b30e385..fd63e2ad48 100644 --- a/keyboards/handwired/pterodactyl/rules.mk +++ b/keyboards/handwired/pterodactyl/rules.mk | |||
| @@ -22,7 +22,7 @@ AUDIO_ENABLE = no # Audio output | |||
| 22 | UNICODE_ENABLE = yes | 22 | UNICODE_ENABLE = yes |
| 23 | CUSTOM_MATRIX = yes | 23 | CUSTOM_MATRIX = yes |
| 24 | BLUETOOTH_ENABLE = yes | 24 | BLUETOOTH_ENABLE = yes |
| 25 | BLUETOOTH_DRIVER = AdafruitBLE | 25 | BLUETOOTH_DRIVER = BluefruitLE |
| 26 | 26 | ||
| 27 | SRC += matrix.c | 27 | SRC += matrix.c |
| 28 | QUANTUM_LIB_SRC += i2c_master.c | 28 | QUANTUM_LIB_SRC += i2c_master.c |
diff --git a/keyboards/handwired/slash/rules.mk b/keyboards/handwired/slash/rules.mk index 275a2eb7eb..53d114978f 100644 --- a/keyboards/handwired/slash/rules.mk +++ b/keyboards/handwired/slash/rules.mk | |||
| @@ -20,4 +20,4 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
| 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
| 21 | AUDIO_ENABLE = no # Audio output | 21 | AUDIO_ENABLE = no # Audio output |
| 22 | BLUETOOTH_ENABLE = yes | 22 | BLUETOOTH_ENABLE = yes |
| 23 | BLUETOOTH_DRIVER = AdafruitBLE | 23 | BLUETOOTH_DRIVER = BluefruitLE |
diff --git a/keyboards/latin47ble/rules.mk b/keyboards/latin47ble/rules.mk index 95044a18bd..015c454728 100644 --- a/keyboards/latin47ble/rules.mk +++ b/keyboards/latin47ble/rules.mk | |||
| @@ -20,6 +20,6 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
| 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
| 21 | AUDIO_ENABLE = no # Audio output | 21 | AUDIO_ENABLE = no # Audio output |
| 22 | BLUETOOTH_ENABLE = yes | 22 | BLUETOOTH_ENABLE = yes |
| 23 | BLUETOOTH_DRIVER = AdafruitBLE | 23 | BLUETOOTH_DRIVER = BluefruitLE |
| 24 | 24 | ||
| 25 | LAYOUTS = planck_mit | 25 | LAYOUTS = planck_mit |
diff --git a/keyboards/latin64ble/rules.mk b/keyboards/latin64ble/rules.mk index 30f105ef49..97717333de 100644 --- a/keyboards/latin64ble/rules.mk +++ b/keyboards/latin64ble/rules.mk | |||
| @@ -20,4 +20,4 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
| 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
| 21 | AUDIO_ENABLE = no # Audio output | 21 | AUDIO_ENABLE = no # Audio output |
| 22 | BLUETOOTH_ENABLE = yes | 22 | BLUETOOTH_ENABLE = yes |
| 23 | BLUETOOTH_DRIVER = AdafruitBLE | 23 | BLUETOOTH_DRIVER = BluefruitLE |
diff --git a/keyboards/latinpadble/rules.mk b/keyboards/latinpadble/rules.mk index aac9dde15f..06816c2ef8 100644 --- a/keyboards/latinpadble/rules.mk +++ b/keyboards/latinpadble/rules.mk | |||
| @@ -21,7 +21,7 @@ RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | |||
| 21 | AUDIO_ENABLE = no # Audio output | 21 | AUDIO_ENABLE = no # Audio output |
| 22 | 22 | ||
| 23 | BLUETOOTH_ENABLE = yes | 23 | BLUETOOTH_ENABLE = yes |
| 24 | BLUETOOTH_DRIVER = AdafruitBLE | 24 | BLUETOOTH_DRIVER = BluefruitLE |
| 25 | OLED_ENABLE = yes | 25 | OLED_ENABLE = yes |
| 26 | OLED_DRIVER = SSD1306 | 26 | OLED_DRIVER = SSD1306 |
| 27 | ENCODER_ENABLE = yes | 27 | ENCODER_ENABLE = yes |
diff --git a/keyboards/meira/featherble/rules.mk b/keyboards/meira/featherble/rules.mk index d3e985e8c2..01f1af1ae8 100644 --- a/keyboards/meira/featherble/rules.mk +++ b/keyboards/meira/featherble/rules.mk | |||
| @@ -2,4 +2,4 @@ | |||
| 2 | F_CPU = 8000000 | 2 | F_CPU = 8000000 |
| 3 | 3 | ||
| 4 | BLUETOOTH_ENABLE = yes | 4 | BLUETOOTH_ENABLE = yes |
| 5 | BLUETOOTH_DRIVER = AdafruitBLE | 5 | BLUETOOTH_DRIVER = BluefruitLE |
diff --git a/keyboards/nek_type_a/rules.mk b/keyboards/nek_type_a/rules.mk index ea79c962da..0a8adccb52 100644 --- a/keyboards/nek_type_a/rules.mk +++ b/keyboards/nek_type_a/rules.mk | |||
| @@ -22,6 +22,6 @@ AUDIO_ENABLE = no # Audio output | |||
| 22 | CUSTOM_MATRIX = yes | 22 | CUSTOM_MATRIX = yes |
| 23 | DEBUG_ENABLE = yes | 23 | DEBUG_ENABLE = yes |
| 24 | BLUETOOTH_ENABLE = yes | 24 | BLUETOOTH_ENABLE = yes |
| 25 | BLUETOOTH_DRIVER = AdafruitBLE | 25 | BLUETOOTH_DRIVER = BluefruitLE |
| 26 | 26 | ||
| 27 | SRC += matrix.c mcp23017.c | 27 | SRC += matrix.c mcp23017.c |
diff --git a/keyboards/spaceman/pancake/rev1/feather/rules.mk b/keyboards/spaceman/pancake/rev1/feather/rules.mk index 6530422734..c213c70872 100644 --- a/keyboards/spaceman/pancake/rev1/feather/rules.mk +++ b/keyboards/spaceman/pancake/rev1/feather/rules.mk | |||
| @@ -20,7 +20,7 @@ BACKLIGHT_ENABLE = no # Custom backlighting code is used, so this should not b | |||
| 20 | AUDIO_ENABLE = no # This can be enabled if a speaker is connected to the expansion port. Not compatible with RGBLIGHT below | 20 | AUDIO_ENABLE = no # This can be enabled if a speaker is connected to the expansion port. Not compatible with RGBLIGHT below |
| 21 | RGBLIGHT_ENABLE = no # This can be enabled if a ws2812 strip is connected to the expansion port. | 21 | RGBLIGHT_ENABLE = no # This can be enabled if a ws2812 strip is connected to the expansion port. |
| 22 | BLUETOOTH_ENABLE = yes | 22 | BLUETOOTH_ENABLE = yes |
| 23 | BLUETOOTH_DRIVER = AdafruitBLE | 23 | BLUETOOTH_DRIVER = BluefruitLE |
| 24 | 24 | ||
| 25 | LAYOUTS = ortho_4x12 planck_mit | 25 | LAYOUTS = ortho_4x12 planck_mit |
| 26 | 26 | ||
diff --git a/keyboards/tokyokeyboard/alix40/rules.mk b/keyboards/tokyokeyboard/alix40/rules.mk index f9e5e2485a..358de97c5a 100644 --- a/keyboards/tokyokeyboard/alix40/rules.mk +++ b/keyboards/tokyokeyboard/alix40/rules.mk | |||
| @@ -20,4 +20,4 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
| 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
| 21 | AUDIO_ENABLE = no # Audio output | 21 | AUDIO_ENABLE = no # Audio output |
| 22 | BLUETOOTH_ENABLE = yes | 22 | BLUETOOTH_ENABLE = yes |
| 23 | BLUETOOTH_DRIVER = AdafruitBLE | 23 | BLUETOOTH_DRIVER = BluefruitLE |
