OTA works

This commit is contained in:
technyon
2022-06-14 22:50:14 +02:00
parent b39c051027
commit d64975c5ef
5 changed files with 14 additions and 8 deletions

View File

@@ -89,7 +89,7 @@ void setupTasks()
{
// configMAX_PRIORITIES is 25
xTaskCreate(networkTask, "ntw", 8192, NULL, 3, NULL);
xTaskCreatePinnedToCore(networkTask, "ntw", 8192, NULL, 3, NULL, 1);
xTaskCreate(nukiTask, "nuki", 4096, NULL, 2, NULL);
xTaskCreate(presenceDetectionTask, "prdet", 768, NULL, 5, NULL);
xTaskCreate(checkMillisTask, "mlchk", 512, NULL, 1, NULL);