diff --git a/firmware/console/binary/bluetooth.cpp b/firmware/console/binary/bluetooth.cpp index 85035f89eb..661e711abf 100644 --- a/firmware/console/binary/bluetooth.cpp +++ b/firmware/console/binary/bluetooth.cpp @@ -163,6 +163,9 @@ static void runCommands(SerialTsChannelBase* tsChannel) { btWrite(tsChannel, "AT+LADDR\r\n"); btReadLine(tsChannel, tmp, sizeof(tmp)); + + btWrite(tsChannel, "AT+STAT\r\n"); + btReadLine(tsChannel, tmp, sizeof(tmp)); #endif /* JDY33 specific settings */ @@ -203,7 +206,7 @@ static void runCommands(SerialTsChannelBase* tsChannel) { } if (btModuleType == BLUETOOTH_JDY_3x) { /* BLE broadcast name */ - chsnprintf(tmp, sizeof(tmp), "AT+NAMB%s\r\n", btName); + chsnprintf(tmp, sizeof(tmp), "AT+NAMB%s-BLE\r\n", btName); btWrite(tsChannel, tmp); if (btWaitOk(tsChannel) != 0) { goto cmdFailed; diff --git a/firmware/console/binary/tunerstudio.cpp b/firmware/console/binary/tunerstudio.cpp index 7da7f30f24..32e7dcdaaa 100644 --- a/firmware/console/binary/tunerstudio.cpp +++ b/firmware/console/binary/tunerstudio.cpp @@ -113,8 +113,8 @@ static void resetTs() { static void printTsStats(void) { #if EFI_PROD_CODE #ifdef EFI_CONSOLE_RX_BRAIN_PIN - efiPrintf("Primary UART RX", hwPortname(EFI_CONSOLE_RX_BRAIN_PIN)); - efiPrintf("Primary UART TX", hwPortname(EFI_CONSOLE_TX_BRAIN_PIN)); + efiPrintf("Primary UART RX %s", hwPortname(EFI_CONSOLE_RX_BRAIN_PIN)); + efiPrintf("Primary UART TX %s", hwPortname(EFI_CONSOLE_TX_BRAIN_PIN)); #endif if (false) {