I have setted:SYSCLK: 250 MHzHCLK: 250 MHzAs a SysTick source I tried: HCLK, HCLK/8, LSISTM32Cube FW_H5 V1.4.0I'm getting 2ms instead of 1ms in any configuration. Any idea how to fix it?
So why isn't the function called HalMinimumDelay()?.. (That's just a rhetorical question)In older implementations, this function was implemented as I previously expected.
I try to insert toggle command into interrupt.. 1ms was OK.So problem is at implementation of "HAL_Delay(T)" function - T is (T+1).When I try HAL_Delay(2), time is 3ms.ST insert this code into HalDelay function: /* Add a freq to guarantee minimum w...
Yes. This is my test code: HAL_Delay(1);
HAL_GPIO_TogglePin(WM_BUS_CS_GPIO_Port, WM_BUS_CS_Pin);
HAL_Delay(1);
HAL_GPIO_TogglePin(WM_BUS_CS_GPIO_Port, WM_BUS_CS_Pin);
HAL_Delay(1);
HAL_GPIO_TogglePin(WM_BUS_CS_GPIO_Port, WM_BUS_CS_Pin);
...