單片機基礎程序練習題
1、在某程序中需要定義如下變量:
(1)定義數(shù)碼管的顯示0~9的共陰極顯示代碼(0x3f,0x06,0x5b,0x4f,0x66, 0x6d,0x7d,0x07, 0x7f, 0x6f)數(shù)組dis_code,將其定義在CODE區(qū)。
(2)定義定時器/計數(shù)器0的賦計數(shù)值的高、低字節(jié)變量TL0_L和TH0_H,將其定義在DATA去區(qū)的0x30、0x31處。
(3)定義長度為20的無符號字符型數(shù)組data_buf于IDATA區(qū)中。
(4)定義長度為100的無符號字符型數(shù)組data_array于XDATA區(qū)中。
(5)先定義一個無符號字符型變量status于BDATA區(qū)中,再定義8個與status的8個位對應的位變量flag_lamp1、flag_lamp2、flag_machine1、flag_machine2、flag_port1、flag_port2、flag_calcu1和calcu2(從低位到高位)。
答:
(1)unsigned char code dis_code[10]={0x3f,0x06,0x5b,0x4f, 0x66,0x6d,0x7d,0x07,0x7f,0x6f};
(2)unsigned char data TL0_L _at_ 0x30, TH0_H _at_ 0x31;
(3)unsigned char idata data_buf[20];
(4)unsigned char xdata data_array[100];
(5)unsigned char bdata status;
sbit flag_lamp1=status^0;
sbit flag_lamp2=status^1;
sbit flag_machine1=status^2;
sbit flag_machine2=status^3;
sbit flag_port1=status^4;
sbit flag_port2=status^5;
sbit flag_calcu1=status^6;
sbit flag_calcu2=status^7;
2、在89C52單片機中增加了定時器/計數(shù)器2(T2),修改頭文件“REG51.H”,添加如下內(nèi)容:
(1)特殊功能寄存器T2CON、T2MOD、RCAP2L、RCAP2H、TL2、TH2,地址分別為0xc8~ 0xcd。
(2)對T2CON的8個位分別定義位變量CP_RL2、C_T2、TR2、EXEN2、TCLK、RCLK、EXF2、和TF2(從低位到高位)。
(3)定義位變量T2、T2EX對應于P1口的第0位和第1位;定義位變量ET2對應于EI的第5位;定義位變量PT2對應于IP的第5位;
(4)對P1口的8個位分別定義位變量P0_0、P0_1、P0_2、P0_3、P0_4、P0_5、P0_6和P0_7(從低位到高位)。
評論