diff --git a/firmware/console/binary/bluetooth.cpp b/firmware/console/binary/bluetooth.cpp index 661e711abf..7823f4964c 100644 --- a/firmware/console/binary/bluetooth.cpp +++ b/firmware/console/binary/bluetooth.cpp @@ -227,7 +227,7 @@ static void runCommands(SerialTsChannelBase* tsChannel) { /* Now reset module to apply new settings */ btWrite(tsChannel, "AT+RESET\r\n"); if (btWaitOk(tsChannel) != 0) { - efiPrintf("JDY33 fialed to reset"); + efiPrintf("JDY33 failed to reset"); } } @@ -273,7 +273,7 @@ void bluetoothStart(bluetooth_module_e moduleType, const char *baudRate, const c efiPrintf("Wrong parameter '%s'! %s", baudRate, usage); return; } - + // 2) check name if ((strlen(name) < 1) || (strlen(name) > 20)) { efiPrintf("Wrong parameter! Up to 20 characters expected! %s", usage); diff --git a/firmware/console/binary/bluetooth.h b/firmware/console/binary/bluetooth.h index 41ee5a2488..abcbe04f43 100644 --- a/firmware/console/binary/bluetooth.h +++ b/firmware/console/binary/bluetooth.h @@ -25,6 +25,7 @@ typedef enum { * See https://rusefi.com/forum/viewtopic.php?f=13&t=1999 */ BLUETOOTH_BK3231, + // fun fact: those use BK3232 see above BLUETOOTH_JDY_3x, } bluetooth_module_e;