mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-27 09:32:28 +08:00
Merge pull request #411 from grissiom/fix-cortex-m
bsp/{cortex-M}: fix the SysTick_Config
This commit is contained in:
@@ -65,7 +65,7 @@ void rt_hw_board_init()
|
||||
#endif
|
||||
|
||||
/* init systick */
|
||||
SysTick_Config( SystemCoreClock/RT_TICK_PER_SECOND - 1);
|
||||
SysTick_Config(SystemCoreClock/RT_TICK_PER_SECOND);
|
||||
/* set pend exception priority */
|
||||
NVIC_SetPriority(PendSV_IRQn, (1<<__NVIC_PRIO_BITS) - 1);
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ void rt_hw_board_init()
|
||||
#endif
|
||||
|
||||
/* init systick */
|
||||
SysTick_Config(SystemCoreClock / RT_TICK_PER_SECOND - 1);
|
||||
SysTick_Config(SystemCoreClock / RT_TICK_PER_SECOND);
|
||||
/* set pend exception priority */
|
||||
NVIC_SetPriority(PendSV_IRQn, (1 << __NVIC_PRIO_BITS) - 1);
|
||||
/*init uart device*/
|
||||
|
||||
@@ -60,7 +60,7 @@ void rt_hw_board_init()
|
||||
#endif
|
||||
SystemCoreClockUpdate();
|
||||
/* init systick 1 systick = 1/(100M / 100) 100¸ösystick = 1s*/
|
||||
SysTick_Config(SystemCoreClock / RT_TICK_PER_SECOND - 1);
|
||||
SysTick_Config(SystemCoreClock / RT_TICK_PER_SECOND);
|
||||
/* set pend exception priority */
|
||||
NVIC_SetPriority(PendSV_IRQn, (1 << __NVIC_PRIO_BITS) - 1);
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ void SysTick_Handler(void)
|
||||
void rt_hw_board_init()
|
||||
{
|
||||
/* init systick */
|
||||
SysTick_Config(SystemFrequency/RT_TICK_PER_SECOND - 1);
|
||||
SysTick_Config(SystemFrequency/RT_TICK_PER_SECOND);
|
||||
}
|
||||
|
||||
/*@}*/
|
||||
|
||||
@@ -56,7 +56,7 @@ void rt_hw_board_init()
|
||||
SystemCoreClockUpdate();
|
||||
|
||||
/* init systick */
|
||||
SysTick_Config(SystemCoreClock / RT_TICK_PER_SECOND - 1);
|
||||
SysTick_Config(SystemCoreClock / RT_TICK_PER_SECOND);
|
||||
|
||||
/* set pend exception priority */
|
||||
NVIC_SetPriority(PendSV_IRQn, (1 << __NVIC_PRIO_BITS) - 1);
|
||||
|
||||
Reference in New Issue
Block a user