开发STM32,遇到一些简略的需求计时的使命,比方延时等,最便利的是其供给的systick。
systick其实本为移植操作系统供给滴答时钟的便利。
前两天再次触摸STM32,使用了V3.5的库,忽然发现繁琐的Systick用法被简化成一句话。
即:
void SysTick_Configuration(void)
{
if (SysTick_Config(SystemCoreClock / 1000000))//72, 1us per tick
{
/* Capture error */
while (1);
}
}
而Systick_Config函数现已替代了之前一切的设置进程。
systick.c文件也被简除,该函数直接归在了内核文件core_cm3.h里边。
/* ################################## SysTick function ############################################ */
#if (!defined (__Vendor_SysTickConfig)) || (__Vendor_SysTickConfig == 0)
/**
* @brief Initialize and start the SysTick counter and its interrupt.
*
* @param ticks number of ticks between two interrupts
* @return 1 = failed, 0 = successful
*
* Initialise the system tick timer and its interrupt and start the
* system tick timer / counter in free running mode to generate
* periodical interrupts.
*/
static __INLINE uint32_t SysTick_Config(uint32_t ticks)
{
if (ticks > SysTick_LOAD_RELOAD_Msk) return (1); /* Reload value impossible */
SysTick->LOAD = (ticks & SysTick_LOAD_RELOAD_Msk) – 1; /* set reload register */
NVIC_SetPriority (SysTick_IRQn, (1<<__NVIC_PRIO_BITS) – 1); /* set Priority for Cortex-M0 System Interrupts */
SysTick->VAL = 0; /* Load the SysTick Counter Value */
SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk |
SysTick_CTRL_TICKINT_Msk |
SysTick_CTRL_ENABLE_Msk; /* Enable SysTick IRQ and SysTick Timer */
return (0); /* Function successful */
}
#endif
长处是设置适当简化,
缺陷是操控不如曾经灵活了,一旦敞开,的确没有库函数便利地重载或禁用。