@@ -1239,6 +1239,15 @@ void menuPeriodicPrint()
1239
1239
systemPrint (" 55) Provisioning state: " );
1240
1240
systemPrintf (" %s\r\n " , PERIODIC_SETTING (PD_PROVISIONING_STATE) ? " Enabled" : " Disabled" );
1241
1241
1242
+ systemPrint (" 56) UDP server state: " );
1243
+ systemPrintf (" %s\r\n " , PERIODIC_SETTING (PD_UDP_SERVER_STATE) ? " Enabled" : " Disabled" );
1244
+
1245
+ systemPrint (" 57) UDP server data: " );
1246
+ systemPrintf (" %s\r\n " , PERIODIC_SETTING (PD_UDP_SERVER_DATA) ? " Enabled" : " Disabled" );
1247
+
1248
+ systemPrint (" 58) UDP server broadcast data: " );
1249
+ systemPrintf (" %s\r\n " , PERIODIC_SETTING (PD_UDP_SERVER_BROADCAST_DATA) ? " Enabled" : " Disabled" );
1250
+
1242
1251
systemPrintln (" ------- Tasks ------" );
1243
1252
systemPrint (" 70) btReadTask state: " );
1244
1253
systemPrintf (" %s\r\n " , PERIODIC_SETTING (PD_TASK_BLUETOOTH_READ) ? " Enabled" : " Disabled" );
@@ -1336,6 +1345,12 @@ void menuPeriodicPrint()
1336
1345
PERIODIC_TOGGLE (PD_HTTP_CLIENT_STATE);
1337
1346
else if (incoming == 55 )
1338
1347
PERIODIC_TOGGLE (PD_PROVISIONING_STATE);
1348
+ else if (incoming == 56 )
1349
+ PERIODIC_TOGGLE (PD_UDP_SERVER_STATE);
1350
+ else if (incoming == 57 )
1351
+ PERIODIC_TOGGLE (PD_UDP_SERVER_DATA);
1352
+ else if (incoming == 58 )
1353
+ PERIODIC_TOGGLE (PD_UDP_SERVER_BROADCAST_DATA);
1339
1354
1340
1355
else if (incoming == 70 )
1341
1356
PERIODIC_TOGGLE (PD_TASK_BLUETOOTH_READ);
0 commit comments