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

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

IN-CIRCUIT-<b>debugger</b>

  • 80C51特殊功能寄存器地址表

    /*--------- 8051內(nèi)核特殊功能寄存器 -------------*/ sfr ACC = 0xE0;             //累加器 sfr B = 0xF0;  //B 寄存器 sfr PSW    = 0xD0;           //程序狀態(tài)字寄存器 sbit CY    = PSW^7;       //進(jìn)位標(biāo)志位 sbit AC    = PSW^6;        //輔助進(jìn)位標(biāo)志位 sbit F0    = PSW^5;        //用戶(hù)標(biāo)志位0 sbit RS1   = PSW^4;        //工作寄存器組選擇控制位 sbit RS0   = PSW^3;        //工作寄存器組選擇控制位 sbit OV    = PSW^2;        //溢出標(biāo)志位 sbit F1    = PSW^1;        //用戶(hù)標(biāo)志位1 sbit P     = PSW^0;        //奇偶標(biāo)志位 sfr SP    = 0x81;            //堆棧指針寄存器 sfr DPL  = 0x82;            //數(shù)據(jù)指針0低字節(jié) sfr DPH  = 0x83;            //數(shù)據(jù)指針0高字節(jié) /*------------ 系統(tǒng)管理特殊功能寄存器 -------------*/ sfr PCON  = 0x87;           //電源控制寄存器 sfr AUXR = 0x8E;              //輔助寄存器 sfr AUXR1 = 0xA2;             //輔助寄存器1 sfr WAKE_CLKO = 0x8F;        //時(shí)鐘輸出和喚醒控制寄存器 sfr CLK_DIV  = 0x97;          //時(shí)鐘分頻控制寄存器 sfr BUS_SPEED = 0xA1;        //總線速度控制寄存器 /*----------- 中斷控制特殊功能寄存器 --------------*/ sfr IE     = 0xA8;           //中斷允許寄存器 sbit EA    = IE^7;  //總中斷允許位  sbit ELVD  = IE^6;           //低電壓檢測(cè)中斷控制位 8051

    標(biāo)簽: 80C51 特殊功能寄存器 地址

    上傳時(shí)間: 2013-10-30

    上傳用戶(hù):yxgi5

  • TLC2543 中文資料

    TLC2543是TI公司的12位串行模數(shù)轉(zhuǎn)換器,使用開(kāi)關(guān)電容逐次逼近技術(shù)完成A/D轉(zhuǎn)換過(guò)程。由于是串行輸入結(jié)構(gòu),能夠節(jié)省51系列單片機(jī)I/O資源;且價(jià)格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應(yīng)用。 TLC2543的特點(diǎn) (1)12位分辯率A/D轉(zhuǎn)換器; (2)在工作溫度范圍內(nèi)10μs轉(zhuǎn)換時(shí)間; (3)11個(gè)模擬輸入通道; (4)3路內(nèi)置自測(cè)試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉(zhuǎn)換結(jié)束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導(dǎo); (10)可編程輸出數(shù)據(jù)長(zhǎng)度。 TLC2543的引腳排列及說(shuō)明    TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說(shuō)明見(jiàn)表1 TLC2543電路圖和程序欣賞 #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit clock=P1^0; sbit d_in=P1^1; sbit d_out=P1^2; sbit _cs=P1^3; uchar a1,b1,c1,d1; float sum,sum1; double  sum_final1; double  sum_final; uchar duan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; uchar wei[]={0xf7,0xfb,0xfd,0xfe};  void delay(unsigned char b)   //50us {           unsigned char a;           for(;b>0;b--)                     for(a=22;a>0;a--); }  void display(uchar a,uchar b,uchar c,uchar d) {    P0=duan[a]|0x80;    P2=wei[0];    delay(5);    P2=0xff;    P0=duan[b];    P2=wei[1];    delay(5);   P2=0xff;   P0=duan[c];   P2=wei[2];   delay(5);   P2=0xff;   P0=duan[d];   P2=wei[3];   delay(5);   P2=0xff;   } uint read(uchar port) {   uchar  i,al=0,ah=0;   unsigned long ad;   clock=0;   _cs=0;   port<<=4;   for(i=0;i<4;i++)  {    d_in=port&0x80;    clock=1;    clock=0;    port<<=1;  }   d_in=0;   for(i=0;i<8;i++)  {    clock=1;    clock=0;  }   _cs=1;   delay(5);   _cs=0;   for(i=0;i<4;i++)  {    clock=1;    ah<<=1;    if(d_out)ah|=0x01;    clock=0; }   for(i=0;i<8;i++)  {    clock=1;    al<<=1;    if(d_out) al|=0x01;    clock=0;  }   _cs=1;   ad=(uint)ah;   ad<<=8;   ad|=al;   return(ad); }  void main()  {   uchar j;   sum=0;sum1=0;   sum_final=0;   sum_final1=0;    while(1)  {              for(j=0;j<128;j++)          {             sum1+=read(1);             display(a1,b1,c1,d1);           }            sum=sum1/128;            sum1=0;            sum_final1=(sum/4095)*5;            sum_final=sum_final1*1000;            a1=(int)sum_final/1000;            b1=(int)sum_final%1000/100;            c1=(int)sum_final%1000%100/10;            d1=(int)sum_final%10;            display(a1,b1,c1,d1);           }         } 

    標(biāo)簽: 2543 TLC

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

    上傳用戶(hù):shen1230

  • AVR單片機(jī)數(shù)碼管秒表顯示

    #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,

    標(biāo)簽: AVR 單片機(jī) 數(shù)碼管

    上傳時(shí)間: 2013-10-21

    上傳用戶(hù):13788529953

  • Atmel AT89C系列單片機(jī)電路板設(shè)計(jì)指南

    Designing Boards with Atmel AT89C51,AT89C52, AT89C1051, and AT89C2051 for Writing Flash at In-Circuit Test. Recent improvements in chips and testers have made it possible for the tester to begin taking over the role tradi-tionally assigned to the PROM program-mer. Instead of having a PROM pro- grammer write nonvolatile memories before assembling the board, the in-cir- cuit tester writes them during in-circuit testing operations. Many Teradyne Z18- series testers are now in use loading code into nonvolatile memories, micro- controllers and in-circuit programmable logic devices. The purpose of this note is to explain how the Z18 approaches the writing task for Atmel AT89C series IC’s, so that designers of boards using these chips can get the best results.  

    標(biāo)簽: Atmel 89C AT 89

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

    上傳用戶(hù):xiaozhiqban

  • 基于AVR單片機(jī)的USB接口設(shè)計(jì)

    以AVR單片機(jī)ATmega8和USB接口器件PDIUSBD12為核心,基于標(biāo)準(zhǔn)的USB1.1協(xié)議,設(shè)計(jì)一種通用USB接口模塊,以滿足嵌入式系統(tǒng)中對(duì)USB接口的需求。對(duì)模塊的硬件電路或單片機(jī)固件程序的硬件接口層稍加修改即可用于其他各種微處理器。該模塊可為各種嵌入式系統(tǒng)增加USB接口,實(shí)現(xiàn)與USB主機(jī)系統(tǒng)通信。 Abstract:  Based on AVR microcontroller ATmega8 and USB interface chip PDIUSBD12, a general USB interface module is designed according to USB1.1 protocol for various requirements of embedded systems. Only with few modifications in circuit or hardware abstract layer of firmware, the module can be used on many types of microprocessors. All kinds of embedded systems can realize high speed and stable communication with USB host systems, owing to the facility of this module.

    標(biāo)簽: AVR USB 單片機(jī) 接口設(shè)計(jì)

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

    上傳用戶(hù):趙云興

  • MAX7456在可視倒車(chē)?yán)走_(dá)中的應(yīng)用

    為解決傳統(tǒng)可視倒車(chē)?yán)走_(dá)視頻字符疊加器結(jié)構(gòu)復(fù)雜,可靠性差,成本高昂等問(wèn)題,在可視倒車(chē)?yán)走_(dá)設(shè)計(jì)中采用視頻字符發(fā)生器芯片MAX7456。該芯片集成了所有用于產(chǎn)生用戶(hù)定義OSD,并將其插入視頻信號(hào)中所需的全部功能,僅需少量的外圍阻容元件即可正常工作。給出了以MAX7456為核心的可視倒車(chē)?yán)走_(dá)的軟、硬件實(shí)現(xiàn)方案及設(shè)計(jì)實(shí)例。該方案具有電路結(jié)構(gòu)簡(jiǎn)單、價(jià)格低廉、符合人體視覺(jué)習(xí)慣的特點(diǎn)。經(jīng)實(shí)際裝車(chē)測(cè)試,按該方案設(shè)計(jì)的可視倒車(chē)?yán)走_(dá)視場(chǎng)清晰、提示字符醒目、工作可靠,可有效降低駕駛員倒車(chē)時(shí)的工作強(qiáng)度、減少倒車(chē)事故的發(fā)生。 Abstract:  A new video and text generation chip,MAX7456,was used in the design of video parking sensor in order to simplify system structure,improve reliability and reduce cost. This chip included all the necessary functions to generate user-defined OSDs and to add them into the video signals. It could be put into work with addition of just a small number of resistances and capacitors. This paper provided software and hardware implementation solutions and design example based on the chip. The system had the characteristics of simplicity in circuit structure,lower cost,and comfort for the nature of human vision. Loading road test demonstrates high video and text display quality and reliable performance,which makes the driver easy to see backward and reduces chance of accidents.

    標(biāo)簽: 7456 MAX 可視倒車(chē) 中的應(yīng)用

    上傳時(shí)間: 2013-12-10

    上傳用戶(hù):qiaoyue

  • Designing Boards with Atmel AT

    Designing Boards with Atmel AT89C51, AT89C52, AT89C1051, and AT89C2051 for Writing Flash at In-Circuit Test:Recent improvements in chips andtesters have made it possible for thetester to begin taking over the role traditionallyassigned to the PROM programmer.Instead of having a PROM programmerwrite nonvolatile memoriesbefore assembling the board, the in-circuittester writes them during in-circuittesting operations. Many Teradyne Z18-series testers are now in use loadingcode into nonvolatile memories, microcontrollersand in-circuit programmable logic devices. The purpose of this note is to explain how the Z18 approaches the writing task for Atmel AT89C series IC’s,so that designers of boards using these chips can get the best results.

    標(biāo)簽: Designing Boards Atmel with

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

    上傳用戶(hù):lijianyu172

  • 87C576微控制器的在線編程

    The 87C576 includes two separate methods of programming theEPROM array, the traditional modified Quick-Pulse method, and anew On-Board Programming technique (OBP).Quick Pulse programming is a method using a number of devicepins in parallel (see Figure 1) and is the traditional way in which87C51 family members have been programmed. The Quick-Pulsemethod supports the following programming functions:– program USER EPROM– verify USER EPROM– program KEY EPROM– program security bits– verify security bits– read signature bytesThe Quick-Pulse method is quite easily suited to standardprogramming equipment as evidenced by the numerous vendors of87C51 compatible programmers on the market today. Onedisadvantage is that this method is not well suited to programming inthe embedded application because of the large number of signallines that must be isolated from the application. In addition, parallelsignals from a programmer would need to be cabled to theapplication’s circuit board, or the application circuit board wouldneed to have logic built-in to perform the programming functions.These requirements have generally made in-circuit programmingusing the modified Quick Pulse method impractical in almost all87C51 family applications.

    標(biāo)簽: 87C576 微控制器 編程

    上傳時(shí)間: 2013-10-21

    上傳用戶(hù):xiaozhiqban

  • 采用高速串行收發(fā)器Rocket I/O實(shí)現(xiàn)數(shù)據(jù)率為2.5 G

    摘要: 串行傳輸技術(shù)具有更高的傳輸速率和更低的設(shè)計(jì)成本, 已成為業(yè)界首選, 被廣泛應(yīng)用于高速通信領(lǐng)域。提出了一種新的高速串行傳輸接口的設(shè)計(jì)方案, 改進(jìn)了Aurora 協(xié)議數(shù)據(jù)幀格式定義的弊端, 并采用高速串行收發(fā)器Rocket I/O, 實(shí)現(xiàn)數(shù)據(jù)率為2.5 Gbps的高速串行傳輸。關(guān)鍵詞: 高速串行傳輸; Rocket I/O; Aurora 協(xié)議 為促使FPGA 芯片與串行傳輸技術(shù)更好地結(jié)合以滿足市場(chǎng)需求, Xilinx 公司適時(shí)推出了內(nèi)嵌高速串行收發(fā)器RocketI/O 的Virtex II Pro 系列FPGA 和可升級(jí)的小型鏈路層協(xié)議———Aurora 協(xié)議。Rocket I/O支持從622 Mbps 至3.125 Gbps的全雙工傳輸速率, 還具有8 B/10 B 編解碼、時(shí)鐘生成及恢復(fù)等功能, 可以理想地適用于芯片之間或背板的高速串行數(shù)據(jù)傳輸。Aurora 協(xié)議是為專(zhuān)有上層協(xié)議或行業(yè)標(biāo)準(zhǔn)的上層協(xié)議提供透明接口的第一款串行互連協(xié)議, 可用于高速線性通路之間的點(diǎn)到點(diǎn)串行數(shù)據(jù)傳輸, 同時(shí)其可擴(kuò)展的帶寬, 為系統(tǒng)設(shè)計(jì)人員提供了所需要的靈活性[4]。但該協(xié)議幀格式的定義存在弊端,會(huì)導(dǎo)致系統(tǒng)資源的浪費(fèi)。本文提出的設(shè)計(jì)方案可以改進(jìn)Aurora 協(xié)議的固有缺陷,提高系統(tǒng)性能, 實(shí)現(xiàn)數(shù)據(jù)率為2.5 Gbps 的高速串行傳輸, 具有良好的可行性和廣闊的應(yīng)用前景。

    標(biāo)簽: Rocket 2.5 高速串行 收發(fā)器

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

    上傳用戶(hù):smallfish

  • 采用高速串行收發(fā)器Rocket I/O實(shí)現(xiàn)數(shù)據(jù)率為2.5 G

    摘要: 串行傳輸技術(shù)具有更高的傳輸速率和更低的設(shè)計(jì)成本, 已成為業(yè)界首選, 被廣泛應(yīng)用于高速通信領(lǐng)域。提出了一種新的高速串行傳輸接口的設(shè)計(jì)方案, 改進(jìn)了Aurora 協(xié)議數(shù)據(jù)幀格式定義的弊端, 并采用高速串行收發(fā)器Rocket I/O, 實(shí)現(xiàn)數(shù)據(jù)率為2.5 Gbps的高速串行傳輸。關(guān)鍵詞: 高速串行傳輸; Rocket I/O; Aurora 協(xié)議 為促使FPGA 芯片與串行傳輸技術(shù)更好地結(jié)合以滿足市場(chǎng)需求, Xilinx 公司適時(shí)推出了內(nèi)嵌高速串行收發(fā)器RocketI/O 的Virtex II Pro 系列FPGA 和可升級(jí)的小型鏈路層協(xié)議———Aurora 協(xié)議。Rocket I/O支持從622 Mbps 至3.125 Gbps的全雙工傳輸速率, 還具有8 B/10 B 編解碼、時(shí)鐘生成及恢復(fù)等功能, 可以理想地適用于芯片之間或背板的高速串行數(shù)據(jù)傳輸。Aurora 協(xié)議是為專(zhuān)有上層協(xié)議或行業(yè)標(biāo)準(zhǔn)的上層協(xié)議提供透明接口的第一款串行互連協(xié)議, 可用于高速線性通路之間的點(diǎn)到點(diǎn)串行數(shù)據(jù)傳輸, 同時(shí)其可擴(kuò)展的帶寬, 為系統(tǒng)設(shè)計(jì)人員提供了所需要的靈活性[4]。但該協(xié)議幀格式的定義存在弊端,會(huì)導(dǎo)致系統(tǒng)資源的浪費(fèi)。本文提出的設(shè)計(jì)方案可以改進(jìn)Aurora 協(xié)議的固有缺陷,提高系統(tǒng)性能, 實(shí)現(xiàn)數(shù)據(jù)率為2.5 Gbps 的高速串行傳輸, 具有良好的可行性和廣闊的應(yīng)用前景。

    標(biāo)簽: Rocket 2.5 高速串行 收發(fā)器

    上傳時(shí)間: 2013-10-13

    上傳用戶(hù):lml1234lml

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲小说欧美另类婷婷| 久久综合久久久| 国产精品扒开腿做爽爽爽软件| 欧美夜福利tv在线| 一本色道久久综合亚洲二区三区 | 亚洲精品国产精品国产自| 国产真实乱偷精品视频免| 国产精品多人| 欧美午夜寂寞影院| 欧美日韩精品三区| 欧美日韩在线看| 欧美日韩国产专区| 欧美午夜国产| 国产精品黄视频| 欧美日韩国产高清| 欧美日韩日本国产亚洲在线| 欧美久久精品午夜青青大伊人| 欧美福利视频| 欧美激情视频免费观看| 欧美激情成人在线视频| 欧美女同在线视频| 国产精品国产一区二区| 国产精品尤物| 国语自产精品视频在线看抢先版结局 | 一本色道久久| 欧美日韩免费一区二区三区视频| 欧美激情2020午夜免费观看| 欧美精品在线看| 欧美色偷偷大香| 国产精品自拍在线| 好看不卡的中文字幕| 亚洲高清不卡一区| 亚洲免费不卡| 午夜免费久久久久| 麻豆九一精品爱看视频在线观看免费| 美脚丝袜一区二区三区在线观看 | 欧美高清成人| 国产精品成人免费精品自在线观看| 国产伦精品一区二区三区视频黑人| 国产一区二区三区免费在线观看| 亚洲国产91| 亚洲免费视频在线观看| 久久久另类综合| 欧美日韩精品久久| 国一区二区在线观看| 亚洲精选视频在线| 亚洲欧美一区二区在线观看| 开元免费观看欧美电视剧网站| 欧美日本在线播放| 好男人免费精品视频| 宅男噜噜噜66一区二区66| 久久精品二区| 欧美视频一区二区在线观看 | 国产精品欧美日韩久久| 在线观看91精品国产麻豆| 在线亚洲一区观看| 久久综合九色99| 国产精品一二一区| 亚洲精品在线观看视频| 久久久www成人免费无遮挡大片| 欧美日本在线视频| 亚洲成人在线视频播放| 亚洲免费视频在线观看| 欧美激情第五页| 精品av久久707| 性做久久久久久久久| 欧美视频精品一区| 亚洲精品国产精品乱码不99按摩| 久久久久国产精品午夜一区| 国产精品一区二区三区观看| 一区二区精品| 欧美激情自拍| 亚洲欧洲日产国码二区| 久久综合久久综合这里只有精品| 国产精品一区二区三区久久 | 久久国产欧美| 国产精品久久久久一区| 亚洲精品一区二区三区99| 噜噜噜噜噜久久久久久91| 国产亚洲精品bt天堂精选| 亚洲欧美日韩国产一区二区| 欧美三区不卡| 一区二区三区高清视频在线观看| 老司机午夜免费精品视频| 国产一区二区三区在线观看免费 | 亚洲国产美女久久久久| 久久久www成人免费毛片麻豆| 国产精品入口| 亚洲午夜伦理| 国产精品sm| 亚洲视频你懂的| 欧美三日本三级少妇三2023| 99re66热这里只有精品3直播| 欧美高清视频一区二区三区在线观看 | 狠狠色综合色区| 一区二区三区三区在线| 欧美日本在线看| 亚洲精品小视频| 欧美日韩一区综合| 一区二区三区高清在线| 欧美色精品在线视频| 一本久久a久久精品亚洲| 欧美日韩午夜精品| 亚洲免费中文字幕| 国产午夜亚洲精品不卡| 久久夜色精品国产欧美乱极品| 在线观看日韩欧美| 欧美美女bbbb| 亚洲欧美在线一区| 韩国v欧美v日本v亚洲v| 欧美第一黄色网| 一区二区三区四区五区精品| 国产精品一卡二| 玖玖玖国产精品| 日韩性生活视频| 国产伦精品一区二区三区高清| 久久久精品欧美丰满| 91久久久亚洲精品| 国产精品黄视频| 久久亚洲精品一区二区| 亚洲国产美女久久久久| 欧美色欧美亚洲另类七区| 欧美主播一区二区三区| 永久免费精品影视网站| 欧美色综合天天久久综合精品| 欧美一级理论片| 亚洲美女黄色片| 国语自产精品视频在线看| 欧美成人资源| 久久超碰97人人做人人爱| 亚洲精品日韩在线| 国产日产精品一区二区三区四区的观看方式 | 久久蜜桃香蕉精品一区二区三区| 亚洲免费网址| 国内精品久久久久影院色| 欧美成人亚洲成人日韩成人| 一本一本久久| 精品不卡一区二区三区| 国产精品超碰97尤物18| 美女黄色成人网| 午夜精品久久久久久久男人的天堂 | 午夜精品久久久久久久久久久| 欧美日韩国产在线| 美国三级日本三级久久99| 亚洲一区二区在| 亚洲综合欧美日韩| 亚洲一级二级在线| 欧美一区日本一区韩国一区| 欧美日韩亚洲一区二区三区在线观看 | 一区二区三区在线免费观看| 国产精品一二三视频| 久久这里只有精品视频首页| 欧美日韩免费观看一区 | 国产精品99久久久久久白浆小说| 国产欧美va欧美va香蕉在| 亚洲高清视频一区二区| 亚洲一区中文| 99精品欧美一区二区蜜桃免费| 国产精品夫妻自拍| 99国产精品久久久| 国产精品视屏| 欧美成人精品在线| 亚洲欧洲三级| 女生裸体视频一区二区三区| 日韩视频永久免费| 国产精品av一区二区| 亚洲欧美日韩国产一区| 韩国av一区二区三区| 农村妇女精品| 亚洲视屏一区| 亚洲人体大胆视频| 国产女主播一区二区| 欧美日韩色综合| 国产丝袜一区二区| 欧美特黄一区| 欧美啪啪成人vr| 欧美—级高清免费播放| 美脚丝袜一区二区三区在线观看| 久久久久久久综合| 久久伊人精品天天| 玖玖玖国产精品| 免费观看久久久4p| 欧美freesex交免费视频| 欧美freesex交免费视频| 免费成年人欧美视频| 欧美va天堂| 欧美精品亚洲| 国产精品都在这里| 国产精品一二三| 国产偷国产偷亚洲高清97cao| 国产一区二区三区高清| 国产真实久久| 亚洲福利国产| 在线视频中文亚洲| 午夜欧美精品| 久久裸体艺术| 欧美日韩国产二区| 国产精品丝袜白浆摸在线| 久久久久高清| 亚洲国产中文字幕在线观看|