排序:上传时间 相关度 下载量 查看数

unsigned 134

按分类查找:

  • Install unsigned symbian apps

    Install unsigned symbian apps

    /dl/494606.html

    标签: unsigned Install symbian apps

    上传时间: 2017-09-28

    上传用户:waitingfy

  • Ascii码的88点阵数据.rar

    Ascii码的8*8点阵数据,竖着排的。 code unsigned char asc5x8dot[96][5]={//ASC码0x20~0x7f

    /dl/7689.html

    标签: Ascii 点阵 数据

    上传时间: 2013-04-24

    上传用户:HGH77P99

  • 3des加密算法及调用示例.rar

    调用方法(加密》解密》加密): unsigned char key1[] = "12345678"; unsigned char key2[] = "abcdefgh"; unsigned char key3[] = "~!@#$%^&"; //如果只需要两组密钥,则本组密钥可以和密钥1一样。 unsigned char en_data[] = "龙的子孙"; unsigned char en_out_put[8]; //3DES 加密 des(en_data, key1, en_out_p ...

    /dl/9677.html

    标签: 3des 加密算法

    上传时间: 2013-07-10

    上传用户:Poppy

  • TLC2543 中文资料

    TLC2543是TI公司的12位串行模数转换器,使用开关电容逐次逼近技术完成A/D转换过程。由于是串行输入结构,能够节省51系列单片机I/O资源;且价格适中,分辨率较高,因此在仪器仪表中有较为广泛的应用。 TLC2543的特点 (1)12位分辩率A/D转换器; (2)在工作温度范围内10μs转换时间; (3)11个模拟输入通道; ...

    /dl/27394.html

    标签: 2543 TLC

    上传时间: 2013-11-19

    上传用户:shen1230

  • MEGA16制作的电子时钟(附仿真图+源代码)

    #include <iom16v.h> #include <macros.h> #define uchar unsigned char #define uint unsigned int uchar num,miao,fen,shi,miaoge,miaoshi,fenge,fenshi,shig

    /dl/28543.html

    标签: MEGA 16 电子时钟 仿真图

    上传时间: 2013-10-14

    上传用户:sc965382896

  • AVR单片机数码管秒表显示

    #include<iom16v.h> #include<macros.h> #define uint unsigned int #define uchar unsigned char uint a,b,c,d=0; void delay(c) { for for(a=0;a<c;a++) for(b=0;b<12;b++); }; uchar tab[]={ 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,

    /dl/28551.html

    标签: AVR 单片机 数码管

    上传时间: 2013-10-21

    上传用户:13788529953

  • c51流水灯仿真与程序

    对应程序: #include<reg52.h> #define uint unsigned int #define uchar unsigned char uchar code tab[]={ 0x81, 0x42, 0x24, 0x18, }; void delay(uint z) { uint i,j; for(i=z;i>0;i--) for(j=120;j>0;j--); } void init() { P0=0x00; }

    /dl/29026.html

    标签: c51 流水灯 仿真 程序

    上传时间: 2014-01-17

    上传用户:ruan2570406

  • 51单片机实现的RS485通讯程序

      #ifndef __485_C__   #define __485_C__   #include   #include   #define unsigned char uchar   #define unsigned int uint   /* 通信命令 */   #define __ACTIVE_ 0x01 // 主机询问从机是否存在   #define __GETDATA_ 0x02 // 主机发送读设备请求   #define __OK_ 0x03 // 从机应答   #define ...

    /dl/29134.html

    标签: 485 RS 51单片机 通讯程序

    上传时间: 2014-12-26

    上传用户:604759954

  • ds18b20程序

      /通过DS18B20测试当前环境温度, 并通过数码管显示当前温度值, 目前显示范围: 0.0~ +99.9度   #include   #include   #define uchar unsigned char   #define uint unsigned int   #define DATAPORT P0 //定义P0口为Led数据口   //#define SETTEMP P1 //定义P1口为设定温度   #define SELECT P2 //定义P2 ...

    /dl/29456.html

    标签: 18b b20 ds 18

    上传时间: 2013-11-04

    上传用户:liulinshan2010

  • C51中的关键字及用途说明

    C51 中的关键字关键字 用途 说明auto 存储种类说明 用以说明局部变量,缺省值为此break 程序语句 退出最内层循环case 程序语句 Switch 语句中的选择项char 数据类型说明 单字节整型数或字符型数据const 存储类型说明 在程序执行过程中不可更改的常量值continue 程序语句 转向下一次循环default 程序语句 Switch 语句中的失 ...

    /dl/30748.html

    标签: C51

    上传时间: 2013-10-08

    上传用户:waves_0801