fix HAL_Delay no effect bug on st platform

This commit is contained in:
tyustli 2023-03-16 08:28:19 +08:00
parent b443851980
commit fabe86362b
13 changed files with 13 additions and 0 deletions

View File

@ -143,6 +143,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -129,6 +129,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -191,6 +191,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -193,6 +193,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -180,6 +180,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -293,6 +293,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -167,6 +167,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -251,6 +251,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler(void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -141,6 +141,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -183,6 +183,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -204,6 +204,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -179,6 +179,7 @@ int board_uart_write(void const *buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler(void)
{
HAL_IncTick();
system_ticks++;
}

View File

@ -169,6 +169,7 @@ int board_uart_write(void const * buf, int len)
volatile uint32_t system_ticks = 0;
void SysTick_Handler (void)
{
HAL_IncTick();
system_ticks++;
}