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

This commit is contained in:
Meco Man 2023-06-17 18:33:50 -04:00 committed by Man, Jianting (Meco)
parent 1104b80a4d
commit e8c0a74036
1 changed files with 1 additions and 1 deletions

View File

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