Decrease network task iteration delay

Position post measure first before get configuration
This commit is contained in:
samuelbles07
2025-07-26 18:23:04 +07:00
parent f4d518aa87
commit 92b3c69b98

View File

@ -1664,11 +1664,11 @@ void networkingTask(void *args) {
// Run scheduler
networkSignalCheckSchedule.run();
configSchedule.run();
transmissionSchedule.run();
configSchedule.run();
checkForUpdateSchedule.run();
delay(1000);
delay(50);
}
vTaskDelete(handleNetworkTask);