亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專(zhuān)輯| 精品軟件
登錄| 注冊(cè)

Date

  • US Navy VHDL Modelling Guide

      This document was developed under the Standard Hardware and Reliability Program (SHARP) TechnologyIndependent Representation of Electronic Products (TIREP) project. It is intended for use by VHSIC HardwareDescription Language (VHDL) design engineers and is offered as guidance for the development of VHDL modelswhich are compliant with the VHDL Data Item Description (DID DI-EGDS-80811) and which can be providedto manufacturing engineering personnel for the development of production data and the subsequent productionof hardware. Most VHDL modeling performed to Date has been concentrated at either the component level orat the conceptual system level. The assembly and sub-assembly levels have been largely disregarded. Under theSHARP TIREP project, an attempt has been made to help close this gap. The TIREP models are based upon lowcomplexity Standard Electronic Modules (SEM) of the format A configuration. Although these modules are quitesimple, it is felt that the lessons learned offer guidance which can readily be applied to a wide range of assemblytypes and complexities.

    標(biāo)簽: Modelling Guide Navy VHDL

    上傳時(shí)間: 2014-12-23

    上傳用戶:xinhaoshan2016

  • 高速放大器技術(shù)

      This publication represents the largest LTC commitmentto an application note to Date. No other application noteabsorbed as much effort, took so long or cost so much.This level of activity is justified by our belief that high speedmonolithic amplifiers greatly interest users.

    標(biāo)簽: 高速放大器

    上傳時(shí)間: 2014-01-07

    上傳用戶:wfl_yy

  • LCD12864顯示漢字和數(shù)字(程序和電路)

    附件為:LCD12864顯示漢字和數(shù)字的程序與電路 /*  自定義延時(shí)子函數(shù) */ void delayms(uchar z) {   int x,y;   for(x=z;x>0;x--)      for(y=110;y>0;y--); } /*      判斷LCD忙信號(hào)狀態(tài) */ void buys() {   int dat;   RW=1;   RS=0;   do     {           P0=0x00;          E=1;    dat=P0;    E=0;    dat=0x80 & dat;   } while(!(dat==0x00)); } /*      LCD寫(xiě)指令函數(shù) */ void w_com(uchar com) {   //buys();   RW=0;   RS=0;   E=1;   P0=com;   E=0; }  /*      LCD寫(xiě)數(shù)據(jù)函數(shù) */ void w_Date(uchar Date) {   //buys();   RW=0;   RS=1;   E=1;   P0=Date;   E=0; } /*     LCD選屏函數(shù) */ void select_screen(uchar screen) {     switch(screen)     {         case 0:     //選擇全屏                 CS1=0;        CS2=0;           break;      case 1:     //選擇左屏                 CS1=0;        CS2=1;           break;                          case 2:     //選擇右屏                 CS1=1;        CS2=0;           break;    /*  case 3:     //選擇右屏                 CS1=1;          CS2=1;               break;    */     }           } /*   LCDx向上滾屏顯示 */ void lcd_rol() {     int x;     for(x=0;x<64;x++)        {       select_screen(0);     w_com(0xc0+x);       delayms(500);     } } /*     LCD清屏函數(shù):清屏從第一頁(yè)的第一列開(kāi)始,總共8頁(yè),64列 */ void clear_screen(screen) {   int x,y;   select_screen(screen);     //screen:0-選擇全屏,1-選擇左半屏,2-選擇右半屏   for(x=0xb8;x<0xc0;x++)   //從0xb8-0xbf,共8頁(yè)      {    w_com(x);    w_com(0x40);   //列的初始地址是0x40    for(y=0;y<64;y++)       {            w_Date(0x00);              }       }    } /*   LCD顯示漢字字庫(kù)函數(shù) */ void lcd_display_hanzi(uchar screen,uchar page,uchar col,uint mun) {  //screen:選擇屏幕參數(shù),page:選擇頁(yè)參數(shù)0-3,col:選擇列參數(shù)0-3,mun:顯示第幾個(gè)漢字的參數(shù)       int a;    mun=mun*32;    select_screen(screen);    w_com(0xb8+(page*2));    w_com(0x40+(col*16));    for ( a=0;a<16;a++)       {        w_Date(hanzi[mun++]);       }    w_com(0xb8+(page*2)+1);    w_com(0x40+(col*16));    for ( a=0;a<16;a++)       {        w_Date(hanzi[mun++]);       } }  /*   LCD顯示字符字庫(kù)函數(shù) */ void lcd_display_zifuk(uchar screen,uchar page,uchar col,uchar mun) {  //screen:選擇屏幕參數(shù),page:選擇頁(yè)參數(shù)0-3,col:選擇列參數(shù)0-7,mun:顯示第幾個(gè)漢字的參數(shù)       int a;    mun=mun*16;    select_screen(screen);    w_com(0xb8+(page*2));    w_com(0x40+(col*8));    for ( a=0;a<8;a++)       {        w_Date(zifu[mun++]);       }    w_com(0xb8+(page*2)+1);    w_com(0x40+(col*8));    for ( a=0;a<8;a++)       {        w_Date(zifu[mun++]);       } } /*   LCD顯示數(shù)字字庫(kù)函數(shù) */ void lcd_display_shuzi(uchar screen,uchar page,uchar col,uchar mun) {  //screen:選擇屏幕參數(shù),page:選擇頁(yè)參數(shù)0-3,col:選擇列參數(shù)0-7,mun:顯示第幾個(gè)漢字的參數(shù)       int a;    mun=mun*16;    select_screen(screen);    w_com(0xb8+(page*2));    w_com(0x40+(col*8));    for ( a=0;a<8;a++)       {        w_Date(shuzi[mun++]);       }    w_com(0xb8+(page*2)+1);    w_com(0x40+(col*8));    for ( a=0;a<8;a++)       {        w_Date(shuzi[mun++]);       } } /*   LCD初始化函數(shù) */ void lcd_init() {   w_com(0x3f);   //LCD開(kāi)顯示   w_com(0xc0);   //LCD行初始地址,共64行   w_com(0xb8);   //LCD頁(yè)初始地址,共8頁(yè)   w_com(0x40);   //LCD列初始地址,共64列     } /*   LCD顯示主函數(shù) */ void main() {   //第一行       int x;    lcd_init();     //LCD初始化    clear_screen(0);    //LCD清屏幕    lcd_display_shuzi(1,0,4,5);    //LCD顯示數(shù)字    lcd_display_shuzi(1,0,5,1);    //LCD顯示數(shù)字       lcd_display_hanzi(1,0,3,0);    //LCD顯示漢字    lcd_display_hanzi(2,0,0,1);    //LCD顯示漢字    //LCD字符漢字    lcd_display_hanzi(2,0,1,2);    //LCD顯示漢字   //第二行     lcd_display_zifuk(1,1,2,0);    //LCD顯示字符    lcd_display_zifuk(1,1,3,0);    //LCD顯示字符    lcd_display_zifuk(1,1,4,0);    //LCD顯示字符    lcd_display_zifuk(1,1,5,4);    //LCD顯示字符    lcd_display_shuzi(1,1,6,8);    //LCD顯示字符    lcd_display_shuzi(1,1,7,9);    //LCD顯示字符    lcd_display_shuzi(2,1,0,5);    //LCD顯示字符    lcd_display_shuzi(2,1,1,1);    //LCD顯示字符    lcd_display_zifuk(2,1,2,4);    lcd_display_zifuk(2,1,3,1);    lcd_display_zifuk(2,1,4,2);    lcd_display_zifuk(2,1,5,3);   //第三行    for(x=0;x<4;x++)       {      lcd_display_hanzi(1,2,x,3+x);    //LCD顯示漢字    }      for(x=0;x<4;x++)       {      lcd_display_hanzi(2,2,x,7+x);    //LCD顯示漢字    }   //第四行     for(x=0;x<4;x++)       {      lcd_display_zifuk(1,3,x,5+x);    //LCD顯示漢字    }     lcd_display_shuzi(1,3,4,7);     lcd_display_shuzi(1,3,5,5);     lcd_display_shuzi(1,3,6,5);     lcd_display_zifuk(1,3,7,9);     lcd_display_shuzi(2,3,0,8);     lcd_display_shuzi(2,3,1,9);     lcd_display_shuzi(2,3,2,9);     lcd_display_shuzi(2,3,3,5);     lcd_display_shuzi(2,3,4,6);     lcd_display_shuzi(2,3,5,8);     lcd_display_shuzi(2,3,6,9);     lcd_display_shuzi(2,3,7,2);        while(1);    /* while(1)     {     //  LCD向上滾屏顯示        lcd_rol();     }    */ }

    標(biāo)簽: 12864 LCD 漢字 數(shù)字

    上傳時(shí)間: 2013-11-08

    上傳用戶:aeiouetla

  • 基于C8051F340的數(shù)據(jù)采集器設(shè)計(jì)

    針對(duì)眾多低成本數(shù)據(jù)采集需求,采用帶有片上USB控制器和D/A轉(zhuǎn)換器的混合信號(hào)微處理器C8051F340,設(shè)計(jì)了一款可通過(guò)USB接口和LabVIEW圖形用戶界面實(shí)現(xiàn)與PC機(jī)聯(lián)機(jī)的數(shù)據(jù)采集器,同時(shí)借助系統(tǒng)的SD卡存儲(chǔ)獨(dú)立實(shí)現(xiàn)現(xiàn)場(chǎng)長(zhǎng)時(shí)間采集數(shù)據(jù)。該數(shù)據(jù)采集器成本低,結(jié)構(gòu)簡(jiǎn)單,體積小,已成功用于工業(yè)現(xiàn)場(chǎng)。 Abstract:  Aiming at the need of low cost data acquisition, a data acquisition device is designed based on C8051F340 which is a mixed-signal microcontroller and integrates USB controller and A/D controller on a chip.The data acquisition device which can combine with PC by USB interface and LabVIEW graphical user interface,can realize data acquisition. At the same time,it can be solely run a long time in virtue of SD card in field.The Date aequisition device features low cost,simple structure and little sharp, and it has been used in industry field.

    標(biāo)簽: C8051F340 數(shù)據(jù) 集器設(shè)計(jì)

    上傳時(shí)間: 2014-05-31

    上傳用戶:1109003457

  • STC12C5410AD 系列單片機(jī)器件手冊(cè)

    STC12C5410AD 系列單片機(jī)器件手冊(cè) STC12C5412, STC12C5412ADSTC12C5410, STC12C5410ADSTC12C5408, STC12C5408ADSTC12C5406, STC12C5406ADSTC12C5404, STC12C5404ADSTC12C5402, STC12C5402ADSTC12C5410AD 系列單片機(jī)器件手冊(cè)技術(shù)支援: 宏晶科技( 深圳)www.MCU-Memory.com support@MCU-Memory.comUpDate Date: 2006-4-15 (請(qǐng)隨時(shí)注意更新)--- 高速,高可靠--- 低功耗,超低價(jià)--- 無(wú)法解密--- 強(qiáng)抗靜電,強(qiáng)抗干擾STC12LE5412, STC12LE5412ADSTC12LE5410, STC12LE5410ADSTC12LE5408, STC12LE5408ADSTC12LE5406, STC12LE5406ADSTC12LE5404, STC12LE5404ADSTC12LE5402, STC12LE5402AD

    標(biāo)簽: C5410 5410 STC 12C

    上傳時(shí)間: 2014-12-27

    上傳用戶:han_zh

  • 使用CCS進(jìn)行DSP編程

    CCStudio Platinum Edition is available in a number of ways. Existingcustomers who are up-to-Date with their subscription service withTexas Instruments will receive their upDate automatically on a CD inthe mail. New customers who wish to purchase a copy of CCStudioPlatinum Edition can order TMDSCCSALL-1 starting May 23, 2005. A120-day Trial version will be also be available on CDROM startingJuly 11, 2005. Users may order the CDROM of the 120-day free copy

    標(biāo)簽: CCS DSP 編程

    上傳時(shí)間: 2014-12-28

    上傳用戶:gououo

  • wp379 AXI4即插即用IP

    In the past decade, the size and complexity of manyFPGA designs exceeds the time and resourcesavailable to most design teams, making the use andreuse of Intellectual Property (IP) imperative.However, integrating numerous IP blocks acquiredfrom both internal and external sources can be adaunting challenge that often extends, rather thanshortens, design time. As today's designs integrateincreasing amounts of functionality, it is vital thatdesigners have access to proven, up-to-Date IP fromreliable sources.

    標(biāo)簽: AXI4 379 wp 即插即用

    上傳時(shí)間: 2013-11-15

    上傳用戶:lyy1234

  • LPC1700系列芯片勘誤手冊(cè)

    This errata sheet describes both the known functional problems and anydeviations from the electrical specifications known at the release Date ofthis document.Each deviation is assigned a number and its history is tracked in a table atthe end of the document.

    標(biāo)簽: 1700 LPC 系列芯片 勘誤

    上傳時(shí)間: 2013-11-22

    上傳用戶:liangliang123

  • LPC1100系列微控制器勘誤手冊(cè)

    This errata sheet describes both the known functional problems and anydeviations from the electrical specifications known at the release Date ofthis document.Each deviation is assigned a number and its history is tracked in a table atthe end of the document.

    標(biāo)簽: 1100 LPC 微控制器 勘誤

    上傳時(shí)間: 2014-12-31

    上傳用戶:thuyenvinh

  • 單片機(jī)12864液晶時(shí)鐘顯示程序

    12864液晶時(shí)鐘顯示程序 LCD 地址變量 ;**************變量的定義***************** RS             BIT      P2.0            ;LCD數(shù)據(jù)/命令選擇端(H/L) RW             BIT      P2.1          ;LCD讀/寫(xiě)選擇端(H/L) EP             BIT      P2.2            ;LCD使能控制 PSB        EQU P2.3 RST        EQU P2.5 PRE            BIT      P1.4            ;調(diào)整鍵(K1) ADJ            BIT      P1.5            ;調(diào)整鍵(K2) COMDAT         EQU P0 LED        EQU P0.3 YEAR           DATA      18H            ;年,月,日變量 MONTH          DATA      19H Date           DATA      1AH WEEK           DATA      1BH HOUR           DATA      1CH            ;時(shí),分,秒,百分之一秒變量 MIN            DATA      1DH SEC            DATA      1EH SEC100         DATA      1FH STATE          DATA      23H LEAP           BIT      STATE.1            ;是否閏年標(biāo)志1--閏年,0--平年 KEY_S          DATA      24H            ;當(dāng)前掃描鍵值 KEY_V          DATA      25H            ;上次掃描鍵值 DIS_BUF_U0      DATA      26H            ;LCD第一排顯示緩沖區(qū) DIS_BUF_U1      DATA      27H DIS_BUF_U2      DATA      28H DIS_BUF_U3      DATA      29H DIS_BUF_U4      DATA      2AH DIS_BUF_U5      DATA      2BH DIS_BUF_U6      DATA      2CH DIS_BUF_U7      DATA      2DH DIS_BUF_U8      DATA      2EH DIS_BUF_U9      DATA      2FH DIS_BUF_U10     DATA      30H DIS_BUF_U11     DATA      31H DIS_BUF_U12     DATA      32H DIS_BUF_U13     DATA      33H DIS_BUF_U14     DATA      34H DIS_BUF_U15     DATA      35H DIS_BUF_L0      DATA      36H            ;LCD第三排顯示緩沖區(qū) DIS_BUF_L1      DATA      37H DIS_BUF_L2      DATA      38H DIS_BUF_L3      DATA      39H DIS_BUF_L4      DATA      3AH DIS_BUF_L5      DATA      3BH DIS_BUF_L6      DATA      3CH DIS_BUF_L7      DATA      3DH DIS_BUF_L8      DATA      3EH DIS_BUF_L9      DATA      3FH DIS_BUF_L10     DATA      40H DIS_BUF_L11     DATA      41H DIS_BUF_L12     DATA      42H DIS_BUF_L13     DATA      43H DIS_BUF_L14     DATA      44H DIS_BUF_L15     DATA      45H FLAG            DATA      46H ;1-年,2-月,3-日,4-時(shí),5-分,6-秒,7-退出調(diào)整。 DIS_H           DATA      47H DIS_M           DATA      48H DIS_S           DATA      49H

    標(biāo)簽: 12864 單片機(jī) 液晶時(shí)鐘 顯示程序

    上傳時(shí)間: 2013-11-09

    上傳用戶:xingisme

主站蜘蛛池模板: 平谷区| 景东| 池州市| 乐东| 乌拉特前旗| 禄丰县| 泸水县| 泉州市| 通城县| 渝北区| 榕江县| 兴化市| 潍坊市| 望城县| 泗阳县| 新巴尔虎左旗| 仪陇县| 伊吾县| 木里| 宁都县| 南涧| 攀枝花市| 海南省| 新昌县| 东光县| 宣化县| 吐鲁番市| 沙坪坝区| 岢岚县| 长治县| 滁州市| 新巴尔虎右旗| 庆元县| 兴山县| 邵东县| 余江县| 光泽县| 闸北区| 崇州市| 乐陵市| 常山县|