文件名称:C
- 所属分类:
- 单片机(51,AVR,MSP430等)
- 资源属性:
- 上传时间:
- 2012-11-26
- 文件大小:
- 29kb
- 下载次数:
- 0次
- 提 供 者:
- 马**
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
C语言编程基础:
1、 十六进制表示字节0x5a:二进制为01011010B;0x6E为01101110。
2、 如果将一个16位二进数赋给一个8位的字节变量,则自动截断为低8位,而丢掉高8位。
3、 ++var表示对变量var先增一;var—表示对变量后减一。
4、 x |= 0x0f 表示为 x = x | 0x0f
5、 TMOD = ( TMOD & 0xf0 ) | 0x05 表示给变量TMOD的低四位赋值0x5,而不改变TMOD的高四位。
6、 While( 1 ) 表示无限执行该语句,即死循环。语句后的分号表示空循环体,也就是{ }
五、在某引脚输出高电平的编程方法:(比如P1.3(PIN4)引脚)
#i nclude <AT89x52.h> //该头文档中有单片机内部资源的符号化定义,其中包含P1.3
void main( void ) //void 表示没有输入参数,也没有函数返值,这入单片机运行的复位入口
-C programming language based on:
1 hexadecimal byte 0x5a: binary is 01011010B 0x6E is 01,101,110.
2, if a 16-bit binary number assigned to an 8-bit byte variable, it is automatically truncated to the lower 8 bits, while losing a high 8.
3,++ var first expressed by a variable var var-expressed variables minus one.
4, x | = 0x0f expressed as x = x | 0x0f
5, TMOD = (TMOD & 0xf0) | 0x05 said to the variable assignment TMOD low four 0x5, without changing the TMOD high four.
6, While (1) that the statement is infinite, that is an infinite loop. Statement after the semicolon represents the empty loop, that is, { }
Fifth, in a pin-high programming: (eg, P1.3 (PIN4) pin)
# I nclude <AT89x52.h>// The first document in the symbol of single-chip definition of internal resources, which includes P1.3
void main (void)// void that no input parameters, and no function return value, this entry into the microcontroller reset operation
1、 十六进制表示字节0x5a:二进制为01011010B;0x6E为01101110。
2、 如果将一个16位二进数赋给一个8位的字节变量,则自动截断为低8位,而丢掉高8位。
3、 ++var表示对变量var先增一;var—表示对变量后减一。
4、 x |= 0x0f 表示为 x = x | 0x0f
5、 TMOD = ( TMOD & 0xf0 ) | 0x05 表示给变量TMOD的低四位赋值0x5,而不改变TMOD的高四位。
6、 While( 1 ) 表示无限执行该语句,即死循环。语句后的分号表示空循环体,也就是{ }
五、在某引脚输出高电平的编程方法:(比如P1.3(PIN4)引脚)
#i nclude <AT89x52.h> //该头文档中有单片机内部资源的符号化定义,其中包含P1.3
void main( void ) //void 表示没有输入参数,也没有函数返值,这入单片机运行的复位入口
-C programming language based on:
1 hexadecimal byte 0x5a: binary is 01011010B 0x6E is 01,101,110.
2, if a 16-bit binary number assigned to an 8-bit byte variable, it is automatically truncated to the lower 8 bits, while losing a high 8.
3,++ var first expressed by a variable var var-expressed variables minus one.
4, x | = 0x0f expressed as x = x | 0x0f
5, TMOD = (TMOD & 0xf0) | 0x05 said to the variable assignment TMOD low four 0x5, without changing the TMOD high four.
6, While (1) that the statement is infinite, that is an infinite loop. Statement after the semicolon represents the empty loop, that is, { }
Fifth, in a pin-high programming: (eg, P1.3 (PIN4) pin)
# I nclude <AT89x52.h>// The first document in the symbol of single-chip definition of internal resources, which includes P1.3
void main (void)// void that no input parameters, and no function return value, this entry into the microcontroller reset operation
(系统自动生成,下载前可以参看下载内容)
下载文件列表
单片机C语言基础.docx