欢迎来到天天文库
浏览记录
ID:39465188
大小:77.50 KB
页数:24页
时间:2019-07-04
《LaunchPad(MSP430G2553)_官方例程》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、LaunchPad官方例程(无修改)一切皆为2012TI杯电子设计大赛1.//******************************************************************************//LaunchPadLab2-SoftwareToggleP1.0,////MSP430G2xx2//-----------------///
2、
3、XIN
4、-//
5、
6、
7、//--
8、RSTXOUT
9、-//
10、
11、//
12、P1.0
13、-->LED////*******************************************************
14、***********************#includevoidmain(void){WDTCTL=WDTPW+WDTHOLD;//Stopwatchdogtimerif(CALBC1_1MHZ==0xFF
15、
16、CALDCO_1MHZ==0xFF){while(1);//Ifcalibrationconstantserased,trapCPU!!}//ConfigureBasicClockBCSCTL1=CALBC1_1MHZ;//SetrangeDCOCTL=CALDCO_1MHZ;//SetDCOstep+modulationBCSCTL3
17、
18、=LFXT1S_2;//SetLFXT1P1DIR=BIT6;//P1.6output(greenLED)P1OUT=0;//LEDoffIFG1&=~OFIFG;//ClearOSCFaultflagBCSCTL2
19、=SELM_1+DIVM_0;//SetMCLKfor(;;){P1OUT=BIT6;//P1.6on(greenLED)_delay_cycles(100);P1OUT=0;//greenLEDoff_delay_cycles(5000);}}2.//*********************************************************
20、*********************//LaunchPadLab3-SoftwarePortInterruptService////MSP430G2xx2//-----------------///
21、
22、XIN
23、-//
24、
25、
26、//--
27、RSTXOUT
28、-///
29、
30、
31、//--o--
32、P1.3P1.0
33、-->LED//
34、/////******************************************************************************#includevoidmain(void){WDTCTL=WD
35、TPW+WDTHOLD;//StopwatchdogtimerP1DIR
36、=BIT0;//SetP1.0tooutputdirectionP1IES
37、=BIT3;//P1.3Hi/loedgeP1IFG&=~BIT3;//P1.3IFGclearedP1IE
38、=BIT3;//P1.3interruptenabled_BIS_SR(LPM4_bits+GIE);//EnterLPM4w/interrupt}//Port1interruptserviceroutine#pragmavector=PORT1_VECTOR__interruptvoidPort_1(void){if(P1
39、IFG&BIT3){P1OUT^=BIT0;//P1.0=toggleP1IFG&=~BIT3;//P1.3IFGcleared}}3.//******************************************************************************//LaunchPadLab5-ADC10,SampleA10TempandConverttooCandoF////MSP430G2452//-----------------///
40、
41、XIN
42、-//
43、
44、
45、//--
46、RSTXOUT
47、-//
48、
49、//
50、A10
51、////************
52、******************************************************************#include"msp430g2553.h"longtemp;longIntDegF;longIntDegC;voidmain(void){WDTCTL=WDTPW+WDTHOLD;//StopWDT//ConfigureADC10ADC10CTL1=INCH_10+ADC10DIV_3;//ChooseADCChannelasTempSensor
此文档下载收益归作者所有