虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

write-<b>Flow</b>

  • Implement the following integer methods: a) Method celsius returns the Celsius equivalent of a Fahr

    Implement the following integer methods: a) Method celsius returns the Celsius equivalent of a Fahrenheit calculation celsius = 5.0 / 9.0 * ( fahrenheit - 32 ) b) Method fahrenheit returns the Fahrenheit equivalent of a Celsius the calculation fahrenheit = 9.0 / 5.0 * celsius + 32 c) Use the methods from parts (a) and (b) to write an application either to enter a Fahrenheit temperature and display the Celsius or to enter a Celsius temperature and display the Fahrenheit equivalent.

    标签: equivalent Implement the following

    上传时间: 2014-01-19

    上传用户:jackgao

  • Thinking in Java, 3rd ed. Revision 4.0 Preface Introduction 1: Introduction to Objects 2

    Thinking in Java, 3rd ed. Revision 4.0 Preface Introduction 1: Introduction to Objects 2: Everything is an Object 3: Controlling Program Flow 4: Initialization & Cleanup 5: Hiding the Implementation 6: Reusing Classes 7: Polymorphism 8: Interfaces & Inner Classes 9: Error Handling with Exceptions 10: Detecting Types 11: Collections of Objects 12: The Java I/O System 13: Concurrency 14: Creating Windows & Applets 15: Discovering Problems 16: Analysis and Design A: Passing & Returning Objects B: Java Programming Guidelines C: Supplements D: Resources Index

    标签: Introduction Thinking Revision Preface

    上传时间: 2014-07-13

    上传用户:netwolf

  • A stability analysis is presented for staggered schemes for the governing equations of compressible

    A stability analysis is presented for staggered schemes for the governing equations of compressible flow. The method is based on Fourier analysis. The approximate nature of pressure-correction solution methods is taken into account.  2001 IMACS. Published by Elsevier Science B.V. All rights reserved

    标签: compressible stability for equations

    上传时间: 2016-12-02

    上传用户:yph853211

  • "Readers can pick up this book and become familiar with C++ in a short time. Stan has taken a very b

    "Readers can pick up this book and become familiar with C++ in a short time. Stan has taken a very broad and complicated topic and reduced it to the essentials that budding C++ programmers need to know to write real programs. His case study is effective and provides a familiar thread throughout the book.

    标签: familiar Readers become short

    上传时间: 2014-01-19

    上传用户:luke5347

  • 12345

    /****************temic*********t5557***********************************/    #include   <at892051.h>     #include   <string.h>    #include   <intrins.h>     #include   <stdio.h>     #define    uchar    unsigned char     #define    uint     unsigned int     #define    ulong    unsigned long     //STC12C2051AD的SFR定义     sfr  WDT_CONTR = 0xe1;//stc2051的看门狗??????     /**********全局常量************/    //写卡的命令     #define    write_command0       0//写密码     #define    write_command1       1//写配置字     #define    write_command2       2//密码写数据     #define    write_command3       3//唤醒     #define    write_command4       4//停止命令     #define    TRUE       1     #define    FALSE      0     #define    OK         0     #define    ERROR      255     //读卡的时间参数us     #define ts_min          250//270*11.0592/12=249//取近似的整数     #define ts_max          304//330*11.0592/12=304     #define t1_min          73//90*11.0592/12=83:-10调整     #define t1_max          156//180*11.0592/12=166     #define t2_min          184//210*11.0592/12=194     #define t2_max          267//300*11.0592/12=276     //***********不采用中断处理:采用查询的方法读卡时关所有中断****************/     sbit p_U2270B_Standby = P3^5;//p_U2270B_Standby PIN=13     sbit p_U2270B_CFE = P3^3;//p_U2270B_CFE     PIN=6     sbit p_U2270B_OutPut = P3^7;//p_U2270B_OutPut  PIN=2     sbit wtd_sck = P1^7;//SPI总线     sbit wtd_si = P1^3;    sbit wtd_so = P1^2;    sbit iic_data = P1^2;//lcd IIC     sbit iic_clk = P1^7;    sbit led_light = P1^6;//测试绿灯     sbit led_light1 = P1^5;//测试红灯     sbit led_light_ok  = P1^1;//读卡成功标志     sbit fengmingqi = P1^5;    /***********全局变量************************************/       uchar data Nkey_a[4] = {0xA0, 0xA1, 0xA2, 0xA3};//初始密码             //uchar idata card_snr[4];   //配置字     uchar data bankdata[28] = {1,2,3,4,5,6,7,1,2,3,4,5,6,7,1,2,3,4,5,6,7,1,2,3,4,5,6,7};     //存储卡上用户数据(1-7)7*4=28     uchar data cominceptbuff[6] = {1,2,3,4,5,6};//串口接收数组ram     uchar command; //第一个命令     uchar command1;//     //uint  temp;     uchar j,i;    uchar myaddr = 8;    //uchar ywqz_count,time_count;             //ywqz jishu:     uchar bdata DATA;    sbit BIT0 = DATA^0;    sbit BIT1 = DATA^1;    sbit BIT2 = DATA^2;    sbit BIT3 = DATA^3;    sbit BIT4 = DATA^4;    sbit BIT5 = DATA^5;    sbit BIT6 = DATA^6;    sbit BIT7 = DATA^7;    uchar bdata DATA1;    sbit BIT10 = DATA1^0;    sbit BIT11 = DATA1^1;    sbit BIT12 = DATA1^2;    sbit BIT13 = DATA1^3;    sbit BIT14 = DATA1^4;    sbit BIT15 = DATA1^5;    sbit BIT16 = DATA1^6;    sbit BIT17 = DATA1^7;    bit i_CurrentLevel;//i_CurrentLevel  BIT 00H(Saves current level of OutPut pin of U2270B)     bit timer1_end;    bit read_ok = 0;    //缓存定时值,因用同一个定时器     union HLint { uint W;    struct   {    uchar H;uchar L;   }   B; };//union HLint idata a     union HLint data a;    //缓存定时值,因用同一个定时器     union HLint0 { uint W;    struct {   uchar H;   uchar L; } B; };//union HLint idata a     union HLint0 data b;    /**********************函数原型*****************/    //读写操作     void f_readcard(void);//全部读出1~7 AOR唤醒     void f_writecard(uchar x);//根据命令写不同的内容和操作     void f_clearpassword(void);//清除密码     void f_changepassword(void);//修改密码     //功能子函数     void write_password(uchar data *data p);//写初始密码或数据     void write_block(uchar x,uchar data *data p);//不能用通用指针     void write_bit(bit x);//写位     /*子函数区*****************************************************/    void delay_2(uint x)    //延时,时间x*10us@12mhz,最小20us@12mhz     {    x--; x--;    while(x)    {      _nop_();      _nop_();      x--;    }    _nop_();//WDT_CONTR=0X3C;不能频繁的复位     _nop_();    }    /////////////////////////////////////////////////////////////////////     void initial(void)    {    SCON = 0x50; //串口方式1,允许接收     //SCON  =0x50;     //01010000B:10位异步收发,波特率可变,SM2=0不用接收到有效停止位才RI=1,     //REN=1允许接收     TMOD = 0x21; //定时器1 定时方式2(8位),定时器0 定时方式1(16位)     TCON = 0x40; //设定时器1 允许开始计时(IT1=1)     TH1 = 0xfD;  //FB 18.432MHz 9600 波特率     TL1 = 0xfD;  //fd 11.0592 9600     IE = 0X90;     //EA=ES=1     TR1 = 1;     //启动定时器     WDT_CONTR = 0x3c;//使能看门狗     p_U2270B_Standby = 0;//单电源     PCON = 0x00;    IP = 0x10;//uart you xian XXXPS PT1 PX1 PT0 PX0     led_light1 = 1;    led_light = 0;    p_U2270B_OutPut = 1;    }    /************************************************/    void f_readcard()//读卡     {    EA = 0;//全关,防止影响跳变的定时器计时     WDT_CONTR = 0X3C;//喂狗     p_U2270B_CFE = 1;//      delay_2(232);  //>2.5ms            /*   //   aor    用唤醒功能来防碰撞   p_U2270B_CFE = 0; delay_2(18);//start gap>150us   write_bit(1);//10=操作码读0页   write_bit(0);       write_password(&bankdata[24]);//密码block7   p_U2270B_CFE =1 ;//    delay_2(516);//编程及确认时间5.6ms   */    WDT_CONTR = 0X3C;//喂狗     led_light = 0;    b.W = 0;    while(!(read_ok == 1))    {             //while(p_U2270B_OutPut);//等一个稳定的低电平?超时判断?              while(!p_U2270B_OutPut);//等待上升沿的到来同步信号检测1       TR0 = 1;      //deng xia jiang       while(p_U2270B_OutPut);//等待下降沿       TR0 = 0;   a.B.H = TH0;   a.B.L = TL0;   TH0 = TL0 = 0;   TR0 = 1;//定时器晚启动10个周期       //同步头       if((324 < a.W) && (a.W < 353)) ;//检测同步信号1                  else     {     TR0 = 0;     TH0 = TL0 = 0;     goto read_error;    }      //等待上升沿        while(!p_U2270B_OutPut);   TR0 = 0;   a.B.H = TH0;   a.B.L = TL0;   TH0 = TL0 = 0;   TR0 = 1;//b.N1<<=8;            if(a.B.L < 195);//0.5p       else     {     TR0 = 0;     TH0 = TL0 = 0;     goto read_error;    }      //读0~7块的数据       for(j = 0;j < 28;j++)      {       //uchar i;                  for(i = 0;i < 16;i++)//8个位        {        //等待下降沿的到来         while(p_U2270B_OutPut);                TR0 = 0;     a.B.H = TH0;     a.B.L = TL0;     TH0 = TL0 = 0;     TR0 = 1;              if(t2_max < a.W/*)&&(a.W < t2_max)*/)//1P          {         b.W >>= 2;//先左移再赋值          b.B.L += 0xc0;                             i++;        }        else if(t1_min < a.B.L/*)&&(a.B.L < t1_max)*/)//0.5p         {         b.W >>= 1;         b.B.L += 0x80;                           }        else      {      TR0 = 0;      TH0 = TL0 = 0;      goto read_error;     }        i++;        while(!p_U2270B_OutPut);//上升                   TR0 = 0;     a.B.H = TH0;     a.B.L = TL0;     TH0 = TL0 = 0;     TR0 = 1;                      if(t2_min < a.W/*)&&(a.W < t2_max)*/)//1P          {         b.W >>= 2;         i++;        }        else if(t1_min < a.B.L/*a.W)&&(a.B.L < t1_max)*/)//0.5P         //else if(!(a.W==0))         {         b.W >>= 1;         //temp+=0x00;          //led_light1=0;led_light=1;delay_2(40000);         }        else      {      TR0 = 0;      TH0 = TL0 = 0;      goto read_error;     }        i++;       }       //取出奇位        DATA = b.B.L;       BIT13 = BIT7;    BIT12 = BIT5;    BIT11 = BIT3;    BIT10 = BIT1;       DATA = b.B.H;       BIT17 = BIT7;    BIT16 = BIT5;    BIT15 = BIT3;    BIT14 = BIT1;       bankdata[j] = DATA1;      }              read_ok = 1;//读卡完成了     read_error:    _nop_();    }       }    /***************************************************/    void f_writecard(uchar x)//写卡     {    p_U2270B_CFE = 1;    delay_2(232);  //>2.5ms            //psw=0 standard write     if (x == write_command0)//写密码:初始化密码     {      uchar i;      uchar data *data p;      p = cominceptbuff;      p_U2270B_CFE = 0;   delay_2(31);//start gap>330us       write_bit(1);//写操作码1:10       write_bit(0);//写操作码0       write_bit(0);//写锁定位0       for(i = 0;i < 35;i++)      {       write_bit(1);//写数据位1       }      p_U2270B_CFE = 1;      led_light1 = 0;   led_light = 1;   delay_2(40000);//测试使用       //write_block(cominceptbuff[4],p);       p_U2270B_CFE = 1;      bankdata[20] = cominceptbuff[0];//密码存入       bankdata[21] = cominceptbuff[1];      bankdata[22] = cominceptbuff[2];      bankdata[23] = cominceptbuff[3];    }    else if (x == write_command1)//配置卡参数:初始化     {      uchar data *data p;      p = cominceptbuff;      write_bit(1);//写操作码1:10       write_bit(0);//写操作码0       write_bit(0);//写锁定位0               write_block(cominceptbuff[4],p);      p_U2270B_CFE=  1;    }    //psw=1  pssword mode     else if(x == write_command2)  //密码写数据    {      uchar data*data p;      p = &bankdata[24];      write_bit(1);//写操作码1:10       write_bit(0);//写操作码0       write_password(p);//发口令       write_bit(0);//写锁定位0       p = cominceptbuff;      write_block(cominceptbuff[4],p);//写数据            }    else if(x == write_command3)//aor    //唤醒 {      //cominceptbuff[1]操作码10 X xxxxxB       uchar data *data p;      p = cominceptbuff;      write_bit(1);//10       write_bit(0);             write_password(p);//密码       p_U2270B_CFE = 1;//此时数据不停的循环传出     }    else //停止操作码     {      write_bit(1);//11       write_bit(1);             p_U2270B_CFE = 1;         }    p_U2270B_CFE = 1;    delay_2(560);//5.6ms     }    /************************************/    void f_clearpassword()//清除密码     {    uchar data *data p;    uchar i,x;          p = &bankdata[24];//原密码     p_U2270B_CFE = 0; delay_2(18);//start gap>150us     //操作码10:10xxxxxxB     write_bit(1);    write_bit(0);              for(x = 0;x < 4;x++)//发原密码     {             DATA = *(p++);      for(i = 0;i < 8;i++)      {       write_bit(BIT0);       DATA >>= 1;      }    }    write_bit(0);//锁定位0:0     p = &cominceptbuff[0];    write_block(0x00,p);//写新配置参数:pwd=0             //密码无效:即清除密码     DATA = 0x00;//停止操作码00000000B     for(i = 0;i < 2;i++)    {    write_bit(BIT7);    DATA <<= 1;    }    p_U2270B_CFE = 1;       delay_2(560);//5.6ms     }    /*********************************/    void f_changepassword()//修改密码            {       uchar data *data p;    uchar i,x,addr;    addr = 0x07;//block7     p = &Nkey_a[0];//原密码     DATA = 0x80;//操作码10:10xxxxxxB     for(i = 0;i < 2;i++)    {      write_bit(BIT7);      DATA <<= 1;    }    for(x = 0;x < 4;x++)//发原密码     {             DATA = *(p++);      for(i = 0;i < 8;i++)      {       write_bit(BIT7);       DATA >>= 1;      }    }    write_bit(0);//锁定位0:0     p = &cominceptbuff[0];    write_block(0x07,p);//写新密码     p_U2270B_CFE = 1;    bankdata[24] = cominceptbuff[0];//密码存入     bankdata[25] = cominceptbuff[1];    bankdata[26] = cominceptbuff[2];    bankdata[27] = cominceptbuff[3];    DATA = 0x00;//停止操作码00000000B     for(i = 0;i < 2;i++)    {      write_bit(BIT7);      DATA <<= 1;    }    p_U2270B_CFE = 1;       delay_2(560);//5.6ms     }    /***************************子函数***********************************/    void write_bit(bit x)//写一位     {    if(x)    {      p_U2270B_CFE = 1;   delay_2(32);//448*11.0592/120=42延时448us       p_U2270B_CFE = 0;   delay_2(28);//280*11.0592/120=26写1     }    else    {      p_U2270B_CFE = 1;   delay_2(92);//192*11.0592/120=18       p_U2270B_CFE = 0;   delay_2(28);//280*11.0592/120=26写0     }    }    /*******************写一个block*******************/    void write_block(uchar addr,uchar data *data p)    {    uchar i,j;        for(i = 0;i < 4;i++)//block0数据     {             DATA = *(p++);      for(j = 0;j < 8;j++)      {       write_bit(BIT0);       DATA >>= 1;      }    }    DATA = addr <<= 5;//0地址     for(i = 0;i < 3;i++)    {      write_bit(BIT7);      DATA <<= 1;    }                   }    /*************************************************/    void write_password(uchar data *data p)    {    uchar i,j;        for(i = 0;i < 4;i++)//     {             DATA = *(p++);      for(j = 0;j < 8;j++)      {       write_bit(BIT0);       DATA >>= 1;      }    }        }   /*************************************************/   void main()    {    initial();    TI = RI = 0;    ES = 1;    EA = 1;  delay_2(28);   //f_readcard();     while(1) {   f_readcard();      //读卡   f_writecard(command1);  //写卡    f_clearpassword();   //清除密码     f_changepassword();    //修改密码 } }

    标签: 12345

    上传时间: 2017-10-20

    上传用户:my_lcs

  • VIP专区-嵌入式/单片机编程源码精选合集系列(57)

    VIP专区-嵌入式/单片机编程源码精选合集系列(57)资源包含以下内容:1. 12864汉字液晶显示驱动程序.2. LCD液晶程序.3. Scan image DSP process Sca n image DSP process Sca n image DSP process Sca n image DSP process.4. PIC16F946 底层驱动.5. PIC16F946 底层驱动.6. cpld简单的教程.7. 针对嵌入式micro window系统.8. PPC下的文本编辑器源代码.9. PDIUSBD12USB固件编程与驱动开发周立功D12Win98驱动源码.10. C/C++嵌入式系统编程.11. 此文档为adi公司arm7tdmi内核的aduc70XX系列各模块的源代码.12. 这是用CH375芯片做的u盘转存的例子.13. 这是一个关于一个无线通讯芯片的无线的link的程序.14. msp430的iic通讯子程序.15. PADS2005中文教程.16. protel的常用器件库 protel的常用器件库 protel的常用器件库.17. cnstl970一款经典一款经典 cnstl970一款经典.18. 1602a经典资料 1602a经典资料.19. 一个计时程序.20. LED程序.21. windriver公司的vxworks系统是专业的嵌入式实时操作系统.22. 提供FAT16文件系统在嵌入式操作系统U_COS中的方案.23. 傅立叶变换程序 傅立叶变换程序.24. 请先删除编译后的debug/release.25. 液晶资料 液晶资料 液晶资料.26. 液晶资料 液晶资料 液晶资料 液晶资料 液晶资料 液晶资料 液晶资料 液晶资料.27. 液晶资料 液晶资料 液晶资料 液晶资料 液晶资料 液晶资料 液晶资料 液晶资料.28. 液晶资料 液晶资料 液晶资料 液晶资料 液晶资料.29. PHILIPS LPC76X D/A 实例程序.30. 为SYT240160CZK液晶显示的驱动.31. 该原码主要介绍如何在DSP上实现视频输入与输出的代码,基于DSP6000系列的..32. LCD显示测试程序.33. 基于双NIOS II 的IP无线收发机 2006年嵌入式电子大赛获奖作品.34. 2006altera大赛-基于软核Nios的宽谱正弦信号发生器设计:摘要:本设计运用了基于 Nios II 嵌入式处理器的 SOPC 技术。系统以 ALTERA公司的 Cyclone 系列 FPGA.35. Zigbee document about system structure.36. Samsung KS0719 graphical LCD (SPI) This driver allows to draw points and to write characters on thi.37. C51 API 例子源码.38. Api_for_usb_products 源码..39. avr mega8 pwm 试验带 Proteus 仿真.40. Alterla官方版ep1c20 FPGA NOISII开发板原理图.

    标签: 机械加工 工艺

    上传时间: 2013-04-15

    上传用户:eeworm

  • VIP专区-嵌入式/单片机编程源码精选合集系列(82)

    VIP专区-嵌入式/单片机编程源码精选合集系列(82)资源包含以下内容:1. PIC 18F8680 CAN bus Demo.2. write erase secure for NXP LPC23XX.3. 红外遥控器制作专业资料打包,包括TSAL6200,HS0038B等相关设计内容,非常丰富..4. 在KEIL环境下,取反p0.26口.5. ARM lpc2294 的CPU中继.6. 分的股份的给对方了广阔的封公开的森林狼队是开发了份大礼服肯定是.7. 128*64点阵LCD显示程序,串口,适用耀宇等LCD模块.如需电路请联系qudaohong@163.com.8. 用c-press控制设备块传输希望对你有所帮助.9. I2C 24c02 芯片读写程序.10. cc2430上的点对点通信的源程序。芯片2430是ZigBee传输标准.11. gps程序设计源码c c.12. 基于GSM无线温度检测系统.13. 关于DS18B20的毕业设计论文.14. gray码计数器 用于减少出错率 代码已经仿真 请放心下载.15. 桶型移位寄存器 用于多种场合 可放心下载.16. keyboard 的verilog 代码 代码绝对经典.17. STMP3410原理图.18. 该文件是SOPC中NiosII软核CF接口源程序代码.19. 常用的几种芯片的液晶驱动程序M12864汉字液晶显示,44780字符显示等.20. DM642_CPLD视频采集处理系统设计.21. mp3解码程序.22. 不错的例程.23. 是一篇关于嵌入式系统内存分配的文章.24. FPGA和CPLD入门级详细的学习资料.25. 用UBOOT实现S3C44B0的BIOSB.26. 恩智 lpc2100 的外 中断1.27. 320*240,T6963控制器的液晶源程序..28. EEPROM存储器I2C总线24CXX芯片操作源程序.29. c语言写的菜单程序,课程表,存储修改源代码..30. c语言写的图形界面程序源代码.VERSION0.0.31. 这个是在NOIS II中使用的.32. (原创)高精度计时器电路原理图。采用AT89S52加DP8573.33. (原创)高精度电子时钟和计时器电路版图。与本人另外上传的原理图配套.34. ARM,DSP,FPGA的区别:详细介绍了ARM.35. 详细介绍了CPLD和FPGA的区别.36. at91rm9200的原理图和pcb图.37. pci-serial是 PCI转串口驱动程序.38. 台湾大学的一个mgcp 协议的实现源码,对研究mgcp协议很有帮助!.39. 51+sl811读写U盘的源程序+原理图.40. fpga cpldXILINXCPLD-JTAG fpga cpldXILINXCPLD-JTAG.

    标签: 弹簧 设计手册

    上传时间: 2013-06-15

    上传用户:eeworm

  • VIP专区-嵌入式/单片机编程源码精选合集系列(107)

    VIP专区-嵌入式/单片机编程源码精选合集系列(107)资源包含以下内容:1. 实现了i2c。介绍了代码的可执行性.2. 介绍了如何实现URAT。介绍了如何用VERILOG代码实现URAT。.3. 此程序为C51编程的OCM12864点阵汉字液晶显示.4. 24C64 EEPROM读写的C语言程序.5. 多功能旅游数字助理 (Multifunctional Tour Digital Assistant).6. 微电子方面的.7. 网络是嵌入式应用的常备功能.8. winrunner使用教程 winrunner是基于MS Windows的功能测试工具.9. 嵌入式FAT16文件系统,code C , Full version,function contains read file,write file,create file,etc.10. verilog语言编写.11. 嵌入式EVC正玄信号产生程序.12. 这是一个数字中的课程设计.13. 几个LPC2378的原理图.14. nxp lpc2368原理图.15. PS2Dev Environment for Win32。用于SONY的Psp游戏机的Sdk开发包.16. ATMEGA16 Processor software guild.17. DS18B20 for 8051 in C51.18. 嵌入式期刊.19. 本文介绍了AVR中TWI(I2C)的工作原理.20. 常用芯片及元件手册,快速查找各种芯片及元件参数.21. 基于Nios_的视频处理系统的设计与实现,研究生论文.22. 六数码管显示.23. 51 下载软件.24. 不错的交通灯控制程序。实现十字路口交通灯功能.25. 在进行嵌入式程序设计时.26. WindowsEmbedded从入门到精通系列课程.27. WindowsEmbedded从入门到精通系列课程.28. ucOS 在单片机上实现.29. 《单片机C语言编程与实例》的代码第4章.30.  介绍了一种处理被测信号为线性、连续、缓慢变化的较为简单的数字滤波方法。.31. 数字滤波器的基本结构 IIR数字滤波器的基本结构 FIR数字滤波器的基本结构 格型结构等等都是最基本的东西.32. 实现dsPIC33FJ256MC710与AVAGO的OPTICAL SENSOR之间的SPI通讯.33. uboot-1.1.1.gz。uboot1.1.1.bin的压缩包.34. SSD5 EX6 源代码.35. 包括ICD演示程序、ICDDEMO教学实验板原理图、使用说明书、MPLAB使用向导等多项与ICD使用相关的内容。.36. ep2c5的核心板原理图.37. μC/OS-II 学习指导 uC/OS-II 源码公开的嵌入式实时多任务操作系统内核.38. 一份关于s3c44b0的实验指导手册,里面包括了详细的代码和说明,好不容易得到的..39. 实验4 看门狗应用实验 S3C2410的 开发环境ADS1.2.40. PWM timer实验基于S3C2410的开发环境是ADS1.2.

    标签: 半导体激光器

    上传时间: 2013-04-15

    上传用户:eeworm

  • VIP专区-嵌入式/单片机编程源码精选合集系列(114)

    VIP专区-嵌入式/单片机编程源码精选合集系列(114)资源包含以下内容:1. FREESCALE 9S08AW60 串口调试程序.2. saa7113视频解码芯片外围电路设计原理图.3. 这是在用的AD7705源程序.4. 红外线遥控原理以及单片机制作自学习遥控器详细设计思路.5. 在微波整体集成电路设计、理论和描述特性的一条新颖的路线的PDF学术论文.6. 对于内部具有D /A转换器的单片机,采用其自备的D /A转换器产生需要的信号是最经 济的方法。C8051F020是Cygnal公司最新的一款功能强大的内部具有D /A转换器的单片机。介绍了 采用查.7. 液晶6963模块 240*64,外接PS2键盘,多级菜单.这是我工作中的一个程序,有兴趣的可以看.8. 这是一个i2c程序,经过多次应用都能成功实现功能,而且简要实用.9. 本电子书是很多嵌入式开发经典文章和技巧使用的PDF格式的书籍.10. 168线SD内存条电路原理图资料,好像是台湾人写的.11. FPGA可促進嵌入式系統設計改善即時應用性能.12. fat32文件系统格式说明 十分详尽.13. fat32和fat16文件系统格式说明.14. 讲解嵌入式开发的入门书!非常不错,值得一看!.15. TMS320C6000CSLAPIReferenceGuideRev.I的pdf.16. s7300 400 step7 plc仿真软件说明.17. with avr mega 8515 in the C-code AVR.18. Altera原装MAX_II开发板原理图,是用protel绘制的.19. zlg7290是一个能够8*8的键盘驱动芯片.20. 主要介绍各种芯片原理、功能、及其使用方法.21. 对芯片MCP2551的中文使用说明.22. 嵌入式T9输入法的源代码.23. BMP头文件的源代码.24. 自己收集整理和调试OK的三个Game源代码.25. S24C10最小系统原理图 包括FLASH SRAM等.26. 一个电平转换芯片的资料74LVC4245,它在以太网中也发挥了很大的作用,对WEB开发人员有借鉴的价值.27. mmc卡的specification标准的英文版的.28. TMS320C2812全套例程.29. 这是用于lpc2106的自带ADC功能的演示,利用KEIL FOR ARM 开发,可以参考学习..30. megal16在codevision下关于1602的驱动程序.31. 分布式多DSP系统的CPCI总线接口设计和驱动开发.32. 电子音量pT2314原程序 需要的朋友请赶快.33. 用protel dxp绘制三分频原理图和pcb电路板等.34. Bootloader(引导装载器)是用于初始化目标板硬件.35. OKI DEMO FLASH WRITE PROGRAM.36. OKI 675050 hardware accelerator sample program.37. verilog的一些源代码.38. i.mx31 3DS平台Nandboot引导程序源码.39. c8051f24是个教学的程序.40. < ALTERA FPGA/CPLD 高级篇>>光盘资料中 体会“面积和速度的平衡与互换” 例程.

    标签: RFID 无线 射频识别技术

    上传时间: 2013-07-17

    上传用户:eeworm

  • VIP专区-嵌入式/单片机编程源码精选合集系列(121)

    VIP专区-嵌入式/单片机编程源码精选合集系列(121)资源包含以下内容:1. U盘对考的例子程序 U盘对考的例子程序.2. The book is organized around 55 specific guidelines, each of which describes a way to write better C.3. CC2430DB电路图.4. tms320c6000 将用户程序写入到flash.5. 是法国NUM数控系统1006的PLC控制软件。.6. 一本关于C8051F原理和应用的书.7. 19264说明与显示程序,对学习19264初学者很有用.8. 一个经典的东东.9. SD卡的SD模式的读写驱动.10. LPC2142 LCD12232的显示动画例程.11. 一段菜单与界面的程序 效果很好 有图片展示.12. 本驱动程序是24064液晶(肇庆金鹏产品 型号Ocmj4×15D)上使用 控制器为8822 MCU为89S52 效果很好。可以用于8822控制器上的液晶.13. blackfin533开发FFTC语言实现.14. GUI设计.15. 梁祝乐曲演奏电路设计.16. USB网卡dm9601芯片的驱动程序.17. 实现51与计算机的通信测试 通过1602LCD显示通信的数据.18. 本科教育的实体实例.19. S3C44B0学习板原理图.20. 液晶显示模块概述 一、液晶显示模块概述 RT19264D汉字图形点阵液晶显示模块.21. 嵌入式硬件设计实用手册.22. 射频识别利用nrf 2401芯片实现收发功能.23. 基于DE2实验板.24. bc7281b芯片在avr单片机上的应用.25. I2C eprom 读写程序设计.26. ds1302的中文资料.27. FPGA的英文资料,介绍的比较详细EPF10系列的.28. 基于数码管的四位动态同步显示.29. ATMEL169PV,开发详细资料,其中包含源程序代码.30. 高频波形.31. TL431应用.TL431,A、B集成电路是三端可编程并联稳压二极管。.32. uart pci 等verilog hdl 代码.33. HD300 Mp3播放器电路图 CPU部分.34. 通过VERILOG HDL语言使用CPLD连接PS2键盘..35. dspic61010A串口通讯程序.36. PIC单片机的C语言编程.37. protel 设计电路的相关资料,暂时只有一部分,等我再传.38. 采用异步方式传送数据.39. 一种好的统计参数估计方法.其中的原代码为国外学者编写.40. 这个源代码是关于利用MODEM实现单片机与PC通信的程序.

    标签: 光电检测技术

    上传时间: 2013-07-05

    上传用户:eeworm