MSP430F149开发板相关例程

所属分类:嵌入式/单片机/硬件编程
开发工具:C/C++
文件大小:20678KB
下载次数:2
上传日期:2017-07-20 20:10:41
上 传 者墨多多
说明:  TS8900——M149里面有ADC转化模块例程,Cry1602液晶显示,Cry12864液晶显示,HS0038红外遥控器程序,RS232通讯程序,RS484通信程序。。。。。
(TS8900 - M149, which has ADC conversion module routines, Cry1602 LCD display, Cry12864 LCD, HS0038 infrared remote control procedures, RS232 communication procedures, RS484 communication procedures.....)

文件列表:
开发板例程\ADC转换\AD1\AD3.dep (2587, 2013-06-22)
开发板例程\ADC转换\AD1\AD3.ewd (20090, 2013-06-22)
开发板例程\ADC转换\AD1\AD3.ewp (50200, 2013-06-22)
开发板例程\ADC转换\AD1\AD3.eww (157, 2013-06-22)
开发板例程\ADC转换\AD1\ADC_Func.c (1906, 2013-06-22)
开发板例程\ADC转换\AD1\allfunc.h (276, 2013-06-22)
开发板例程\ADC转换\AD1\Backup (2) of AD3.ewd (17846, 2013-06-22)
开发板例程\ADC转换\AD1\Backup (2) of AD3.ewp (47485, 2013-06-22)
开发板例程\ADC转换\AD1\Backup of AD3.ewd (12489, 2013-06-22)
开发板例程\ADC转换\AD1\Backup of AD3.ewp (44198, 2013-06-22)
开发板例程\ADC转换\AD1\Debug\Exe\AD3.d43 (22825, 2013-06-22)
开发板例程\ADC转换\AD1\Debug\Exe\AD3.txt (3115, 2013-06-22)
开发板例程\ADC转换\AD1\Debug\Obj\AD3.pbd (129, 2013-06-22)
开发板例程\ADC转换\AD1\Debug\Obj\main.pbi (436, 2013-06-22)
开发板例程\ADC转换\AD1\Debug\Obj\main.r43 (21801, 2013-06-22)
开发板例程\ADC转换\AD1\main.c (2609, 2013-06-22)
开发板例程\ADC转换\AD1\path.txt (0, 2013-06-22)
开发板例程\ADC转换\AD1\settings\AD3.dbgdt (5292, 2013-06-22)
开发板例程\ADC转换\AD1\settings\AD3.dni (1546, 2013-06-22)
开发板例程\ADC转换\AD1\settings\AD3.wsdt (2847, 2017-07-12)
开发板例程\ADC转换\AD1\settings\AD3CSP~1.BAT (1299, 2013-06-22)
开发板例程\ADC转换\AD1\UART0_Func.c (1902, 2013-06-22)
开发板例程\ADC转换\AD2\AD.dep (2482, 2013-06-22)
开发板例程\ADC转换\AD2\AD.ewd (20090, 2013-06-22)
开发板例程\ADC转换\AD2\AD.ewp (50198, 2013-06-22)
开发板例程\ADC转换\AD2\AD.eww (156, 2013-06-22)
开发板例程\ADC转换\AD2\Backup (2) of AD.ewd (17846, 2013-06-22)
开发板例程\ADC转换\AD2\Backup (2) of AD.ewp (47483, 2013-06-22)
开发板例程\ADC转换\AD2\Backup of AD.ewd (12489, 2013-06-22)
开发板例程\ADC转换\AD2\Backup of AD.ewp (44198, 2013-06-22)
开发板例程\ADC转换\AD2\cry1602.c (4420, 2013-06-22)
开发板例程\ADC转换\AD2\cry1602.h (401, 2013-06-22)
开发板例程\ADC转换\AD2\Debug\Exe\AD.d43 (24123, 2013-06-22)
开发板例程\ADC转换\AD2\Debug\Exe\AD.txt (3212, 2013-06-22)
开发板例程\ADC转换\AD2\Debug\Obj\AD.pbd (129, 2013-06-22)
开发板例程\ADC转换\AD2\Debug\Obj\main.r43 (22277, 2013-06-22)
开发板例程\ADC转换\AD2\main.c (3650, 2013-06-22)
开发板例程\ADC转换\AD2\path.txt (0, 2013-06-22)
开发板例程\ADC转换\AD2\settings\AD.dni (1277, 2013-06-22)
开发板例程\ADC转换\AD2\settings\AD8718~1.WSD (3329, 2013-06-22)
... ...

Readme File for MSP430 Code Examples ------------------------------------ The MSP430 code examples are provided for demonstration purposes only. The intent is to show how to use the various peripherals found on the MSP430. To avoid redundancy, registers were not configured unless necessary. Default values were used. Delay loops were ommitted in many cases. For instance, when enabling the ADC12's internal reference, one should allow 17 msec for it to settle to ensure the first sample is accurate. Always consult applicable datasheet when developing an application. Coding Style Guidelines for Assembly Code Examples -------------------------------------------------- 1. No line should exceed 80 characters. 2. Use MACROs provided in the MSP430 header file. 3. Labels start in column 1 and are 10 characters or less. 4. Instructions/DIRECTIVES start in column 13. 5. Instructions are lower case and DIRECTIVES are upper case. 6. Operands start in column 21. 7. Comments start in column 45, first word is capitalized. 8. For multi-line comments, additional lines are NOT capitalized. Examples: Column: 13 21 45 | | | Label in/DIR short_operand ; Comment Column: 13 21 45 | | | Label in/DIR this_operand_is_extra_long ; Comment Column: 13 21 45 | | | Label in/DIR this_operand_is_extra_long ; First line of comment ; additional comment line Use MACROs from MSP430 header file: StopWDT mov.w #WDTPW+WDTHOLD,&WDTCTL ; Stop Watchdog Timer Instead of hex values: StopWDT mov.w #05A80h,&0120h ; Stop Watchdog Timer Use ".w" extension for word instructions: RESET mov.w #300h,SP ; Initialize stack pointer Coding Style Guidelines for C Code Examples -------------------------------------------------- 1. No line should exceed 80 characters. 2. Use MACROs provided in the MSP430 header file. 3. Comments start in column 45, first word is capitalized. 4. For multi-line comments, additional lines are NOT capitalized. 5. Use two-space indentation

近期下载者

相关文件


收藏者