File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -184,12 +184,24 @@ void menuMain()
184184#ifdef COMPILE_BT
185185
186186 if (settings.bluetoothRadioType == BLUETOOTH_RADIO_SPP_AND_BLE)
187+ {
187188 systemPrint (" ** Bluetooth SPP and BLE broadcasting as: " );
189+ systemPrint (deviceName);
190+ }
188191 else if (settings.bluetoothRadioType == BLUETOOTH_RADIO_SPP)
192+ {
189193 systemPrint (" ** Bluetooth SPP broadcasting as: " );
194+ systemPrint (deviceName);
195+ }
190196 else if (settings.bluetoothRadioType == BLUETOOTH_RADIO_BLE)
197+ {
191198 systemPrint (" ** Bluetooth Low-Energy broadcasting as: " );
192- systemPrint (deviceName);
199+ systemPrint (deviceName);
200+ }
201+ else if (settings.bluetoothRadioType == BLUETOOTH_RADIO_OFF)
202+ {
203+ systemPrint (" ** Bluetooth Turned Off" );
204+ }
193205 systemPrintln (" **" );
194206#else // COMPILE_BT
195207 systemPrintln (" ** Bluetooth Not Compiled **" );
You can’t perform that action at this time.
0 commit comments