点阵式液晶显示屏的显示程序设计单片机原理及应用课程设计_第1页
点阵式液晶显示屏的显示程序设计单片机原理及应用课程设计_第2页
点阵式液晶显示屏的显示程序设计单片机原理及应用课程设计_第3页
点阵式液晶显示屏的显示程序设计单片机原理及应用课程设计_第4页
点阵式液晶显示屏的显示程序设计单片机原理及应用课程设计_第5页
已阅读5页,还剩22页未读 继续免费阅读

下载本文档

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

文档简介

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

2、、班级、学号” 2)图片方式:显示相应图片(有左、右移,上下卷等多种动态方式 )3) 模拟量采样值显示(温度、压力、电位)4) 其它功能不限,可自由发挥(时钟、秒表、计算器、菜单等),拓展要求2、设计思路:将程序分成四个模块:1.主函数模块main.c2.模数转换模块adc.c 3.液晶显示模块ks0108.c4.测试模块test7279.c其中,在main.c中定义一个功能选择菜单图片,包含课设的简介,图片的变换,模拟量的采集以及计算器的实现,该菜单功能的切换由按键功能来实现。在ks0108.c中定义了两张图片分别来简单介绍一下该课程设计,包含“江苏大学计算机学院、2013年单片机课程设计”

3、和“秦佳、计算机1001、3100602007”;还定义了字符方式下的“液晶点阵显示屏程序设计”;定义了在adc中要用到的0-9的数字以及计算器中要用到的各种运算符。在其中还定义了上移、下移、左移和右移函数以及计算器实现的函数。在adc.c中定义了字符形式的“温度压力电位”以及将模拟量转换成数字量的showadc函数。各函数说明3、 程序流程图:a、 系统主流程图b、 主函数流程图初始化各部件c、 显示模块流程图d、 模数转换模块流程图开中断开始显示菜单主函数模块判断键入值并调用相应函数b液晶显示模块模数转换模块a开始判断ks0108是否空闲读取no和模拟量向lcd发送控制命令no=3no=2

4、no=1定义各类显示函数返回压力返回电位返回温度定义初始化lcd函数结束d定义各类图像变换函数以及字符显示函数cd4、 主要的源程序及注释1、main.c#include c8051f020.h #include void delay1us(unsigned char us)while (us) _nop_(); _nop_(); _nop_(); _nop_(); _nop_(); -us;void sysclk_init (void) int i; / delay counter oscxcn = 0x67; / start external oscillator with / 18.43

5、2mhz 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 sysclk / source and enable missing clock / detector/oscicn = 0x07; /interal 16mhz#define prt0cf p0mdout#define prt1cf p1mdout#def

6、ine prt2cf p2mdoutvoid 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;/p1.2-p1.5=0void spi0_init (void) spi0cfg = 0x07;

7、 / data sampled on 1st sck rising edge / 8-bit data words spi0cfg|=0xc0;/ckpol =1; spi0cn = 0x03; / master mode; spi enabled; flags / cleared 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) inte

8、rrupt 1 /1msth0 = (-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 show(void);void show1(vo

9、id);void showadc();void caculater();void dispbmp(char *buf);void initlcd(void);void waitkeyoff(void);char code screen=/功能选择0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0xc0,0xc0,0xc0,0xc0,0x40,0x00,0x

10、00,0x00,0x00,0x00,0x80,0xc0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

11、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x7f,0x7f,0x40,0x00,0x00,0x30,0x70,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0xff,0x

12、7f,0x7f,0x7f,0xfb,0xff,0xfe,0x00,0x00,0x10,0x18,0xdc,0xee,0x7f,0x1b,0xfd,0xff,0x06,0x0c,0x0c,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

13、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x10,0xf0,0xf0,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

14、00,0x00,0x00,0x00,0x00,0x00,0xf0,0xf0,0xf0,0xf0,0xf0,0x70,0xf1,0xf1,0xf0,0x00,0x00,0x00,0x00,0xf0,0xf0,0xe0,0x79,0x79,0x58,0x40,0x00,0x00,0x00,0x00,0xa0,0xa0,0xe0,0xf8,0xf8,0xf0,0xd0,0xd0,0x90,0x00,0x00,0x80,0xc0,0xf8,0xf0,0xc0,0xf0,0xf0,0xf0,0xa0,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

15、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0e,0x0f,0x0b,0x0c,0x0c,0x

16、00,0x06,0x0e,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x1f,0x0f,0x0f,0x0f,0x0f,0x09,0x3f,0x3f,0x1f,0x00,0x00,0x10,0x18,0x0f,0x07,0x03,0x01,0x3f,0x3f,0x00,0x00,0x00,0x00,0x10,0x11,0x13,0x1e,0x0f,0x0f,0x1f,0x11,0x10,0x10,0x10,0x04,0x04,0x16,0x1f,0x1f,0x17,0x1f,0x0f,0x1f,0x13,0x12,0x12,0x

17、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

18、00,0x00,0x04,0x26,0x32,0x3e,0xfe,0xe0,0x00,0xc0,0xc0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0xe8,0xff,0xff,0xac,0xbe,0xfe,0xff,0xff,0x7b,0x4a,0x40,0x80,0x90,0xd8,0xff,0xfe,0xf8,0xf4,0x6c,0xec,0xfc,0xbc,0x00,0x00,0x10,0x10,0x32,0xfe,0xfe,0xfe,0xfe,0xfe,0x1a,0x08,0x08,0x00,0x00,0x20,0xac,0x

19、ee,0xfe,0xff,0xff,0xb7,0x92,0x00,0x00,0x00,0x90,0xf1,0xff,0xfe,0xfa,0xf6,0xfe,0xff,0x6b,0x4a,0x40,0x40,0x60,0xf8,0xfe,0x06,0xfa,0xfc,0xfe,0xf6,0xf4,0x04,0x00,0x00,0x00,0x42,0xce,0xfe,0xfe,0xfe,0xfe,0xfe,0x66,0x20,0x00,0x00,0x20,0xa0,0xe4,0x64,0xf4,0xf6,0xd2,0xd2,0xd0,0x90,0x10,0x00,0x00,0x00,0x00,0x

20、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x81,0xc1,0xc1,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0xe3,0xe2,0x03,0x83,0x81,0x83,0xc3,0xc2,0x02,0x00,0x00,0xc3,0xc3,0xc3,0xe1,0xe3,0xe3,0x21,0x00,0x01,0x01,0x00,0x80,0x82,0x82,0x82,0x83,0x03,0xe3,0x

21、e3,0x03,0x02,0x00,0x00,0x03,0x83,0xc1,0xc0,0xe7,0xe7,0xc0,0x81,0x81,0x01,0x01,0x01,0x01,0x07,0x07,0x03,0x00,0x00,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x06,0x07,0x03,0x03,0x03,0x03,0x02,0x02,0x00,0x02,0x02,0x03,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x01,0x02,0x07,0x07,0x03,0x

22、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0e,0x0b,0x3f,0x3f,0x08,0x08,0x18,0x38,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x5a,0x7f,0x7f,0x1d,0x3e,0x3f,0x37,0x3c,0x1c,0x04,0x40,0x70,0x3f,0xcf,0xff,0x7f,0x7f,0x3f,0x7d,0x4c,0x44,0x40,0x

23、08,0x08,0x4c,0x4f,0x67,0x36,0x1e,0x6f,0x79,0x7f,0x0f,0x00,0x00,0xc3,0xff,0xfd,0xfd,0xfd,0x7f,0x7f,0x4e,0x66,0x72,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

24、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

25、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

26、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,;void choose() char i; initlcd();dispbmp(screen); for(;) do i=getkeyvalue(); while(i=-1); waitkeyoff(); if(i=0x01) show(); else if(i=0x02) show1(); if(i=0x03

27、) showadc(); else if(i=0x04) caculater(); break; void testlcd(void);void init_adc(void); void main (void) wdtcn = 0xde;wdtcn = 0xad; /关看门狗sysclk_init (); /初始化时钟timer0_init();/初始化定时器port_init (); /初始化io口spi0_init (); /初始化spi0 init_adc(); /初始化adc cpt1cn|=0x80;/使能比较器1ref0cn = 0x03; /使能片内参考电压dac0cn |= 0

28、x80;/使能dac0dac0h=0;dac0l=0;ea=1;/开中断 for(;) choose();2、adc.c#include c8051f020.h#include #define mux_temp0x08#define mux_volt0x01#define mux_press0x02unsigned int idata temp, press, volt;unsigned char idata mux_select;sfr16 adc0 = 0xbe; / adc0 data/*- 文字: 温度压力电位 -*/char code wen=0x10,0x21,0x86,0x70,

29、0x00,0x7e,0x4a,0x4a,0x4a,0x4a,0x4a,0x7e,0x00,0x00,0x00,0x00,0x02,0xfe,0x01,0x40,0x7f,0x41,0x41,0x7f,0x41,0x41,0x7f,0x41,0x41,0x7f,0x40,0x00,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,

30、0x00,0x00,0xf8,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0xf8,0x00,0x00,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x04,0x3f,0x44,0x44,0x44,0x44,0x4f,0x40,0x70,0x00,0x00,0xc0,0x30,0xec,0x03,0x2a,0xc8,0x09,0x0a,0x0e,0x08,0xe8,0x48,0x08,0x00,0x00,0x01,0x00,0x00,0x7f,0x20,0x20,0x20,0x27,0x20,0x30,0x2e,0x21,

31、0x20,0x20,0x20,0x00,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,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xf0,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x18,0x06,0x01,

32、0x00,0x00,0x40,0x80,0x40,0x3f,0x00,0x00,;void init_adc(void)adc0cn = 0x81; / adc0 enabled; normal tracking / mode; adc0 conversions are initiated / on write to ad0busy; adc0 data is / left-justifiedref0cn = 0x07; / enable temp sensor, on-chip vref, / and vref output buffermux_select = mux_temp; / cp

33、u on-chip temp sensoramx0sl = mux_temp; adc0cf = (sysclk/2500000) 3; / adc conversion clock = 2.5mhz/adc0cf |= 0x01; / pga gain = 2eie2 &= 0x02; / disable adc0 eoc interrupteie1 &= 0x04; / disable adc0 window compare interruptvoid read_analog_inputs(void)long temp_long; ad0int = 0; / clear conversio

34、n complete indicator ad0busy = 1; / initiate conversion while (ad0int = 0); / wait for conversion completeswitch (mux_select)case mux_temp: temp_long = adc0 - 42380/2; temp_long = (temp_long * 200l) / 156;temp=temp_long;amx0sl = mux_volt;/ select ain1 for next readmux_select = mux_volt;break; case m

35、ux_volt:temp_long = adc0;volt = 24*temp_long/655;amx0sl = mux_press;/ select on-chip temp sensormux_select = mux_press;break;case mux_press:temp_long = adc0;temp_long = 24*temp_long/655;press = temp_long; amx0sl = mux_temp; mux_select = mux_temp;break;default:amx0sl = mux_temp;mux_select = mux_temp;

36、break; unsigned int getadcvalue(char no)read_analog_inputs();read_analog_inputs();read_analog_inputs();switch (no)case 1:return temp; /温度case 2:return volt; /电位case 3:if (press10) press=0; /压力return press;void shownum(char x,char y,char num); char getkeyvalue(void);void lcd_writehz(char x,char y,cha

37、r *dot);void initlcd(void);void delay1ms(unsigned char t);void waitkeyoff(void);void showadc()unsigned int w; char i,a,flag; char buf4;flag=0; for(;) do if(flag) w = getadcvalue(flag); delay1ms(250); buf0=(w%10000)/1000; buf1=(w%1000)/100; buf2=(w%100)/10; buf3=(w%10); for(a=0;a4;a+) shownum(48+16*a

38、,2,bufa); i=getkeyvalue(); while(i=-1); waitkeyoff(); initlcd(); switch(i) case 4: lcd_writehz(10,2,wen);lcd_writehz(28,2,wen+32);flag=1;break; case 5: lcd_writehz(10,2,wen+32*2);lcd_writehz(28,2,wen+32*3);flag=2;break; case 6: lcd_writehz(10,2,wen+32*4);lcd_writehz(28,2,wen+32*5);flag=3;break; defa

39、ult:return; 3、ks0108.c#include c8051f020.h#include #define lcd_data p2#define lcd_rs p30#define lcd_rw p31#define lcd_e p32#define lcd_cs1 p33#define lcd_cs2 p34#define lcd_rst p35void delay1ms(unsigned char);/*- 宽度x高度=128x64 -*/char code screen1=/江苏大学计算机学院、2013年单片机课程设计0x00,0x00,0x00,0x00,0x00,0x00,

40、0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,

41、0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,

42、0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0xa4,0x70,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x00,0x00,0x04,0x24,0xa4,0x2e,0x24,0xf4,0x24,0x2e,0xe4,0x84,0x04,0x00,0x10,0x10,0x10,0x10,0x90,0x7e,0x90,0x10,0x10,0x18,0x10,0x00,0x38,0x08,0x2a,0x2c,0x2a,0xac,0x68,0x28,0x0e,0x28,0x18,0x00,0x20,0xe2,

43、0x04,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x00,0x10,0x0c,0xf6,0x5c,0x54,0x58,0x54,0x56,0xfc,0x04,0x04,0x00,0x08,0xc8,0xfe,0x48,0x88,0xfc,0x04,0x04,0xfe,0x04,0x00,0x00,0x38,0x08,0x2a,0x2c,0x2a,0xac,0x68,0x28,0x0e,0x28,0x18,0x00,0xfe,0x02,0x1a,0xe6,0x4c,0x54,0xd4,0x56,0xd4,0x54,0x4c,0x00,0x00,0x00,

44、0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x0f,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x00,0x00,0x09,0x08,0x04,0x03,0x08,0x08,0x0c,0x03,0x00,0x03,0x00,0x08,0x08,0x04,0x02,0x01,0x00,0x01,0x02,0x04,0x08,0x08,0x00,0x01,0x01,0x01,0x09,0x09,0x0f,

45、0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x0f,0x04,0x02,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x04,0x04,0x0d,0x07,0x05,0x05,0x05,0x0f,0x05,0x04,0x04,0x00,0x03,0x00,0x0f,0x08,0x04,0x03,0x00,0x00,0x0f,0x08,0x0e,0x00,0x01,0x01,0x01,0x09,0x09,0x0f,0x01,0x01,0x01,0x01,0x01,0x00,0x0f,0x01,0x01,0x09,0x08,0x04,

46、0x03,0x00,0x0f,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,

47、0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,

48、0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x08,0x08,0x88,0x70,0x00,0x00,0xf0,0x08,0x08,0x08,0xf0,

49、0x00,0x00,0x00,0x10,0xf8,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0xb0,0x00,0x20,0x10,0xce,0x48,0x48,0x48,0xf8,0x48,0x48,0x48,0x4c,0x08,0x00,0x00,0x00,0x00,0xf8,0x2a,0x2c,0xf8,0x28,0x2c,0x2a,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0xa0,0xa0,0xa0,0xbe,0xa0,0x20,0x20,0x20,0x00,0x00,0x10,0xd0,0xfe,

50、0x50,0x90,0x00,0xfc,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0a,0x09,0x08,0x08,0x00,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x00,0x40,0x88,0x0f,0xc8,0x40,0x40,0xc0,0x44,0x48,0xc8,0x08,0x07,0x00,0x82,0x82,0x83,0x42,0x42,0x02,0xdf,0x42,0x42,0x42,0xc2,0x02,0x00,0x00,0x04,0x44,0x85,0x05,0x05,0x1f,0xc5,0x45,0x45,0xc5,0x04,0x04,0x00,0x00,0x00,0x50,0x8

温馨提示

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

评论

0/150

提交评论