Removed esp_hosted.

Signed-off-by: Yilin Sun <imi415@imi.moe>
This commit is contained in:
Yilin Sun 2023-01-01 16:09:44 +08:00
parent bc2b27bafa
commit c6fd76fe64
Signed by: imi415
GPG Key ID: 17F01E106F9F5E0A
3 changed files with 8 additions and 4 deletions

3
.gitmodules vendored
View File

@ -1,9 +1,6 @@
[submodule "SDK"]
path = SDK
url = https://git.minori.work/Embedded_SDK/MCUXpresso_LPC55S69.git
[submodule "lib/esp_hosted/hosted"]
path = lib/esp_hosted/hosted
url = https://github.com/espressif/esp-hosted.git
[submodule "lib/freertos"]
path = lib/freertos
url = https://github.com/FreeRTOS/FreeRTOS-Kernel.git

@ -1 +0,0 @@
Subproject commit 3583fb7519f4ea3487949d999a8312060d38721d

View File

@ -28,4 +28,12 @@ int hosted_destroy_semaphore(void *semaphore_handle);
void *hosted_timer_start(int duration, int type, void (*timeout_handler)(void const *), void *arg);
int hosted_timer_stop(void *timer_handle);
unsigned int msleep(unsigned int mseconds);
unsigned int sleep(unsigned int seconds);
void *serial_drv_open(const char *transport);
int serial_drv_write(void *handle, uint8_t *buf, int in_count, int *out_count);
uint8_t *serial_drv_read(void *handle, uint32_t *out_nbyte);
int serial_drv_close(void *handle);
#endif /* ESP_HOSTED_NXP_PLATFORM_WRAPPER_H */