Update furi_hal_bt.c

This commit is contained in:
VerstreuteSeele
2023-01-16 05:45:51 +01:00
parent cd2da151f4
commit a721708897

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 -> BLE Remote
const char* clicker_str = "BLE Remote";
// Change name Flipper -> Flipper Remote
const char* clicker_str = "Flipper Remote";
memcpy(&config->adv_name[1], clicker_str, strlen(clicker_str));
}
if(!gap_init(config, event_cb, context)) {