在线看毛片网站电影-亚洲国产欧美日韩精品一区二区三区,国产欧美乱夫不卡无乱码,国产精品欧美久久久天天影视,精品一区二区三区视频在线观看,亚洲国产精品人成乱码天天看,日韩久久久一区,91精品国产91免费

<menu id="6qfwx"><li id="6qfwx"></li></menu>
    1. <menu id="6qfwx"><dl id="6qfwx"></dl></menu>

      <label id="6qfwx"><ol id="6qfwx"></ol></label><menu id="6qfwx"></menu><object id="6qfwx"><strike id="6qfwx"><noscript id="6qfwx"></noscript></strike></object>
        1. <center id="6qfwx"><dl id="6qfwx"></dl></center>

            新聞中心

            EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > stm32 學(xué)習(xí)筆記 systick定時器

            stm32 學(xué)習(xí)筆記 systick定時器

            作者: 時間:2016-11-13 來源:網(wǎng)絡(luò) 收藏
            開發(fā)STM32,遇到一些簡單的需要計時的任務(wù),比如延時等,最方便的是其提供的systick。

            systick其實本為移植操作系統(tǒng)提供滴答時鐘的方便。

            本文引用地址:http://www.biyoush.com/article/201611/316276.htm

            前兩天再次接觸STM32,使用了V3.5的庫,突然發(fā)現(xiàn)繁瑣的Systick用法被簡化成一句話。

            即:

            void SysTick_Configuration(void)
            {
            if (SysTick_Config(SystemCoreClock / 1000000))//72, 1us per tick
            {
            /* Capture error */
            while (1);
            }
            }

            而Systick_Config函數(shù)已經(jīng)取代了之前所有的設(shè)置過程。

            systick.c文件也被簡除,該函數(shù)直接歸在了內(nèi)核文件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

            優(yōu)點是設(shè)置相當(dāng)簡化,

            缺點是控制不如以前靈活了,一旦開啟,確實沒有庫函數(shù)方便地重載或禁用。



            關(guān)鍵詞: stm32systick定時

            評論


            技術(shù)專區(qū)

            關(guān)閉