亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产午夜精品一区二区三区欧美| 亚洲高清资源综合久久精品| 日韩视频一区二区| 国产欧美综合在线| 国产精品v片在线观看不卡| 欧美成人精品一区| 久久综合网络一区二区| 久久成人羞羞网站| 亚洲一二三区视频在线观看| 亚洲三级视频| 亚洲激情自拍| 亚洲日本欧美| 亚洲精品免费在线| 亚洲欧洲精品成人久久奇米网 | 国产日韩综合| 国产精品欧美精品| 国产精品www色诱视频| 欧美视频三区在线播放| 欧美日韩午夜| 欧美小视频在线| 国产精品久久久久久久久久三级| 欧美日韩国产a| 久久久久久久999| 猫咪成人在线观看| 欧美精品18+| 欧美日韩在线不卡| 欧美日韩一区二区视频在线| 国产精品久久福利| 国产亚洲精品aa| 国产视频久久久久| 亚洲电影自拍| 这里只有精品视频在线| 午夜精品久久久久久99热| 久久精品国产99国产精品| 久久综合图片| 欧美日本高清| 国产色综合久久| 最新69国产成人精品视频免费| 亚洲免费观看视频| 午夜精品一区二区三区在线视| 久久成人亚洲| 欧美精品在欧美一区二区少妇| 国产精品久久波多野结衣| 激情久久久久久久| 一区二区三区视频在线播放| 久久成人精品无人区| 欧美成人一区二区在线| 国产精品美女在线| 亚洲国内自拍| 欧美制服丝袜| 欧美日韩一区二区欧美激情| 狠狠干狠狠久久| 亚洲夜间福利| 欧美成人精品| 国产一区二区三区在线观看精品 | 亚洲第一二三四五区| 99re8这里有精品热视频免费| 午夜精品久久久久久久99水蜜桃 | 亚洲黄网站黄| 欧美在线91| 欧美色播在线播放| 亚洲高清激情| 性做久久久久久久久| 欧美顶级少妇做爰| 国语精品中文字幕| 亚洲视频成人| 欧美大胆人体视频| 国产毛片一区二区| 99视频热这里只有精品免费| 老司机久久99久久精品播放免费| 国产精品区一区二区三区| 国内视频一区| 亚洲免费播放| 亚洲国产精品成人| 欧美成人午夜| 欧美久久久久| 狠狠久久婷婷| 国产精品久久久久久久免费软件| 久久久水蜜桃| 亚洲国产老妈| 久久中文精品| 国产亚洲精品aa| 亚洲欧美日韩国产另类专区| 国产乱理伦片在线观看夜一区| 亚洲永久在线| 亚洲国产天堂久久国产91| 欧美成人有码| 亚洲精品日韩欧美| 最新亚洲一区| 亚洲欧美日韩网| 欧美国产高清| 国产一区二区成人| 在线亚洲免费视频| 欧美激情91| 在线日本高清免费不卡| 免费毛片一区二区三区久久久| 午夜精品福利在线| 国产精品一二三视频| 亚洲欧美日韩精品久久久| 国产精品久久中文| 亚洲综合丁香| 在线观看精品一区| 午夜在线一区| 美女主播视频一区| 欧美日韩国产黄| 国产欧美日韩综合一区在线播放| 欧美视频在线一区二区三区| 国产综合色产在线精品| 欧美日韩在线不卡| 一本色道久久综合亚洲二区三区 | 国产精品外国| 久久久欧美精品sm网站| 欧美日韩高清不卡| 一区二区亚洲欧洲国产日韩| 欧美在线电影| 欧美亚洲成人精品| 国内精品久久久久久久影视麻豆| 韩国精品主播一区二区在线观看| 午夜亚洲激情| 黄色在线一区| 久久久久久久尹人综合网亚洲 | 久久性天堂网| 国产一区二区三区电影在线观看| 亚洲一区网站| 国产视频精品免费播放| 亚洲综合999| 国产精品普通话对白| 制服丝袜亚洲播放| 欧美啪啪成人vr| 亚洲理论在线观看| 欧美3dxxxxhd| 一本久久综合亚洲鲁鲁五月天| 免费在线观看精品| 亚洲精品中文字幕女同| 欧美视频一区二| 午夜精品久久久99热福利| 国产精品国产三级国产普通话三级 | 午夜日韩电影| 国产精品永久| 欧美女主播在线| 久久狠狠婷婷| 在线日韩av永久免费观看| 欧美国产在线电影| 日韩图片一区| 国产三级精品在线不卡| 久久久久高清| 日韩一区二区久久| 国产亚洲精品久久久久动| 欧美.www| 性视频1819p久久| 日韩视频在线你懂得| 国产一区视频网站| 欧美黄色精品| 久久久一二三| 亚洲欧美日韩系列| 亚洲午夜视频| 亚洲三级性片| 最近中文字幕日韩精品 | 国产精品日韩在线| 久久久久久91香蕉国产| 亚洲一区影院| 亚洲男人的天堂在线aⅴ视频| 亚洲国产一二三| 狠狠色狠色综合曰曰| 国内伊人久久久久久网站视频| 国产精品视频yy9099| 欧美韩日亚洲| 欧美岛国在线观看| 久久久久久久999精品视频| 久久av一区| 久久亚洲私人国产精品va| 久久久一二三| 欧美日韩精品免费观看视频| 久久夜色精品国产噜噜av| 久久精品亚洲精品国产欧美kt∨| 亚洲欧美国产视频| 久久久久久久久综合| 久久久亚洲精品一区二区三区 | 一本色道**综合亚洲精品蜜桃冫 | 在线视频欧美日韩精品| 在线观看视频欧美| 99国内精品久久| 香蕉久久一区二区不卡无毒影院 | 国产精品日韩精品欧美在线| 国产精品视频久久| 激情小说亚洲一区| 日韩一二三区视频| 亚洲欧美另类在线| 久久久高清一区二区三区| 一区二区三区国产在线观看| 午夜精品久久久久久99热软件| 欧美一区二区精品| 欧美怡红院视频一区二区三区| 欧美另类专区| 91久久国产综合久久91精品网站| 亚洲全部视频| 久久综合狠狠综合久久综青草 | 国产一区二区三区在线观看精品 | 韩国视频理论视频久久| 亚洲主播在线播放|