summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Didron <fdidron@users.noreply.github.com>2019-04-16 18:42:16 +0900
committerGitHub <noreply@github.com>2019-04-16 18:42:16 +0900
commit7a5cbcac9f8aa937760f62808a429c2797bc311d (patch)
tree7c2f8dcd17f9c54e7ec4f8f70643640429948a47
parentbb91bc4309f42b380e9cfffaa4d83a168f8e38e6 (diff)
parent45069316763771b581762ccf2ce1a8874e13a31e (diff)
Merge pull request #5 from ErgoDox-EZ/ble_naming
Remove keyboard description from Adafruit BLE device name
-rw-r--r--tmk_core/protocol/lufa/adafruit_ble.cpp3
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";