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

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

input-<b>OUTPUT</b>

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

    /*--------- 8051內(nèi)核特殊功能寄存器 -------------*/ sfr ACC = 0xE0;             //累加器 sfr B = 0xF0;  //B 寄存器 sfr PSW    = 0xD0;           //程序狀態(tài)字寄存器 sbit CY    = PSW^7;       //進位標(biāo)志位 sbit AC    = PSW^6;        //輔助進位標(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;        //時鐘輸出和喚醒控制寄存器 sfr CLK_DIV  = 0x97;          //時鐘分頻控制寄存器 sfr BUS_SPEED = 0xA1;        //總線速度控制寄存器 /*----------- 中斷控制特殊功能寄存器 --------------*/ sfr IE     = 0xA8;           //中斷允許寄存器 sbit EA    = IE^7;  //總中斷允許位  sbit ELVD  = IE^6;           //低電壓檢測中斷控制位 8051

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

    上傳時間: 2013-10-30

    上傳用戶:yxgi5

  • TLC2543 中文資料

    TLC2543是TI公司的12位串行模數(shù)轉(zhuǎn)換器,使用開關(guān)電容逐次逼近技術(shù)完成A/D轉(zhuǎn)換過程。由于是串行輸入結(jié)構(gòu),能夠節(jié)省51系列單片機I/O資源;且價格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應(yīng)用。 TLC2543的特點 (1)12位分辯率A/D轉(zhuǎn)換器; (2)在工作溫度范圍內(nèi)10μs轉(zhuǎn)換時間; (3)11個模擬輸入通道; (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

    上傳時間: 2013-11-19

    上傳用戶:shen1230

  • AVR單片機數(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 單片機 數(shù)碼管

    上傳時間: 2013-10-21

    上傳用戶:13788529953

  • 西門子S7-300 PLC模擬量轉(zhuǎn)換

    Analog Inputs and Outputs in an S7 PLC are represented in the PLC as a 16-bit integer. Over the nominal span of the analog input or output, the value of this integer will range between - 27648 and +27648. However, it is easier to use the analog values if they are scaled to the same units and ranges as the process being controlled. This applications tip describes methods for scaling analog values to and from engineering units.

    標(biāo)簽: 300 PLC 西門子 模擬量

    上傳時間: 2013-11-17

    上傳用戶:3294322651

  • PCA9555 16bit I2C-bus and SMBu

    The PCA9555 is a 24-pin CMOS device that provides 16 bits of General Purpose parallelInput/Output (GPIO) expansion for I2C-bus/SMBus applications and was developed toenhance the NXP Semiconductors family of I2C-bus I/O expanders. The improvementsinclude higher drive capability, 5 V I/O tolerance, lower supply current, individual I/Oconfiguration, and smaller packaging. I/O expanders provide a simple solution whenadditional I/O is needed for ACPI power switches, sensors, push buttons, LEDs, fans, etc.The PCA9555 consists of two 8-bit Configuration (Input or Output selection); Input, Outputand Polarity Inversion (active HIGH or active LOW operation) registers. The systemmaster can enable the I/Os as either inputs or outputs by writing to the I/O configurationbits. The data for each Input or Output is kept in the corresponding Input or Outputregister. The polarity of the read register can be inverted with the Polarity Inversionregister. All registers can be read by the system master. Although pin-to-pin and I2C-busaddress compatible with the PCF8575, software changes are required due to theenhancements, and are discussed in Application Note AN469.

    標(biāo)簽: C-bus 9555 SMBu PCA

    上傳時間: 2013-11-13

    上傳用戶:fredguo

  • 8-bit I2C-bus and SMBus IO port with reset

    The PCA9557 is a silicon CMOS circuit which provides parallel input/output expansion for SMBus and I2C-bus applications. The PCA9557 consists of an 8-bit input port register, 8-bit output port register, and an I2C-bus/SMBus interface. It has low current consumption and a high-impedance open-drain output pin, IO0. The system master can enable the PCA9557’s I/O as either input or output by writing to the configuration register. The system master can also invert the PCA9557 inputs by writing to the active HIGH polarity inversion register. Finally, the system master can reset the PCA9557 in the event of a time-out by asserting a LOW in the reset input. The power-on reset puts the registers in their default state and initializes the I2C-bus/SMBus state machine. The RESET pin causes the same reset/initialization to occur without de-powering the part.

    標(biāo)簽: C-bus SMBus reset port

    上傳時間: 2014-01-18

    上傳用戶:bs2005

  • DUAL DIGITAL ISOLATORS

    The ISO7220 and ISO7221 are dual-channel digital isolators. To facilitate PCB layout, the channels are orientedin the same direction in the ISO7220 and in opposite directions in the ISO7221. These devices have a logic inputand output buffer separated by TI’s silicon-dioxide (SiO2) isolation barrier, providing galvanic isolation of up to4000 V. Used in conjunction with isolated power supplies, these devices block high voltage, isolate grounds, andprevent noise currents on a data bus or other circuits from entering the local ground and interfering with ordamaging sensitive circuitry.

    標(biāo)簽: ISOLATORS DIGITAL DUAL

    上傳時間: 2013-10-24

    上傳用戶:hbsunhui

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

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

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

    上傳時間: 2013-11-06

    上傳用戶:smallfish

  • NCV7356單線CANBUS收發(fā)器數(shù)據(jù)手冊

    The NCV7356 is a physical layer device for a single wire data linkcapable of operating with various Carrier Sense Multiple Accesswith Collision Resolution (CSMA/CR) protocols such as the BoschController Area Network (CAN) version 2.0. This serial data linknetwork is intended for use in applications where high data rate is notrequired and a lower data rate can achieve cost reductions in both thephysical media components and in the microprocessor and/ordedicated logic devices which use the network.The network shall be able to operate in either the normal data ratemode or a high-speed data download mode for assembly line andservice data transfer operations. The high-speed mode is onlyintended to be operational when the bus is attached to an off-boardservice node. This node shall provide temporary bus electrical loadswhich facilitate higher speed operation. Such temporary loads shouldbe removed when not performing download operations.The bit rate for normal communications is typically 33 kbit/s, forhigh-speed transmissions like described above a typical bit rate of83 kbit/s is recommended. The NCV7356 features undervoltagelockout, timeout for faulty blocked input signals, output blankingtime in case of bus ringing and a very low sleep mode current.

    標(biāo)簽: CANBUS 7356 NCV 單線

    上傳時間: 2013-10-24

    上傳用戶:s藍莓汁

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

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

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

    上傳時間: 2013-10-13

    上傳用戶:lml1234lml

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一本色道88久久加勒比精品 | 亚洲午夜女主播在线直播| 91久久久在线| 欧美性猛交视频| 久久男人av资源网站| 欧美一区二区三区四区在线| 欧美一区视频| 欧美一区在线看| 久久久久久九九九九| 久久综合九色综合欧美狠狠| 欧美大片免费| 国产精品国产自产拍高清av王其| 国产精品视频xxxx| 国内成人在线| 亚洲片在线观看| 亚洲人成毛片在线播放| 亚洲一级黄色片| 久久九九精品| 欧美日韩亚洲另类| 国产一区二区三区四区老人 | 免费高清在线视频一区·| 欧美成人dvd在线视频| 欧美韩日视频| 国产精品va在线| 欧美手机在线视频| 国产香蕉久久精品综合网| 亚洲日本电影| 久久激情视频| 国产精品性做久久久久久| 最新精品在线| 久久精品国产2020观看福利| 欧美日韩视频一区二区| 国产精品视频精品| 红桃视频欧美| 中国成人黄色视屏| 欧美成人一区二区三区| 国语自产精品视频在线看一大j8 | 欧美日韩一区国产| 精久久久久久| 久久九九热re6这里有精品| 国产精品成人国产乱一区| 亚洲国产一二三| 久久久久久午夜| 国产精品一区二区欧美| 中文久久精品| 欧美日韩影院| 在线亚洲观看| 久久久久看片| 精品va天堂亚洲国产| 久久精品国产一区二区三 | 欧美成人资源| 国产亚洲欧美另类中文| 午夜精品99久久免费| 国产精品久久久久久久久久久久久| 在线视频国产日韩| 另类激情亚洲| 最近中文字幕日韩精品 | 久久资源在线| 在线成人av网站| 免费不卡在线观看av| 亚洲国产专区校园欧美| 欧美乱人伦中文字幕在线| 日韩午夜在线观看视频| 欧美另类视频在线| 亚洲一二区在线| 国产精品一区二区在线观看| 欧美一区二区三区四区在线观看| 国产精品一区视频网站| 久久九九国产| 亚洲精品欧美激情| 国产精品蜜臀在线观看| 久久国产免费| 亚洲日本激情| 国产精品成人免费精品自在线观看| 亚洲在线日韩| 在线观看日韩av电影| 欧美区在线播放| 亚洲欧美国产三级| 亚洲第一区在线观看| 欧美日韩成人激情| 欧美一区二区国产| 亚洲国产网站| 国产精品外国| 欧美不卡视频一区| 亚洲欧美日韩精品久久奇米色影视| 国产午夜亚洲精品不卡| 欧美激情视频网站| 性久久久久久久久久久久| 在线精品视频在线观看高清| 欧美视频日韩视频| 久久综合99re88久久爱| 99在线精品免费视频九九视| 国产亚洲成av人在线观看导航 | 欧美喷潮久久久xxxxx| 午夜综合激情| 亚洲日本一区二区三区| 国产日韩综合| 欧美日韩在线观看一区二区| 欧美在线观看天堂一区二区三区| 亚洲精品国产日韩| 黄色成人在线免费| 欧美日韩一区二区三区在线观看免| 久久精品日产第一区二区| 亚洲免费av片| 亚洲大片免费看| 国产亚洲欧美一区在线观看| 欧美精品亚洲| 久久综合网色—综合色88| 亚洲综合国产| 99国产精品99久久久久久粉嫩 | 欧美全黄视频| 美女视频一区免费观看| 欧美一区成人| av不卡在线观看| 亚洲国产精品成人va在线观看| 国产精品美女一区二区在线观看| 欧美激情精品久久久久久变态| 欧美一区午夜精品| 亚洲欧美日韩在线高清直播| 99国内精品久久| 亚洲国产日韩欧美在线99| 国产日韩精品一区二区三区在线| 欧美日韩免费区域视频在线观看| 欧美成人影音| 久久在线免费观看| 亚洲欧美不卡| 亚洲一区二区三区午夜| 亚洲美女中文字幕| 亚洲国产一区二区三区高清| 国产一区二区三区在线观看视频| 国产精品激情| 国产精品福利影院| 欧美日韩激情网| 欧美啪啪一区| 欧美日韩国产bt| 欧美激情中文字幕乱码免费| 麻豆精品一区二区综合av| 久久青草欧美一区二区三区| 久久尤物电影视频在线观看| 久久影院午夜论| 蜜桃av一区二区三区| 美日韩精品视频| 久久综合五月| 久久综合狠狠综合久久综合88| 久久中文字幕一区二区三区| 免播放器亚洲| 欧美日韩日本国产亚洲在线| 欧美日韩一区二区三区视频| 欧美日韩在线一区| 国产精品午夜视频| 国产欧亚日韩视频| 国产欧美日韩伦理| 狠狠色狠狠色综合日日91app| 久久久久久电影| 免费高清在线视频一区·| 欧美日韩国产va另类| 欧美日韩系列| 国产精品一区免费视频| 国产亚洲一区二区在线观看| 在线精品视频免费观看| 日韩一级免费| 欧美在线播放| 欧美.com| 国产精品porn| 在线观看91久久久久久| 亚洲精选大片| 午夜精品999| 快射av在线播放一区| 欧美体内she精视频| 国产一区二区电影在线观看 | 亚洲国产女人aaa毛片在线| 亚洲激情综合| 先锋影院在线亚洲| 欧美成人激情在线| 国产精品视频自拍| 亚洲国产黄色片| 亚洲深夜福利视频| 久久综合国产精品台湾中文娱乐网| 欧美精品在线观看播放| 黑人巨大精品欧美一区二区小视频| 亚洲精品系列| 久久av最新网址| 欧美色综合网| 亚洲国产精品成人va在线观看| 亚洲无线观看| 欧美国产亚洲精品久久久8v| 国产亚洲精品久久久| 一本色道久久综合亚洲精品婷婷| 久久精品国产精品亚洲综合| 欧美视频不卡中文| 亚洲啪啪91| 久久一区二区三区av| 国产亚洲精品久久久久婷婷瑜伽| 99综合精品| 欧美成人首页| 在线精品亚洲| 久久久久久国产精品mv| 国产欧美日韩激情| 亚洲自拍偷拍麻豆| 欧美日韩国产综合新一区|