From e8c0a74036e9b750d032a43a3e002ee22fba9fb9 Mon Sep 17 00:00:00 2001 From: Meco Man <920369182@qq.com> Date: Sat, 17 Jun 2023 18:33:50 -0400 Subject: [PATCH] [wch][risc-v][drv] fix a typo in drv_common.c --- bsp/wch/risc-v/Libraries/ch32_drivers/drv_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp/wch/risc-v/Libraries/ch32_drivers/drv_common.c b/bsp/wch/risc-v/Libraries/ch32_drivers/drv_common.c index 8b98915ff0..71dfeab96e 100644 --- a/bsp/wch/risc-v/Libraries/ch32_drivers/drv_common.c +++ b/bsp/wch/risc-v/Libraries/ch32_drivers/drv_common.c @@ -25,7 +25,7 @@ void rt_hw_us_delay(rt_uint32_t us) total_delay_ticks = us * us_ticks; if (total_delay_ticks >= reload) { - LOW_E("rt_hw_us_delay: the us parameter exceeds the maximum limit!"); + LOG_E("rt_hw_us_delay: the us parameter exceeds the maximum limit!"); } do {