Merge pull request #1958 from tyustli/tyustli_st

fix HAL_Delay no effect bug on st platform
This commit is contained in:
Ha Thach 2023-03-16 12:28:24 +07:00 committed by GitHub
commit d875e694f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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++;
}