Update furi_hal_bt.c

This commit is contained in:
VerstreuteSeele
2023-01-16 05:37:32 +01:00
parent debd850ccd
commit cd2da151f4

View File

@@ -218,8 +218,8 @@ bool furi_hal_bt_start_app(FuriHalBtProfile profile, GapEventCallback event_cb,
} else if(profile == FuriHalBtProfileHidKeyboard) {
// Change MAC address for HID profile
config->mac_address[2]++;
// Change name Flipper -> Control
const char* clicker_str = "Control";
// Change name Flipper -> BLE Remote
const char* clicker_str = "BLE Remote";
memcpy(&config->adv_name[1], clicker_str, strlen(clicker_str));
}
if(!gap_init(config, event_cb, context)) {