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

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

In-<b>SYSTEM</b>

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

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

    標簽: 80C51 特殊功能寄存器 地址

    上傳時間: 2013-10-30

    上傳用戶:yxgi5

  • TLC2543 中文資料

    TLC2543是TI公司的12位串行模數轉換器,使用開關電容逐次逼近技術完成A/D轉換過程。由于是串行輸入結構,能夠節省51系列單片機I/O資源;且價格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應用。 TLC2543的特點 (1)12位分辯率A/D轉換器; (2)在工作溫度范圍內10μs轉換時間; (3)11個模擬輸入通道; (4)3路內置自測試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉換結束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導; (10)可編程輸出數據長度。 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);           }         } 

    標簽: 2543 TLC

    上傳時間: 2013-11-19

    上傳用戶:shen1230

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

    標簽: AVR 單片機 數碼管

    上傳時間: 2013-10-21

    上傳用戶:13788529953

  • 基于MT8880的一鍵撥號電話系統設計

      針對煤礦井下調度及緊急救援系統的需求,以DTMF編解碼模塊為核心,設計了具有自動撥號功能的新型電話系統。該系統利用MT8880對DTMF信號的編解碼功能實現一鍵撥號和遠程設置,通過檢測振鈴和忙音信號,完成自動摘機和掛機過程,配合AGC等外圍電路達到話音清晰流暢的效果。   Abstract:   To meet the demand for mine scheduling and emergency rescue system, with using DTMF signal codec as the core, a new telephone system was designed with automatic dialing function. In the system, the DTMF signal encoding and decoding function of MT8880 was used to achieve one-touch dialing and remote setting. The circuit detects the ringing and busy signal, and then completes automatic off-hook and hangup. With AGC(Automatic Gain Control) and other peripheral circuits, the voice was regulated to a clear and smooth effect.

    標簽: 8880 MT 撥號電話 系統設計

    上傳時間: 2014-11-18

    上傳用戶:ly1994

  • 基于AT89S52單片機的多功能音樂播放器

    介紹一種多功能音樂播放器,它是以AT89S52單片機為核心,并輔有一些外圍器件,采用匯編語言編寫程序,實現多功能音樂播放,歌曲自動循環播放和使用琴鍵自編曲目功能。此外,彩燈顯示歌曲節奏,按鍵跳轉到喜愛曲目,液晶顯示當前播英文曲目。并給出了系統軟硬件設計。 Abstract:  It introduces a multifunctional music player,taking AT89S52 single-chip microcomputer as hardware control core and using some peripheral elements.Programmes are compiled in assembly language to act as expected.There are two functional modes in this system.One is to make the music play automatically and consecutively,the other is to compose new songs through keys.In addition,lights show the pace of music and the English names can be displayed in the liquid crystal screen.With perfect combination of hardware and software,the music player can meet many music lovers’needs for multifunctional music player.And the hardware and software of the system are given.

    標簽: 89S S52 AT 89

    上傳時間: 2013-11-18

    上傳用戶:xiaodu1124

  • 基于AT89C2051的溫度監控系統的設計

    采用單片機AT89C2051實現溫度測量與控制,鍵盤和顯示電路實現溫度的設定、修改、清零以及當前溫度值的顯示,并對溫度超過上下限進行報警。闡述了該系統設計的硬件和軟件設計。 Abstract:  The system of temperature measuring and controling is realized based on AT89C2051.The keyboard and display circuit is designed,which can be used for setting and modifying temperature value,resetting and displaying the present temperature value.At the same time the warning circuit is also designed in the system,which can deal with the alarm when temperature exceeds the upper limit and the lower limit.The hardware and software design of the system are explained.

    標簽: C2051 2051 89C AT

    上傳時間: 2013-11-18

    上傳用戶:leehom61

  • 基于W77E58的跑步機聯網系統的開發

    對于傳統的跑步機無法聯機組網,保存歷史數據,實時調試等問題,介紹了一個由多臺跑步機通過RS-232串行總線與上位機相連組成的跑步機聯網系統。系統采用W77E58作為下位機核心控制器件,它具有雙串行通訊端口,其中一個串口用于與變頻器通訊,另一個串口則與上位機相連,構成跑步機網絡。 Abstract:  The traditional running machine can not be connected to a network, saving historical data, real time debug etc.In this paper,a new network system which is composed of running machines connected by a RS-232 communication bus is introduced.In the system,W77E58 is used as a core control unit.W77E58 has two serial ports,one is connected to the inverter and the other is connected to the PC. Thus a network appears.

    標簽: W77E58 跑步機 聯網系統

    上傳時間: 2014-12-27

    上傳用戶:哇哇哇哇哇

  • 基于ADuC841的膜片鉗放大器系統設計

    為降低成本和解決現有膜片鉗放大器系統中PC機的干擾問題,研究了一種基于單片機的膜片鉗放大器小系統。該系統采用ADI公司生產的ADuC841作為控制核心,并且配置相應的液晶顯示模塊LCM3202401。模擬電路部分采用高輸入阻抗的AD8627實現微電流信號的采集,并由后級電路進行信號的放大和電阻電容的補償。它具有硬件電路簡單、體積小、使用方便的特點。既可以單獨作為小系統實現采集和顯示,也可以通過紅外方式和PC機進行通訊,在PC機上進行信號的處理。 Abstract:  In order to reduce cost and resolve the interferential problem with PC in existing patch clamp amplifiers, a small patch clamp amplifier system design based on microcontroller is studied. It adopts a new high performance microconverter ADuC841 by the ADI as the control core in the system, configuring a liquid crystal module LCM3202401. In the analog circuit, AD8627 with high input impedance is used to detect the low current,signal magnification, as well as resistance and capacitance compensation are accomplished by subsequent circuits. It has the advantage of simple hardware circuit design, small volume and convenient operation. It can either be used as an independent system to measure and show signal detected or transmit to PC by infrared ray.

    標簽: ADuC 841 膜片鉗 放大器

    上傳時間: 2013-11-06

    上傳用戶:yy_cn

  • PROTEUS VSM在單片機系統仿真中的應用

    PROTEUS VSM在單片機系統仿真中的應用::介紹了單片機系統仿真工具PROTEUS VSM 及其在單片機系統仿真中的應用,給出了具體的應用實例,詳細地介紹了PROTEUS VSM 與Keil uVision3的接口方法。關鍵詞:單片機;Keil uVision3;仿真;外圍器件;PROTEUS VSM; Abstract:This paper introduces the simulation tool for M CU system —PROTEUS VSM , and presents the application ofPROTEUS VSM in MCU system simulation through an applicable example.The way of interfacing PROTEUS VSM to Keil uVision3is also presented in details.Keywords:MCU ;Keil uVision3;simulation;peripheral devices;PROTEUS VSM ;

    標簽: PROTEUS VSM 單片機 中的應用

    上傳時間: 2013-11-16

    上傳用戶:chenxichenyue

  • 基于DSP的新型柴油發電機勵磁控制系統研究

    在綜合分析諧波勵磁無刷同步發電機勵磁控制系統的基礎上,對其勵磁控制策略進行了研究,開發了一套基于DSP( TMS320F2812) 控制的新型柴油發電機勵磁控制系統,該系統采用參數自適應模糊PID 控制勵磁,選用交流采樣方式實時檢測各信號的瞬時特性,系統仿真結果以及在1 臺25 kW 工頻柴油發電機上的試驗結果證明了該控制器具有較好的電壓調節特性,系統穩態和暫態性能完全滿足發電機對勵磁系統的要求。關鍵詞:勵磁調節;模糊PID 控制;數字信號處理器;交流采樣 Abstract :According to the general analysis of the excitation cont rol system of the harmonious wave excitation brushless synchronous generator and it s characteristics ,a new type of diesel generator excitation cont rol system based on DSP( TMS320F2812) was designed. An adaptive fuzzy PID cont rol of excitation is used in this system. To detect the t ransient characteristics of the signals in a timely manner ,AC sampling was applied.The system simulation result s and the testing result s f rom a 25 kW diesel generator (50 Hz) can prove that the voltage regulation characteristics of the excitation cont rol system are very well ,and both the steadyOstate performance and the t ransient performance of the generator are also good.Key words :excitation cont rol ;fuzzy PID cont rol ;digital signal processor (DSP) ;AC sampling

    標簽: DSP 柴油發電機 勵磁控制 系統研究

    上傳時間: 2013-10-29

    上傳用戶:fxf126@126.com

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩 国产精品| 欧美高清在线一区| 午夜欧美大片免费观看| 欧美午夜精品一区| 欧美一级久久| 精品999成人| 欧美激情精品久久久久久蜜臀| 一本久久综合亚洲鲁鲁| 国产精品一卡| 欧美不卡福利| 亚洲欧美日韩国产成人精品影院| 国内精品免费午夜毛片| 欧美精品v日韩精品v国产精品 | 国产精品99免视看9| 亚洲性感美女99在线| 国内外成人免费激情在线视频网站| 麻豆91精品91久久久的内涵| 黄色工厂这里只有精品| 欧美三级特黄| 乱中年女人伦av一区二区| 在线一区二区三区四区| 亚洲国产精品黑人久久久| 国产精品国产三级国产aⅴ入口 | 中日韩美女免费视频网站在线观看| 国产日韩一区二区三区在线| 欧美日韩亚洲国产一区| 久久午夜羞羞影院免费观看| 午夜精品999| 99视频精品全国免费| 国产精自产拍久久久久久| 欧美国产高清| 久久久av毛片精品| 亚洲视频大全| 亚洲视频电影图片偷拍一区| 韩日成人av| 欧美亚州韩日在线看免费版国语版| 欧美高清一区二区| 鲁鲁狠狠狠7777一区二区| 久久爱另类一区二区小说| 亚洲一区二区成人在线观看| 99精品99| 99国产精品一区| 亚洲巨乳在线| 亚洲精品久久久久| 激情校园亚洲| 国产一区 二区 三区一级| 国产午夜精品视频| 国产色爱av资源综合区| 国产一区二区福利| 国产主播喷水一区二区| 欧美午夜大胆人体| 国产精品久久久久久亚洲调教| 欧美日韩成人在线| 欧美日韩成人| 国产精品青草久久| 国产亚洲一区二区三区在线播放| 国产欧美精品国产国产专区| 国产日韩精品一区二区浪潮av| 国产精品一级久久久| 国产综合av| 亚洲高清久久久| 亚洲精品一区二区三| 一本不卡影院| 先锋资源久久| 久久阴道视频| 欧美日韩国产精品成人| 国产麻豆午夜三级精品| 一区二区三区在线免费播放| 最新日韩在线视频| 一本久久a久久免费精品不卡| 一区二区精品在线| 欧美一区二区在线观看| 午夜在线电影亚洲一区| 久久久精品国产免大香伊| 久久午夜色播影院免费高清| 免费日韩av片| 欧美精品一级| 欧美体内she精视频| 国产日韩在线视频| 亚洲国产视频直播| 亚洲精品免费在线播放| 一本色道久久99精品综合| 欧美在线免费看| 免费观看日韩| 国产精品久久久久久久久果冻传媒 | 一区二区三区视频在线| 亚洲欧洲精品一区二区三区 | 亚洲欧美综合精品久久成人| 亚洲深夜福利| 亚洲免费小视频| 欧美一区二区视频观看视频| 久久久久看片| 美日韩在线观看| 亚洲一品av免费观看| 午夜宅男久久久| 久久九九99| 欧美午夜视频在线| 国产一区二区三区av电影| 亚洲国产99精品国自产| 亚洲一区二区在线视频 | 欧美日韩视频一区二区| 国产一区成人| 在线精品视频一区二区三四| 在线视频免费在线观看一区二区| 久久se精品一区二区| 欧美日韩伊人| 悠悠资源网亚洲青| 亚洲尤物在线| 欧美国产日韩二区| 海角社区69精品视频| 亚洲天堂成人在线视频| 久久琪琪电影院| 国产精品色网| 亚洲精品在线二区| 欧美va日韩va| 一区二区免费看| 久久久福利视频| 国产精品h在线观看| 亚洲高清视频在线观看| 午夜伦理片一区| 欧美高清在线精品一区| 国产欧美 在线欧美| 在线午夜精品| 欧美成人性网| 亚洲精品综合久久中文字幕| 久久亚洲春色中文字幕| 亚洲成人在线观看视频| 久久久久久黄| 国产欧美日韩麻豆91| 亚洲午夜视频在线| 欧美美女视频| 99这里只有精品| 欧美日韩综合在线免费观看| 亚洲日本aⅴ片在线观看香蕉| 久久久亚洲成人| 国产在线视频欧美| 久久高清福利视频| 国产毛片精品国产一区二区三区| 一区二区三区黄色| 欧美日韩黄色一区二区| 亚洲午夜视频在线观看| 国产精品男女猛烈高潮激情| 亚洲在线黄色| 国产女人精品视频| 亚洲天堂av在线免费观看| 欧美日韩一二三区| 亚洲人成网站在线播| av成人免费在线| 欧美日韩精品久久| 亚洲精品视频啊美女在线直播| 欧美精品日日鲁夜夜添| 亚洲一区二区精品在线| 国内成+人亚洲+欧美+综合在线| 久久九九全国免费精品观看| 黄色资源网久久资源365| 久久在线精品| 亚洲韩国青草视频| 欧美日韩亚洲网| 亚洲在线视频网站| 国产偷国产偷精品高清尤物| 免费观看在线综合| 亚洲一区二区影院| 国产一区导航| 欧美国产日本| 亚洲视频网在线直播| 国产精品亚洲成人| 久热综合在线亚洲精品| 宅男噜噜噜66一区二区 | 国模 一区 二区 三区| 免费在线观看日韩欧美| 亚洲香蕉在线观看| 黑人巨大精品欧美一区二区 | 亚洲欧洲精品一区二区三区| 国产精品大全| 欧美—级a级欧美特级ar全黄| 亚洲欧美日韩精品久久奇米色影视| 今天的高清视频免费播放成人| 欧美视频精品在线观看| 欧美凹凸一区二区三区视频| 久久爱另类一区二区小说| 在线亚洲+欧美+日本专区| 亚洲第一黄网| 国产欧美日韩亚洲一区二区三区| 欧美伦理91i| 欧美成人精品| 久久人人爽人人爽爽久久| 性色一区二区三区| 亚洲无线视频| 在线亚洲高清视频| 亚洲精品在线免费观看视频| 亚洲第一在线视频| 国产一级久久| 国产欧亚日韩视频| 国产精品视频一二三| 欧美日韩1区2区| 美国十次了思思久久精品导航| 亚洲综合视频在线| 亚洲午夜日本在线观看| 中文日韩欧美| 一区二区欧美国产|