Fix tsk watchdog when running spp vfs demo

This commit is contained in:
weitianhua 2020-07-16 14:49:24 +08:00
parent 8fb47ab0c2
commit 33546a0094
2 changed files with 6 additions and 0 deletions

View file

@ -53,6 +53,9 @@ static void spp_read_handle(void * param)
int size = 0;
int fd = (int)param;
do {
/* controll the log frequency, retry after 1s */
vTaskDelay(1000 / portTICK_PERIOD_MS);
size = read (fd, spp_data, SPP_DATA_LEN);
ESP_LOGI(SPP_TAG, "fd = %d data_len = %d", fd, size);
if (size == -1) {

View file

@ -61,6 +61,9 @@ static void spp_write_handle(void * param)
int fd = (int)param;
printf("%s %d %p\n", __func__,fd,param);
do {
/* controll the log frequency, retry after 1s */
vTaskDelay(1000 / portTICK_PERIOD_MS);
size = write (fd, spp_data, SPP_DATA_LEN);
ESP_LOGI(SPP_TAG, "fd = %d data_len = %d",fd, size);
if (size == -1) {