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

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

time-of-<b>DAY</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;        //用戶標(biāo)志位0 sbit RS1   = PSW^4;        //工作寄存器組選擇控制位 sbit RS0   = PSW^3;        //工作寄存器組選擇控制位 sbit OV    = PSW^2;        //溢出標(biāo)志位 sbit F1    = PSW^1;        //用戶標(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;           //低電壓檢測中斷控制位 8051

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

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

    上傳用戶:yxgi5

  • TLC2543 中文資料

    TLC2543是TI公司的12位串行模數(shù)轉(zhuǎn)換器,使用開關(guān)電容逐次逼近技術(shù)完成A/D轉(zhuǎn)換過程。由于是串行輸入結(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)置自測試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉(zhuǎn)換結(jié)束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導(dǎo); (10)可編程輸出數(shù)據(jù)長度。 TLC2543的引腳排列及說明    TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說明見表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

    上傳用戶: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

    上傳用戶:13788529953

  • 基于瑞薩電子微控制器的溫度控制系統(tǒng)設(shè)計(jì)

      為了提高傳統(tǒng)溫度控制系統(tǒng)的性能,將PID控制理論與嵌入式系統(tǒng)相結(jié)合,采用瑞薩電子公司的H8S/2166作為核心處理器,AD公司的AD7705以及熱敏電阻溫度傳感器作為溫度檢測單元,利用4×6小鍵盤、LCD顯示器和S1D13305液晶控制器達(dá)到良好的人機(jī)交互,設(shè)計(jì)出了一個(gè)應(yīng)用于化工領(lǐng)域的嵌入式實(shí)時(shí)溫度控制系統(tǒng)。相比于傳統(tǒng)溫度控制系統(tǒng),該系統(tǒng)提供了更強(qiáng)的計(jì)算能力和可擴(kuò)展能力,采用增量PID控制算法實(shí)現(xiàn)復(fù)雜控制。通過實(shí)驗(yàn),該系統(tǒng)能達(dá)到0.1 ℃的溫度控制精度以及小于120 s的溫度穩(wěn)定時(shí)間。   Abstract:   In order to improve the performance of conventional temperature control system, combining PID control theory with embedded systems, using the Renesas Electronics Corp. H8S/2166 micro-controller as a core processors, AD7705 and thermistor temperature sensor as a temperature detection unit and 4×6 small keyboard, LCD and S1D13305 LCD controller as a good human-computer interaction, this paper designed an embedded real-time temperature control system which is applied in chemical industry. Compared with conventional temperature control system, this system provides more computing power and extensibility, and adopts PID control algorithm for complex control. Through the experiment, the system can reach temperature control accuracy of 0.1 ℃ and temperature stabilization time of less than 120 seconds.

    標(biāo)簽: 瑞薩電子 微控制器 溫度控制 系統(tǒng)設(shè)計(jì)

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

    上傳用戶:003030

  • TMS320C6000 Assembly Language

    Texas Instruments and its subsidiaries (TI) reserve the right to make changes to their productsor to discontinue any product or service without notice, and advise customers to obtain the latestversion of relevant information to verify, before placing orders, that information being relied onis current and complete. All products are sold subject to the terms and conditions of sale suppliedat the time of order acknowledgement, including those pertaining to warranty, patentinfringement, and limitation of liability.

    標(biāo)簽: Assembly Language C6000 320C

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

    上傳用戶:chens000

  • Using the 87LPC76X microcontro

    I2C interface, is a very powerful tool for system designers. Theintegrated protocols allow systems to be completely software defined.Software development time of different products can be reduced byassembling a library of reusable software modules. In addition, themultimaster capability allows rapid testing and alignment ofend-products via external connections to an assembly-line computer.The mask programmable 87LPC76X and its EPROM version, the87LPC76X, can operate as a master or a slave device on the I2Csmall area network. In addition to the efficient interface to thededicated function ICs in the I2C family, the on-board interfacefacilities I/O and RAM expansion, access to EEPROM andprocessor-to-processor communications.

    標(biāo)簽: microcontro Using 76X LPC

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

    上傳用戶:Artemis

  • TMS320C54x DSP 的cpu和外圍設(shè)備

    Texas Instruments and its subsidiaries (TI) reserve the right to make changes to their productsor to discontinue any product or service without notice, and advise customers to obtain the latestversion of relevant information to verify, before placing orders, that information being relied onis current and complete. All products are sold subject to the terms and conditions of sale suppliedat the time of order acknowledgement, including those pertaining to warranty, patentinfringement, and limitation of liability

    標(biāo)簽: 320C TMS 320 C54

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

    上傳用戶:凌云御清風(fēng)

  • XAPP098 - Spartan FPGA低成本、高效率串行配置

    This application note shows how to achieve low-cost, efficient serial configuration for Spartan FPGA designs. The approachrecommended here takes advantage of unused resources in a design, thereby reducing the cost, part count, memory size,and board space associated with the serial configuration circuitry. As a result, neither processor nor PROM needs to be fullydedicated to performing Spartan configuration.In particular, information is provided on how the idle processing time of an on-board controller can be used to loadconfiguration data from an off-board source. As a result, it is possible to upgrade a Spartan design in the field by sending thebitstream over a network.

    標(biāo)簽: Spartan XAPP FPGA 098

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

    上傳用戶:adada

  • 采用高速串行收發(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é)合以滿足市場需求, Xilinx 公司適時(shí)推出了內(nèi)嵌高速串行收發(fā)器RocketI/O 的Virtex II Pro 系列FPGA 和可升級的小型鏈路層協(xié)議———Aurora 協(xié)議。Rocket I/O支持從622 Mbps 至3.125 Gbps的全雙工傳輸速率, 還具有8 B/10 B 編解碼、時(shí)鐘生成及恢復(fù)等功能, 可以理想地適用于芯片之間或背板的高速串行數(shù)據(jù)傳輸。Aurora 協(xié)議是為專有上層協(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

    上傳用戶:smallfish

  • 基于以太網(wǎng)的虛擬示波器設(shè)計(jì)

    為提升虛擬儀器傳輸速率與實(shí)時(shí)性能,擴(kuò)展監(jiān)測范圍,在VC的軟件平臺(tái)上設(shè)計(jì)了一種全功能虛擬示波器。與傳統(tǒng)虛擬示波器相比,該系統(tǒng)采用嵌入式系統(tǒng)完成信號采集,采用工業(yè)以太網(wǎng)為傳輸介質(zhì),通過線性插值算法和多線程編程思想,實(shí)現(xiàn)波形顯示、參數(shù)計(jì)算、頻譜分析以及波形存儲(chǔ)及回放功能。實(shí)驗(yàn)結(jié)果表明,該虛擬示波器可以實(shí)現(xiàn)20 kHz采樣頻率下的波形精確顯示,達(dá)到預(yù)期的各項(xiàng)指標(biāo)。 Abstract:  o enhance the transfer rate and real-time of virtual instrument performance, expand scope of monitoring, this paper uses the VCs software platform to design a fully functional virtual oscilloscope. Compared with traditional virtual oscilloscope, this system adopts the embedded system to complete the data acquisition, industrial Ethernet as the transmission medium used by the linear interpolation algorithm and multi-threaded programming ideas, namely to achieve waveform display, parameter calculation, spectrum analysis and waveform storage and playback. Experimental results show that the virtual oscilloscope can accurately display the waveform with 20kHz sampling frequency, and achieve the desired targets.

    標(biāo)簽: 以太網(wǎng) 虛擬 波器設(shè)計(jì)

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

    上傳用戶:wbwyl

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久先锋资源| 一区二区91| 久久免费视频在线观看| 制服丝袜亚洲播放| 91久久精品视频| 国产一区视频在线观看免费| 国产精品久久福利| 国产精品理论片在线观看| 欧美电影打屁股sp| 欧美国产一区在线| 亚洲欧美久久久| 小处雏高清一区二区三区| 亚洲宅男天堂在线观看无病毒| 一区二区三区视频在线 | 午夜精品视频一区| 亚洲在线观看视频| 性久久久久久久久久久久| 久久美女性网| 欧美日韩午夜精品| 国产精品亚洲一区| 经典三级久久| 亚洲免费成人av| 欧美影院在线| 欧美色欧美亚洲另类七区| 欧美日韩精品免费看| 欧美日韩免费一区二区三区视频| 国产午夜精品视频| 日韩视频一区二区在线观看 | 夜夜爽99久久国产综合精品女不卡 | 欧美日韩免费在线视频| 亚洲国产精品尤物yw在线观看| 欧美电影资源| 欧美在线视频全部完| 一本综合久久| 欧美日韩综合一区| aⅴ色国产欧美| 久久女同精品一区二区| 欧美激情亚洲| 亚洲欧美日韩综合国产aⅴ| 欧美一区二区三区在线视频| 久久综合色一综合色88| 欧美色123| 久久成人18免费观看| 国产精品久久久久国产a级| 国产亚洲欧美另类一区二区三区| 欧美巨乳波霸| 国产区欧美区日韩区| 久久久国产成人精品| 国产欧美亚洲精品| 欧美国产高潮xxxx1819| 亚洲一区自拍| 亚洲国产电影| 国产精品国产三级国产a| 欧美激情一区二区三区四区| 日韩视频精品在线| 夜夜精品视频一区二区| 亚洲一区二区三区视频播放| 亚洲夜晚福利在线观看| 亚洲黄色大片| 欧美午夜寂寞影院| 亚洲高清在线播放| 久久只有精品| 一本色道久久综合亚洲精品小说| 久久久久91| 欧美成人日本| 99国产精品久久久久老师| 国产伦精品免费视频| 国产亚洲欧洲| 91久久久久久国产精品| 国产乱码精品一区二区三区不卡| 久久精品国产精品亚洲精品| 亚洲精品中文字幕有码专区| 国产精品久久久久影院色老大| 欧美日本成人| 欧美日韩国产在线观看| 国内精品视频久久| 好吊妞**欧美| 亚洲欧美日韩在线不卡| 久久另类ts人妖一区二区| 欧美视频一区| 亚洲国产清纯| 一区二区三区高清视频在线观看| 欧美日韩亚洲一区二区三区在线| av成人免费| 亚洲人永久免费| 在线观看亚洲a| 国产欧美日韩精品专区| 免费亚洲一区二区| 欧美亚洲视频在线观看| 麻豆精品精华液| 免费日韩av电影| 亚洲欧洲一区二区三区久久| 欧美日韩卡一卡二| 欧美性色综合| 极品尤物一区二区三区| 91久久精品美女| 性久久久久久久| 欧美性天天影院| 99精品热6080yy久久| 久久久久久亚洲精品杨幂换脸| 麻豆精品一区二区综合av| 国产精品h在线观看| 亚洲欧美视频在线| 一区二区三区在线观看欧美| 欧美成va人片在线观看| 欧美国产高潮xxxx1819| 极品日韩久久| 亚洲欧美日韩在线高清直播| 欧美激情第一页xxx| 国产日韩一区二区三区在线播放 | 99精品99久久久久久宅男| 在线成人国产| 亚洲日本中文字幕| 日韩视频在线观看一区二区| 欧美午夜精品久久久| 一区二区三区无毛| 欧美在线免费| 国内精品视频666| 亚洲网址在线| 国产色视频一区| 午夜精品久久99蜜桃的功能介绍| 国内精品久久久久久影视8 | 欧美日韩在线另类| 久久爱www久久做| 日韩一区二区精品葵司在线| 久久久久五月天| 国产精品拍天天在线| 在线观看欧美| 在线一区二区三区四区五区| 欧美日韩在线免费| 影音先锋一区| 亚洲欧美激情一区| 国产精品卡一卡二卡三| 亚洲欧美日韩区| 黄色成人在线网址| 欧美高清视频免费观看| 亚洲欧美日韩久久精品| 亚洲国产高清一区| 国产精品专区一| 欧美大片在线看免费观看| 午夜视频一区二区| 亚洲精品一线二线三线无人区| 国产精品日韩精品欧美在线 | 亚洲国产一区二区三区青草影视| 欧美色精品天天在线观看视频| 久久精品视频网| 99精品99| 在线观看成人av电影| 国产精品免费看| 欧美激情视频在线播放 | 欧美自拍偷拍| 日韩视频免费| 精品电影一区| 国产精品久久久久久影视| 欧美激情第1页| 久久免费午夜影院| 欧美亚洲一级| 亚洲天堂成人在线观看| 亚洲人成啪啪网站| 激情综合色丁香一区二区| 国产精品日韩电影| 国产精品v亚洲精品v日韩精品| 免费永久网站黄欧美| 久久国产精品72免费观看| 亚洲一区二区三区精品视频| 欧美一区在线直播| 99riav1国产精品视频| 美女成人午夜| 日韩西西人体444www| 在线观看一区二区视频| 国产午夜精品麻豆| 国产精品一区在线观看| 国产精品va在线播放我和闺蜜| 欧美激情影音先锋| 欧美二区在线| 欧美成人午夜77777| 久久人人97超碰国产公开结果 | 欧美日韩国产精品自在自线| 欧美va天堂va视频va在线| 久久婷婷av| 久久久久久久久岛国免费| 久久精品一区二区国产| 欧美在线视频免费| 久久精品欧美日韩| 久久精品国产亚洲aⅴ| 久久先锋资源| 欧美va天堂va视频va在线| 欧美激情女人20p| 欧美精品一区二区蜜臀亚洲 | 99视频精品全国免费| 亚洲精品日产精品乱码不卡| 亚洲人妖在线| 一道本一区二区| 亚洲午夜一区二区| 欧美亚洲免费高清在线观看| 久久精品在线播放| 欧美国产日产韩国视频| 欧美色一级片| 国产亚洲欧美一区二区三区| 激情视频一区二区|