1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2026-03-28 18:06:37 +01:00

Switch to current webserver version and some small fixes

This commit is contained in:
2025-08-26 17:17:48 +02:00
parent 8e72537286
commit 22e3ca3875
9 changed files with 16 additions and 14 deletions

View File

@@ -254,7 +254,7 @@ void handleSpiLeds(void *param){
void createSpiLedTask(LedTaskData *param) {
TaskHandle_t xHandle = NULL;
GwLog *logger = shared->api->getLogger();
GwLog *logger = param->api->getLogger();
esp_err_t err = xTaskCreate(handleSpiLeds, "handleLeds", configMINIMAL_STACK_SIZE + 2048, param, 3, &xHandle);
if (err != pdPASS) {
logger->logDebug(GwLog::ERROR, "Failed to create spiled task! (err=%d)", err);