您的位置 首页 发布

stm32 学习笔记 systick定时器

开发STM32,遇到一些简单的需要计时的任务,比如延时等,最方便的是其提供的systick。systick其实本为移植操作系统提供滴答时钟的方便。前…

开发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

长处是设置适当简化,

缺陷是操控不如曾经灵活了,一旦敞开,的确没有库函数便利地重载或禁用。

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/changshang/fabu/272676.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部