浏览代码

[wch][risc-v][drv] fix a typo in drv_common.c

Meco Man 1 年之前
父节点
当前提交
e8c0a74036
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      bsp/wch/risc-v/Libraries/ch32_drivers/drv_common.c

+ 1 - 1
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 {