实例介绍
个人自作的简单教程代码,方便MSP430G2553的学习,可以加快学习.
【实例截图】
【核心代码】
aada2ff9-4621-444a-8fcc-eb29738d3bd3
└── explame
├── ADC
│ ├── ADC.C
│ ├── ADCCustomSfr.sfr
│ ├── ADC.dep
│ ├── ADC.ewd
│ ├── ADC.ewp
│ ├── Debug
│ │ ├── Exe
│ │ │ └── ADC.d43
│ │ └── Obj
│ │ ├── ADC.pbd
│ │ ├── ADC.pbd.browse
│ │ ├── ADC.pbi
│ │ ├── ADC.pbi.cout
│ │ └── ADC.r43
│ ├── path.txt
│ └── settings
│ ├── ADC.cspy.bat
│ ├── ADC.dbgdt
│ └── ADC.dni
├── capture
│ ├── capture.c
│ ├── captureCustomSfr.sfr
│ ├── capture.dep
│ ├── capture.ewd
│ ├── capture.ewp
│ ├── Debug
│ │ ├── Exe
│ │ │ └── capture.d43
│ │ └── Obj
│ │ ├── capture.pbd
│ │ ├── capture.pbd.browse
│ │ ├── capture.pbi
│ │ ├── capture.pbi.cout
│ │ └── capture.r43
│ ├── path.txt
│ └── settings
│ ├── capture.cspy.bat
│ ├── capture.dbgdt
│ └── capture.dni
├── Debug
│ ├── Exe
│ │ └── exp.d43
│ └── Obj
│ ├── exp.pbd
│ ├── exp.pbd.browse
│ ├── GPIO.pbi
│ ├── GPIO.pbi.cout
│ └── GPIO.r43
├── EXIT
│ ├── Debug
│ │ ├── Exe
│ │ │ └── EXIT.d43
│ │ └── Obj
│ │ ├── EXIT.pbd
│ │ ├── EXIT.pbd.browse
│ │ ├── EXIT.pbi
│ │ ├── EXIT.pbi.cout
│ │ └── EXIT.r43
│ ├── EXIT.c
│ ├── EXITCustomSfr.sfr
│ ├── EXIT.dep
│ ├── EXIT.ewd
│ ├── EXIT.ewp
│ ├── path.txt
│ └── settings
│ ├── EXIT.cspy.bat
│ ├── EXIT.dbgdt
│ └── EXIT.dni
├── expCustomSfr.sfr
├── exp.dep
├── exp.ewd
├── exp.ewp
├── exp.eww
├── GPIO
│ └── GPIO.c
├── MSP430G2553用户手册中文.pdf
├── MSP430G2xxx.pdf
├── MSP430register_guide.pdf
├── settings
│ ├── exp.cspy.bat
│ ├── exp.dbgdt
│ ├── exp.dni
│ └── exp.wsdt
├── Timer_CCR0
│ ├── Debug
│ │ ├── Exe
│ │ │ └── timer_ccr0.d43
│ │ └── Obj
│ │ ├── timer_ccr0.pbd
│ │ ├── timer_ccr0.pbd.browse
│ │ ├── Timer_CCR0.pbi
│ │ ├── Timer_CCR0.pbi.cout
│ │ └── Timer_CCR0.r43
│ ├── path.txt
│ ├── settings
│ │ ├── timer_ccr0.cspy.bat
│ │ ├── timer_ccr0.dbgdt
│ │ └── timer_ccr0.dni
│ ├── Timer_CCR0.c
│ ├── timer_ccr0CustomSfr.sfr
│ ├── timer_ccr0.dep
│ ├── timer_ccr0.ewd
│ └── timer_ccr0.ewp
├── Timer_CCR0_CCR1
│ ├── Debug
│ │ ├── Exe
│ │ │ └── timer.d43
│ │ └── Obj
│ │ ├── time.pbi
│ │ ├── time.pbi.cout
│ │ ├── time.r43
│ │ ├── timer.pbd
│ │ └── timer.pbd.browse
│ ├── path.txt
│ ├── settings
│ │ ├── timer.cspy.bat
│ │ ├── timer.dbgdt
│ │ └── timer.dni
│ ├── time.c
│ ├── timerCustomSfr.sfr
│ ├── timer.dep
│ ├── timer.ewd
│ └── timer.ewp
├── Timer_Over
│ ├── Debug
│ │ ├── Exe
│ │ │ └── time.d43
│ │ └── Obj
│ │ ├── time.pbd
│ │ ├── time.pbd.browse
│ │ ├── Timer_Over.pbi
│ │ ├── Timer_Over.pbi.cout
│ │ └── Timer_Over.r43
│ ├── path.txt
│ ├── settings
│ │ ├── time.cspy.bat
│ │ ├── time.dbgdt
│ │ └── time.dni
│ ├── timeCustomSfr.sfr
│ ├── time.dep
│ ├── time.ewd
│ ├── time.ewp
│ └── Timer_Over.c
├── Timer_PWM
│ ├── Debug
│ │ ├── Exe
│ │ │ └── pwm.d43
│ │ └── Obj
│ │ ├── pwm.pbd
│ │ ├── pwm.pbd.browse
│ │ ├── pwm.pbi
│ │ ├── pwm.pbi.cout
│ │ └── pwm.r43
│ ├── path.txt
│ ├── pwm.c
│ ├── pwmCustomSfr.sfr
│ ├── pwm.dep
│ ├── pwm.ewd
│ ├── pwm.ewp
│ └── settings
│ ├── pwm.cspy.bat
│ ├── pwm.dbgdt
│ └── pwm.dni
├── WDT
│ ├── Debug
│ │ ├── Exe
│ │ │ └── WDT.d43
│ │ └── Obj
│ │ ├── WDT.pbd
│ │ ├── WDT.pbd.browse
│ │ ├── WDT.pbi
│ │ ├── WDT.pbi.cout
│ │ └── WDT.r43
│ ├── path.txt
│ ├── settings
│ │ ├── WDT.cspy.bat
│ │ ├── WDT.dbgdt
│ │ └── WDT.dni
│ ├── WDT.c
│ ├── WDTCustomSfr.sfr
│ ├── WDT.dep
│ ├── WDT.ewd
│ └── WDT.ewp
└── 说明.doc
46 directories, 140 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论