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()
184
184
#ifdef COMPILE_BT
185
185
186
186
if (settings.bluetoothRadioType == BLUETOOTH_RADIO_SPP_AND_BLE)
187
+ {
187
188
systemPrint (" ** Bluetooth SPP and BLE broadcasting as: " );
189
+ systemPrint (deviceName);
190
+ }
188
191
else if (settings.bluetoothRadioType == BLUETOOTH_RADIO_SPP)
192
+ {
189
193
systemPrint (" ** Bluetooth SPP broadcasting as: " );
194
+ systemPrint (deviceName);
195
+ }
190
196
else if (settings.bluetoothRadioType == BLUETOOTH_RADIO_BLE)
197
+ {
191
198
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
+ }
193
205
systemPrintln (" **" );
194
206
#else // COMPILE_BT
195
207
systemPrintln (" ** Bluetooth Not Compiled **" );
You can’t perform that action at this time.
0 commit comments