소스 검색

[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 {