More memory for default task

This commit is contained in:
@CarlWachter
2024-02-23 10:32:35 +01:00
parent 51fad902e7
commit af90c7f360
4 changed files with 20 additions and 4 deletions

View File

@@ -386,7 +386,8 @@ HAL_TickFreqTypeDef HAL_GetTickFreq(void)
* @param Delay specifies the delay time length, in milliseconds.
* @retval None
*/
__weak void HAL_Delay(uint32_t Delay){
__weak void HAL_Delay(uint32_t Delay)
{
uint32_t tickstart = HAL_GetTick();
uint32_t wait = Delay;