️ Removes task manager dependency

This commit is contained in:
Rune Harlyk
2025-09-14 21:12:57 +02:00
committed by Rune Harlyk
parent e1e11346b4
commit 43b5216d9f
8 changed files with 87 additions and 386 deletions
+1 -1
View File
@@ -155,7 +155,7 @@ void streamTask(void *pv) {
}
esp_err_t CameraService::cameraStream(PsychicRequest *request) {
g_taskManager.createTask(streamTask, "Stream client task", 4096, request, 4);
xTaskCreate(streamTask, "Stream client task", 4096, request, 4, nullptr);
vTaskDelay(pdMS_TO_TICKS(100));
return ESP_OK;
}