STM32 SysTick應(yīng)用注意
由上面的資料可以看出,SysTick的函數(shù)已經(jīng)變化了很多,所以在使用時(shí)一定要看相應(yīng)的庫(kù)函數(shù)介紹文檔。
//SYSTICK分頻--1ms的系統(tǒng)時(shí)鐘中斷
if (SysTick_Config(SystemFrequency / 1000))
{
/* Capture error */
while (1);
}
EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > STM32 SysTick應(yīng)用注意
由上面的資料可以看出,SysTick的函數(shù)已經(jīng)變化了很多,所以在使用時(shí)一定要看相應(yīng)的庫(kù)函數(shù)介紹文檔。
//SYSTICK分頻--1ms的系統(tǒng)時(shí)鐘中斷
if (SysTick_Config(SystemFrequency / 1000))
{
/* Capture error */
while (1);
}
評(píng)論