MSP430單片機(jī)定時(shí)器B中斷實(shí)驗(yàn)
#include "MSP430F149.h"
#define uchar unsigned char
#define uint unsigned int
uchar LedData=0x80;
uchar num=50;//中斷50次讓LED右移一位
//定時(shí)器A初始化
void InitTimerB(){
TBCTL=TBSSEL1+ID1+ID0+MC0+TBCLR;//選擇1/8SMCLK 增計(jì)數(shù) 清除TAR
TBCCTL0=CCIE;//CCR0中斷允許 比較模式
TBCCR0=10000;//時(shí)間間隔10ms
}
//定時(shí)器A中斷
#pragmavector=TIMERB0_VECTOR
__interrupt void TimerBINT(){
num--;
if(num==0){
LedData>>=1;//右移一位
if(LedData==0x00) LedData=0x80;
P4OUT=LedData;//P4口輸出數(shù)據(jù)
num=50;//中斷50次為0.5s
}
}
void main(){
InitClock();//初始化時(shí)鐘
InitTimerB();//定時(shí)器B初始化
P4DIR=0xFF;//P4口輸出方向
_EINT();//打開中斷
while(1);
}
評(píng)論