add basic OTA Update fucionality
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
j3d1 2021-08-28 23:44:01 +02:00
parent 495163060d
commit 8874fecf15
8 changed files with 333 additions and 72 deletions

View file

@ -22,9 +22,9 @@ void user_init(void)
wifi_available_semaphore = xSemaphoreCreateBinary();
xTaskCreate(wifi_task, "wifi_task", 512, NULL, 2, NULL);
xTaskCreate(wifi_task, "wifi_task", 1024, NULL, 1, NULL);
xTaskCreate(&httpd_task, "httpd_task", 512, NULL, 2, NULL);
xTaskCreate(&httpd_task, "httpd_task", 1024, NULL, 2, NULL);
xTaskCreate(&lux_task, "lux_task", 512, NULL, 1, NULL);
}