|
由于前幾天事太多,近日繼續M0菜鳥的歷程。以下是systick.cpp文件源碼
#include "systick.h"
extern "C" void __irq SysTick_Handler(void)
{
static int count = 0;
if (count++ >= 50)//500mS
{
PortLed8.DATA.Bits.PinLed8 ^= 1;//LED8每半秒閃爍一次
count = 0;
}
}
SysTickObj::SysTickObj (void)
{
SysTickInit();//節拍定時器初始化
}
void SysTickObj::SysTickInit(void)
{
//位域寫法
SYSTick.STCTRL.Bits.ENABLE = 1;//系統節拍計數器使能
SYSTick.STCTRL.Bits.TICKINT = 1;//系統節拍中斷使能
//寄存器寫法
// SYSTick.STCTRL.Regs = (1 << SYSTick_ENABLE)//系統節拍計數器使能
// | (1 << SYSTick_TICKINT);//系統節拍中斷使能
SYSTick.STRELOAD.Regs = (SystemFrequency / 1000 * 10) - 1;//10mS節拍中斷
}
HotPower@163.com 2010.9.6 23:38 于雁塔菜地
菜農通訊工具:
新浪網頁版:http://t.sina.com.cn/hotpower
新浪手機版:http://t.sina.cn/hotpower
網 易微 博:http://t.163.com/hotpower
騰訊QQ: 1270688699
菜農郵箱: HotPower@163.com
菜農導航: http://www.hotpage.net.cn/
|
|