单片机课程设计_第1页
单片机课程设计_第2页
单片机课程设计_第3页
单片机课程设计_第4页
单片机课程设计_第5页
已阅读5页,还剩27页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、j i a n g s u u n i v e r s i t y单片机原理及应用课程设计学院名称: 计算机学院 专业班级: 通信1002 学生姓名: 高 昂 学生学号: 3100601036 指导教师姓名: 赵念强 完成时间:2013年 1月6日2013年1月11日点阵式液晶显示屏的显示程序设计一、设计目的1熟练掌握c51系统仿真开发系统的应用。2加强单片机的综合运用能力、提高单片机的软件编程和调试能力,为以后的学习和开发工作打下良好基础。3掌握的液晶的工作原理以及应用设计。4掌握小系统开发设计的流程以及设计思路。二、设计方案 实验要求:1)从下到上滚动显示:“江苏大学计算机学院”然后交替显

2、示:“2012年单片机课程设计”“液晶点阵显示屏程序设计”“作者姓名、班级、学号” 2)能进行正常的模拟量采样值显示(温度、压力、电位) 。 3) 改变字库的内容,显示其它汉字。 4) 改变页地址或列地址,使显示的内容改变位置。 5)其它功能(如左、右移,上下卷、显示图片等)。设计思路:将程序分成三个模块: 1主函数模块main.c2.模数转换模块adc.c3.液晶显示模块ks0108.c 4.测试模块test7279.c其中主函数模块中做一些初始化和函数调用工作,模数转换模块中编写取温度,压力,电位值并将其转化为数字量的函数,液晶显示模块实现图片,文字,字母的显示,测试模块是关于按键的读和写

3、。三、程序流程图:1系统主流程图如下开始主函数模块液晶显示模块模数转换模块2主函数流程图判断键入值并调用相应函数显示开头动画开中断初始化各部件各函数说明3 显示模块流程图判断ks0108是否空闲向lcd发送控制命令定义各类显示函数定义初始化lcd函数定义各类图像变换函数4 模数转换模块流程图开始读取no和模拟量返回温度返回点位结束返回压力no=2no=3no=1四、主要的源程序及注释主函数模块:#include c8051f020.h #include void delay1us(unsigned char us) while (us) _nop_(); _nop_(); _nop_(); _

4、nop_(); _nop_(); -us; void sysclk_init (void) int i; / delay counter oscxcn = 0x67; / start external oscillator with / 18.432mhz crystal for (i=0; i 256; i+) ; / wait for osc. to start up while (!(oscxcn & 0x80) ; / wait for crystal osc. to settle oscicn = 0x88; / select external oscillator as syscl

5、k #define prt0cf p0mdout #define prt1cf p1mdout #define prt2cf p2mdout void port_init (void) xbr0 = 0x07; / enable smbus, spi0, and uart0 xbr1 = 0x00; xbr2 = 0x44; / enable crossbar and weak pull-ups emi0cf = 0x27; emi0tc = 0x21; p74out = 0xff; p0mdout = 0x15; p1mdout |= 0x3c; /p1.2-p1.5 p1 &= 0xc3;

6、 /p1.2-p1.5=0 void spi0_init (void) spi0cfg = 0x07; / data sampled on 1st sck rising edge spi0cfg|=0xc0; spi0cn = 0x03; / master mode; spi enabled; spi0ckr = sysclk/2/8000000-1; / spi clock 8; / set timer0 to overflow in 1ms tl0 = -sysclk/1000; tr0 = 1; / start timer0 ie|= 0x2; void timer0_isr (void

7、) interrupt 1 /1ms th0 = (-sysclk/1000) 8; tl0 = -sysclk/1000; if (count1ms) count1ms-; void delay1ms(unsigned char t) count1ms=t; while (count1ms); void delay1s(unsigned char t) while (t) delay1ms(200); delay1ms(200); delay1ms(200); delay1ms(200); delay1ms(200); t-; char getkeyvalue(void); void ini

8、t_adc(void); unsigned int getadcvalue(char no); void testlcd(void); void displcd(char *dispbuf,char num); void initlcd(void); /lcd void showwendu(void); void test7279(bit loopflag) ;void main (void) unsigned int w; char no,i,buf5; no=1; wdtcn = 0xde; wdtcn = 0xad; /关看门狗 sysclk_init (); /初始化时钟 timer0

9、_init(); /初始化定时器 port_init (); /初始化io spi0_init (); /初始化spi0 init_adc(); cpt1cn|=0x80; /使能比较器1 ref0cn = 0x07; /使能片内参考电压 dac0cn |= 0x80; /使能dac0 dac0h=0; dac0l=0; ea=1; /开中断 loop: test7279(0);testlcd(); initlcd(); no=0; for (;) i=getkeyvalue(); if (i=0)&(i=4) no=i; switch(no) case 0: showxuanze();bre

10、ak; case 1: showwendu();break; case 2: showdianya();break; case 3: showyali();break; case 4:goto loop;break; default: break; w = getadcvalue(no); delay1ms(30); switch(no) case 1: buf0=(w%10000)/1000; buf1=(w%1000)/100; buf2= ; buf3=(w%100)/10; buf4=(w%10); displcd(buf,1); showdu(); break; case 2: bu

11、f0=(w%10000)/1000; buf1=(w%1000)/100; buf2= ; buf3=(w%100)/10; buf4=(w%10); displcd(buf,2); showfu(); break; case 3: buf0=(w%10000)/1000; buf1=(w%1000)/100; buf2= ; buf3=(w%100)/10; buf4=(w%10); displcd(buf,3); showniu(); break; default: break; ks0108模块主要函数部分:#include c8051f020.h #include #define lc

12、d_data p2 #define lcd_rs p30 #define lcd_rw p31 #define lcd_e p32 #define lcd_cs1 p34 #define lcd_cs2 p33 #define lcd_rst p35 void delay1ms(unsigned char); #define selectcs 0char code zero=0x00,0xe0,0x10,0x08,0x08,0x10,0xe0,0x00,0x00,0x0f,0x10,0x20,0x20,0x10,0x0f,0x00; /0char code one=0x00,0x10,0x10

13、,0xf8,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x3f,0x20,0x20,0x00,0x00; /1char code two=0x00,0x70,0x08,0x08,0x08,0x88,0x70,0x00,0x00,0x30,0x28,0x24,0x22,0x21,0x30,0x00; /2char code three=0x00,0x30,0x08,0x88,0x88,0x48,0x30,0x00,0x00,0x18,0x20,0x20,0x20,0x11,0x0e,0x00; /3char code four=0x00,0x00,0xc0,0x20,

14、0x10,0xf8,0x00,0x00,0x00,0x07,0x04,0x24,0x24,0x3f,0x24,0x00; /4char code five= 0x00,0xf8,0x08,0x88,0x88,0x08,0x08,0x00,0x00,0x19,0x21,0x20,0x20,0x11,0x0e,0x00; /5char code six=0x00,0xe0,0x10,0x88,0x88,0x18,0x00,0x00,0x00,0x0f,0x11,0x20,0x20,0x11,0x0e,0x00; /6char code seven=0x00,0x38,0x08,0x08,0xc8,

15、0x38,0x08,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00; /7char code eight=0x00,0x70,0x88,0x08,0x08,0x88,0x70,0x00,0x00,0x1c,0x22,0x21,0x21,0x22,0x1c,0x00; /8char code nine=0x00,0xe0,0x10,0x08,0x08,0x10,0xe0,0x00,0x00,0x00,0x31,0x22,0x22,0x11,0x0f,0x00; /9char code mao=0x00,0x00,0x00,0xc0,0xc0,0x00,0

16、x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00; /:char code dot=0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00,0x00,0x00; /.char code wen=0x10,0x21,0x86,0x70,0x00,0x7e,0x4a,0x4a,0x4a,0x4a,0x4a,0x7e,0x00,0x00,0x00,0x00,0x02,0xfe,0x01,0x40,0x7f,0x41,0x41,0x7f,0x41,0x41,0x7f,0x

17、41,0x41,0x7f,0x40,0x00; /温char code du=0x00,0x00,0xfc,0x04,0x24,0x24,0xfc,0xa5,0xa6,0xa4,0xfc,0x24,0x24,0x24,0x04,0x00, 0x80,0x60,0x1f,0x80,0x80,0x42,0x46,0x2a,0x12,0x12,0x2a,0x26,0x42,0xc0,0x40,0x00; /度char code dian=0x00,0x00,0xf8,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0xf8,0x00,0x00,0x00, 0

18、x00,0x00,0x0f,0x04,0x04,0x04,0x04,0x3f,0x44,0x44,0x44,0x44,0x4f,0x40,0x70,0x00; /电char code ya=0x00,0x00,0xfe,0x02,0x42,0x42,0x42,0x42,0xfa,0x42,0x42,0x42,0x62,0x42,0x02,0x00, 0x20,0x18,0x27,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x21,0x2e,0x24,0x20,0x20,0x00; /压char code li=0x00,0x10,0x10,0x10,0x10,0x1

19、0,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xf0,0x00,0x00, 0x00,0x00,0x80,0x40,0x20,0x18,0x06,0x01,0x00,0x00,0x40,0x80,0x40,0x3f,0x00,0x00; /力char code c=0xc7,0x35,0x0f,0x08,0x08,0x08,0x38,0x00,0x07,0x18,0x20,0x20,0x20,0x10,0x08,0x00; /char code n=0x08,0xf8,0x30,0xc0,0x00,0x08,0xf8,0x08,0x20,0x3f,0x20,0x0

20、0,0x07,0x18,0x3f,0x00; /牛顿char code m=0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x20,0x3f,0x20,0x00,0x3f,0x20,0x00,0x3f; /mchar code v=0x08,0x78,0x88,0x00,0x00,0xc8,0x38,0x08,0x00,0x00,0x07,0x38,0x0e,0x01,0x00,0x00; /vchar code screen=/图片10x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

21、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0xf0,0x98,0x88,0x70,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0xc0,0xc0,0xe0,0xe0,0xe0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf0,0xf0,0xf0,0xf0,0xf0,0xe

22、0,0xe0,0xe0,0xc0,0xc0,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x60,0xe0,0xe0,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

23、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x8e,0x88,0x88,0x91,0xa1,0xa2,0xc2,0x84,0x88,0x90,0xa0,0xa0,0xf0,0xfc,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf

24、f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfc,0xf0,0xa0,0x90,0x88,0x88,0x84,0xc2,0xa3,0x90,0x91,0x89,0x84,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

25、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x25,0xf6,0x2c,0x24,0x2e,0x2d,0x34,0x34,0x34,0x24,0x24,0x24,0x24,0x24,0x6

26、4,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x24,0x24,0x24,0x24,0x24,0x34,0x34,0x34,0x2c,0x2d,0x26,0x24,0x2e,0xf5,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

27、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xf0,0x00,0x00,0x00,0x00,0x0

28、0,0x00,0x00,0x00,0x70,0xfc,0xfc,0xfe,0xfc,0xfc,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0xfc,0xfc,0xfc,0xfc,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

29、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

30、0,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x10,0x20,0x20,0xc0,0x00,0x80,0x80,0x80,0x80,0x80,0x30,0x78,0x7c,0x7c,0x7c,0x7c,0xb0,0x80,0x80,0x80,0x80,0x40,0x40,0xe0,0xa0,0x10,0x10,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

31、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

32、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x10,0x08,0x04,0x82,0x41,0x3c,0xd3,0x20,0x20,0x40,0x40,0x40,0xff,0x81,0x81,0x81,0x7f,0x81,0x80,0x80,0x81,0x86,0x78,0xc0,0x20,0x20,0xc3,0x3d,0x22,0x44,0x88,0x10,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

33、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

34、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0x10,0x10,0x10,0x88,0x04,0x02,0x01,0x00,0x10,0xf8,0x84,0x02,0x01,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x10,0x1f,0x10,0x20,0x20,0x21,0x3f,0x20,0x10,0x10,0x10,0x08,0x08,0x07,0x03,0x00,0x00,0x00,0x00,0x00,0x01,0xc2,0x44,0x48,0x11,0x22,0x0

35、4,0x08,0x30,0x20,0x20,0x20,0x20,0xa0,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

36、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

37、0,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x06,0x02,0x02,0x02,0x02,0x02,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,;char code screen1=/图片2/ 0x00,0x00,0x00,0x0

38、0,0x00,0x00,0x40,0x60,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0xf8,0x00,0x00,0x00,0x00,0x40,0x40,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x80,0x8

39、0,0xe0,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

40、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0xf8,0x40,0x40,0x40,0x40,0x60,0x20,0x3f,0xf0,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x40,0x5f,0x49,0x49,0xc9,0x48,0x40,0x4f,0x40,0x40,0x40,0x00,0x00,0xfc,0x18,0x08,0x3f,0x0c,0x7f,0x04,0x04,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0xf

41、8,0x08,0x08,0x08,0xc8,0x78,0x18,0x18,0x1f,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x82,0x82,0x86,0x8c,0x88,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0xc0,0x40,0x40,0x40,0x40,0xc0,0x00,0x00,0x04,0x04,0x84,0x84,0x84,0x01,0x07,0x01,0xe1,0x31,0x11,0x11,0x11,0x11,0xd1,0x11,0x11,0x11,0x11,0x11,0xf1,0x0

42、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x60,0xff,0x10,0x00,0x00,0x00,0x00,0xc0,0x40,0x7f,0xc0,0x40,0x70,0x08,0x00,0x00,0x00,0x00,0xf8,0x00,0x80,0x80,0x9f,0x84,0x86,0x82,0x80,0x80,0x80,0x00,0x00,0x07,0x44,0x44,0x44,0xfa,0x4a,0x42,0x42,0xe2,0x4

43、2,0x42,0x40,0x40,0x00,0x00,0x00,0x00,0xff,0x00,0x40,0x60,0x71,0x11,0x1f,0x20,0x20,0xff,0x20,0x20,0x20,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xc0,0x7f,0x00,0x00,0x00,0xf0,0x10,0x10,0x00,0x04,0x04,0x04,0xff,0x84,0xc4,0x44,0x44,0x4

44、4,0x7d,0x44,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

45、0,0x00,0x00,0x03,0x16,0x1c,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x06,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

46、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x20,0xe0,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

47、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x0c,0x04,0xc4,0x04,0x04,0x04,0x04,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

48、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x01,0x01,0x01,0x81,0x01,0x01,0xff,0x00,0x04,0x04,0x04,0x7f,0x44,0xc4,0x04,0x00,0x00,0x00,0x00,0x0

49、0,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x82,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0xff,0x41,0x41,0x41,0x40,0xe0,0x3f,0x01,0x10,0x10,0x10,0x10,0x10,0x08,0xf8,0x00,0x00,0x00,0x00,0x3f,0x52,0x42,0x7f,0x42,0x42,0x42,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xfe,0x00,0x00,0x00,0x0

50、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0xff,0x00,0x00,0x03,0x40,0x40,0x40,0xfc,0x0

51、0,0x00,0x0f,0x18,0xf0,0x78,0x4e,0xc0,0x00,0xe0,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0xff,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x10,0x10,0x10,0x3f,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0xff,0x00,0x00,0x00,0x40,0x40,0xf0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00,0x00,0x00,0x00,0x00,0x0

52、0,0x00,0xfc,0x07,0x07,0x04,0x08,0x08,0x08,0x18,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7

53、f,0x10,0x10,0x10,0x18,0x08,0x0f,0x01,0x00,0x00,0x00,0x1c,0x07,0x00,0x00,0x1f,0x1c,0x03,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x7f,0x01,0x00,0x00,0x00,0x00,0x00,0x00

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论