mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 13:43:31 +08:00
[bsp][stm32f1xx-hal]修复当开启优化时m3_m4_delay_us延时失效问题
This commit is contained in:
parent
6e5751d49b
commit
0893e54293
@ -115,11 +115,12 @@ void SystemClock_Config(void)
|
||||
|
||||
static void m3_m4_delay_us(rt_uint32_t us)
|
||||
{
|
||||
int i = (HAL_RCC_GetHCLKFreq() / 4000000 * us);
|
||||
while (i)
|
||||
__IO uint32_t Delay = us * (SystemCoreClock / 8U / 1000000U);
|
||||
do
|
||||
{
|
||||
i--;
|
||||
}
|
||||
__NOP();
|
||||
}
|
||||
while (Delay --);
|
||||
}
|
||||
|
||||
void HAL_Delay(__IO uint32_t Delay)
|
||||
|
Loading…
x
Reference in New Issue
Block a user