Skip to content

Commit 2a5e9fd

Browse files
committed
fix(sync): as C5 takes little longer, waait for 1500ms instead of 1000ms
1 parent 3a4e80f commit 2a5e9fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

host/drivers/transport/transport_drv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ static void reset_slave(void)
7979
g_h.funcs->_h_write_gpio(reset_pin.port, reset_pin.pin, H_RESET_VAL_ACTIVE);
8080

8181
/* stop spi transactions short time to avoid slave sync issues */
82-
g_h.funcs->_h_sleep(1);
82+
g_h.funcs->_h_msleep(1500);
8383
}
8484

8585
static void transport_driver_event_handler(uint8_t event)

idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "2.0.8"
1+
version: "2.0.9"
22
description: ESP-Hosted-MCU provide drivers to act any ESP chipset as Wi-Fi or Bluetooth co-processor.
33
url: https://github.com/espressif/esp-hosted-mcu
44
examples:

0 commit comments

Comments
 (0)