diff options
author | fauxpark <fauxpark@gmail.com> | 2019-02-01 14:14:39 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-07 16:05:30 -0700 |
commit | 8dd0ff6c7a1ebc70fb70fe64654353d3e5afeb68 (patch) | |
tree | 6904f80e2f7536b3e6d80808691b1fa42bb656da /tmk_core/protocol/lufa | |
parent | 9a701632c49518196008145b9e38c9f959e0d2d2 (diff) |
Remove keyboard description from Adafruit BLE device name
Diffstat (limited to 'tmk_core/protocol/lufa')
-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"; |