w800 + berry (#1629)

* w800 + berry

* fix w600

* Update XR and makefile

* Berry cmake

* BL602 lfs test

* Update w800

* Fix

* W600 heap

* sensors & bl602

* bl602 delay_us
This commit is contained in:
NonPIayerCharacter
2025-06-20 10:35:00 +03:00
committed by GitHub
parent 10e20f9a9b
commit fac2cf081c
85 changed files with 1556 additions and 4189 deletions

View File

@ -24,7 +24,7 @@ void HTTPServer_Start();
typedef struct
{
int fd;
TaskHandle_t thread;
xTaskHandle thread;
bool isCompleted;
} tcp_thread_t;
@ -54,7 +54,7 @@ static void tcp_client_thread(tcp_thread_t* arg)
goto exit;
}
http_request_t request;
os_memset(&request, 0, sizeof(request));
memset(&request, 0, sizeof(request));
request.fd = fd;
request.received = buf;
@ -275,7 +275,7 @@ static void tcp_server_thread(beken_thread_arg_t arg)
}
}
}
vTaskDelay(pdMS_TO_TICKS(10));
rtos_delay_milliseconds(10);
}
error: