MSP430f44xzichengxv

所属分类:单片机开发
开发工具:C/C++
文件大小:49KB
下载次数:4
上传日期:2008-08-10 18:39:36
上 传 者790444
说明:  MSP430X44X子程序,希望对大家学习430单片机有用... ... ... ...!
(MSP430X44X subprogram, and they hope to learn from U.S. 430 Singlechip useful ... ... ... ...!)

文件列表:
MSP-FET430P440 C语言示例\fet440_1.c (1114, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_adc12_01.c (2221, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_adc12_02.c (1646, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_adc12_03.c (1859, 2005-04-06)
MSP-FET430P440 C语言示例\fet440_adc12_04.c (2241, 2005-03-29)
MSP-FET430P440 C语言示例\fet440_adc12_05.c (1794, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_adc12_06.c (3431, 2005-03-29)
MSP-FET430P440 C语言示例\fet440_adc12_07.c (2160, 2005-03-29)
MSP-FET430P440 C语言示例\fet440_adc12_08.c (2814, 2005-03-29)
MSP-FET430P440 C语言示例\fet440_adc12_09.c (3274, 2005-03-29)
MSP-FET430P440 C语言示例\fet440_adc12_10.c (2885, 2005-03-29)
MSP-FET430P440 C语言示例\fet440_adc12_11.c (2691, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_bt_01.c (1627, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_bt_02.c (1558, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_clks_02.c (2773, 2005-03-15)
MSP-FET430P440 C语言示例\FET440_demolist_C.txt (3390, 2005-03-30)
MSP-FET430P440 C语言示例\fet440_fll_01.c (1602, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_fll_02.c (1597, 2005-03-18)
MSP-FET430P440 C语言示例\fet440_lcd_01.c (2275, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_lcd_02.c (6119, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_lcd_03.c (4416, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_LFxtal_nmi.c (2466, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_lpm3.c (2508, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_spi0_016x.c (2333, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_svs_01.c (1404, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_ta_01.c (1586, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_ta_02.c (1405, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_ta_03.c (1767, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_ta_04.c (1755, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_ta_05.c (1645, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_ta_16.c (2009, 2005-03-29)
MSP-FET430P440 C语言示例\fet440_ta_17.c (2051, 2005-03-29)
MSP-FET430P440 C语言示例\fet440_tb_01.c (1590, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_tb_02.c (1426, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_tb_03.c (1993, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_tb_04.c (1750, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_tb_05.c (1649, 2005-03-15)
MSP-FET430P440 C语言示例\fet440_tb_10.c (2276, 2005-03-29)
MSP-FET430P440 C语言示例\fet440_tb_11.c (2312, 2005-03-29)
MSP-FET430P440 C语言示例\fet440_uart01_0115k.c (2132, 2005-03-15)
... ...

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 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

近期下载者

相关文件


收藏者