This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 4e3480554d6fa2b561fdf76136f4f60a8de3ad00 Author: chao an <anc...@xiaomi.com> AuthorDate: Wed Mar 22 20:14:12 2023 +0800 mmcsd/sdio: enlarge cmd53 timeout to 1s cmd53 need a longer tolerance on some slow devices Signed-off-by: chao an <anc...@xiaomi.com> --- drivers/mmcsd/sdio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmcsd/sdio.c b/drivers/mmcsd/sdio.c index 38dd15ea8a..a0876fd080 100644 --- a/drivers/mmcsd/sdio.c +++ b/drivers/mmcsd/sdio.c @@ -36,7 +36,7 @@ * Pre-processor Definitions ****************************************************************************/ -#define SDIO_CMD53_TIMEOUT_MS 100 +#define SDIO_CMD53_TIMEOUT_MS 1000 #define SDIO_IDLE_DELAY_MS 50 /****************************************************************************