diff options
author | fauxpark <fauxpark@gmail.com> | 2019-02-01 14:14:39 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-12 11:00:56 -0700 |
commit | 45069316763771b581762ccf2ce1a8874e13a31e (patch) | |
tree | 79fe947a03b462f9554856228e9925b205ac02e4 /tmk_core | |
parent | ea4581cef15acc949aad2fffde8af61de81f10b6 (diff) |
Remove keyboard description from Adafruit BLE device name
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/protocol/lufa/adafruit_ble.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tmk_core/protocol/lufa/adafruit_ble.cpp b/tmk_core/protocol/lufa/adafruit_ble.cpp index bee6bb2c19..80839731fd 100644 --- a/tmk_core/protocol/lufa/adafruit_ble.cpp +++ b/tmk_core/protocol/lufa/adafruit_ble.cpp @@ -533,8 +533,7 @@ bool adafruit_ble_enable_keyboard(void) { // Disable command echo static const char kEcho[] PROGMEM = "ATE=0"; // Make the advertised name match the keyboard - static const char kGapDevName[] PROGMEM = - "AT+GAPDEVNAME=" STR(PRODUCT) " " STR(DESCRIPTION); + static const char kGapDevName[] PROGMEM = "AT+GAPDEVNAME=" STR(PRODUCT); // Turn on keyboard support static const char kHidEnOn[] PROGMEM = "AT+BLEHIDEN=1"; |