msp4330g2553 io中断

时间:2018-08-27 08:23:36
【文件属性】:

文件名称:msp4330g2553 io中断

文件大小:18KB

文件格式:ZIP

更新时间:2018-08-27 08:23:36

msp430g2553

#include "msp430g2452.h" void main( void ) { // Stop watchdog timer to prevent time out reset WDTCTL = WDTPW + WDTHOLD; P1DIR&=~BIT3; P1SEL&=~BIT3; //中断功能 P1IES|=BIT3; P1IE|=BIT3; P1IFG=0; P1DIR|=BIT6; P1OUT|=BIT6; _EINT(); while(1); } #pragma vector=PORT1_VECTOR __interrupt void Port1() { P1IFG=0; _EINT(); P1OUT^=BIT6; }


【文件预览】:
8 IO中断
----IO中断.dep(2KB)
----main.c(422B)
----settings()
--------IO中断.dbgdt(6KB)
--------IO中断.dni(1KB)
--------IO中断.wsdt(5KB)
--------IO中断.cspy.bat(1KB)
----Debug()
--------Obj()
--------List()
--------Exe()
----IO中断.eww(172B)
----IO中断.ewp(49KB)
----IO中断.ewd(20KB)
----path.txt(0B)

网友评论