mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-02-18 05:25:35 +00:00
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:
committed by
GitHub
parent
10e20f9a9b
commit
fac2cf081c
@ -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:
|
||||
|
||||
Reference in New Issue
Block a user