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

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

pull

  • BGA布線指南

    BGA布線指南 BGA CHIP PLACEMENT AND ROUTING RULE BGA是PCB上常用的組件,通常CPU、NORTH BRIDGE、SOUTH BRIDGE、AGP CHIP、CARD BUS CHIP…等,大多是以bga的型式包裝,簡言之,80﹪的高頻信號及特殊信號將會由這類型的package內拉出。因此,如何處理BGA package的走線,對重要信號會有很大的影響。 通常環繞在BGA附近的小零件,依重要性為優先級可分為幾類: 1. by pass。 2. clock終端RC電路。 3. damping(以串接電阻、排組型式出現;例如memory BUS信號) 4. EMI RC電路(以dampin、C、pull height型式出現;例如USB信號)。 5. 其它特殊電路(依不同的CHIP所加的特殊電路;例如CPU的感溫電路)。 6. 40mil以下小電源電路組(以C、L、R等型式出現;此種電路常出現在AGP CHIP or含AGP功能之CHIP附近,透過R、L分隔出不同的電源組)。 7. pull low R、C。 8. 一般小電路組(以R、C、Q、U等型式出現;無走線要求)。 9. pull height R、RP。 中文DOC,共5頁,圖文并茂

    標簽: BGA 布線

    上傳時間: 2013-04-24

    上傳用戶:cxy9698

  • 74LS48.pdf

    英文描述: BCD-to-Seven-Segment Decoder Driver(Internal pull-up outputs) 中文描述: BCD碼到七段解碼器驅動程序(內部上拉輸出)

    標簽: 74 48 LS

    上傳時間: 2013-07-13

    上傳用戶:cc1015285075

  • 基于凌陽單片機的步進電機加減速的控制方法

    提出一種基于凌陽單片機的步進電機加減速的控制方法。采用凌陽科技推出的16位結構工控單片機SPMC75F2413A為控制器,由Allegro公司生產的兩相步進電機專用驅動器件SLA7042M構成步進電機的驅動電路,在傳統的3段直線加減速控制算法基礎上增加至7段S形曲線加減速過程,控制步進電機的啟動和停止。實驗結果表明,該控制方法克服了直線加減速中不連續、易造成系統沖擊的問題,整個系統實現柔性控制,電機啟動、停止連續性能提高30%。 Abstract:  The method of controlled stepping motor is referred based on SPMC75F2413A MCU, which adopts the 16 knots SPMC75F2413A MCU as the controller. The special-purpose actuation chip SLA7042M of two stepping motor produced by Allegro Corporation constituted to actuation electric circuit. The purpose of increasing to seven section of S shape curve based on the traditional three sections of straight line is to control the start and stop process of stepping motor. The experimental results show that the control method solves easy to pull-out and overshot problems. The overall system realizes flexible control, and the performance of motor start or stop continuity is increased 30%

    標簽: 凌陽單片機 步進電機 控制方法

    上傳時間: 2013-12-08

    上傳用戶:jiangfire

  • PCA954X家庭的I C SMBus多路復用器與開關

    The Philips family of Multiplexers and Switches consists of bi-directional translating switches controlled via the I2C or SMBus to fan out an upstream SCL/SDA pair to 2, 4 or 8 downstream channels of SCx/SDx pairs. The Multiplexers allow only one downstream channel to be selected at a time, while the Switches allow any individual downstream channel or combination of downstream channels to be selected, depending on the content of the programmable control register. Once one or several channels have been selected, the device acts as a wire, allowing the master on the upstream channel to send commands to devices on all the active downstream channels, and devices on the active downstream channels to communicate with each other and the master. External pull-up resistors are used to pull each individual channel up to the desired voltage level. Combined interrupt output and hardware reset input are device options that are featured.

    標簽: SMBus 954X PCA 954

    上傳時間: 2013-10-11

    上傳用戶:dianxin61

  • 68HC05K0 Infra-red Remote Cont

    The MC68HC05K0 is a low cost, low pin countsingle chip microcomputer with 504 bytes of userROM and 32 bytes of RAM. The MC68HC05K0 isa member of the 68HC05K series of devices whichare available in 16-pin DIL or SOIC packages.It uses the same CPU as the other devices in the68HC05 family and has the same instructions andregisters. Additionally, the device has a 15-stagemulti-function timer and 10 general purposebi-directional I/0 lines. A mask option is availablefor software programmable pull-downs on all ofthe I/O pins and four of the pins are capable ofgenerating interrupts.The device is ideally suited for remote-controlkeyboard applications because the pull-downs andthe interrupt drivers on the port pins allowkeyboards to be built without any externalcomponents except the keys themselves. There isno need for external pull-up or pull-down resistors,or diodes for wired-OR interrupts, as these featuresare already designed into the device.

    標簽: Infra-red Remote Cont 05K

    上傳時間: 2014-01-24

    上傳用戶:zl5712176

  • DS1820 C51 子程序 (一線數據傳輸)

    //芯片資料請到www.elecfans.com查找 //DS1820 C51 子程序//這里以11.0592M晶體為例,不同的晶體速度可能需要調整延時的時間//sbit DQ =P2^1;//根據實際情況定義端口 typedef unsigned char byte;typedef unsigned int  word; //延時void delay(word useconds){  for(;useconds>0;useconds--);} //復位byte ow_reset(void){  byte presence;  DQ = 0; //pull DQ line low  delay(29); // leave it low for 480us  DQ = 1; // allow line to return high  delay(3); // wait for presence  presence = DQ; // get presence signal  delay(25); // wait for end of timeslot  return(presence); // presence signal returned}     // 0=presence, 1 = no part //從 1-wire 總線上讀取一個字節byte read_byte(void){  byte i;  byte value = 0;  for (i=8;i>0;i--)  {    value>>=1;    DQ = 0; // pull DQ low to start timeslot    DQ = 1; // then return high    delay(1);  //for (i=0; i<3; i++);     if(DQ)value|=0x80;    delay(6); // wait for rest of timeslot  }  return(value);} //向 1-WIRE 總線上寫一個字節void write_byte(char val){  byte i;  for (i=8; i>0; i--) // writes byte, one bit at a time  {    DQ = 0; // pull DQ low to start timeslot    DQ = val&0x01;    delay(5); // hold value for remainder of timeslot    DQ = 1;    val=val/2;  }  delay(5);} //讀取溫度char Read_Temperature(void){  union{    byte c[2];    int x;  }temp;   ow_reset();  write_byte(0xCC); // Skip ROM  write_byte(0xBE); // Read Scratch Pad  temp.c[1]=read_byte();  temp.c[0]=read_byte();  ow_reset();  write_byte(0xCC); //Skip ROM  write_byte(0x44); // Start Conversion  return temp.x/2;}

    標簽: 1820 C51 DS 程序

    上傳時間: 2013-11-03

    上傳用戶:hongmo

  • 3.3v看門狗芯片

    The STWD100 watchdog timer circuits are self-contained devices which prevent systemfailures that are caused by certain types of hardware errors (non-responding peripherals,bus contention, etc.) or software errors (bad code jump, code stuck in loop, etc.).The STWD100 watchdog timer has an input, WDI, and an output, WDO (see Figure 2). Theinput is used to clear the internal watchdog timer periodically within the specified timeoutperiod, twd (see Section 3: Watchdog timing). While the system is operating correctly, itperiodically toggles the watchdog input, WDI. If the system fails, the watchdog timer is notreset, a system alert is generated and the watchdog output, WDO, is asserted (seeSection 3: Watchdog timing).The STWD100 circuit also has an enable pin, EN (see Figure 2), which can enable ordisable the watchdog functionality. The EN pin is connected to the internal pull-downresistor. The device is enabled if the EN pin is left floating.

    標簽: 3.3 看門狗 芯片

    上傳時間: 2013-10-22

    上傳用戶:taiyang250072

  • Enhydra的KXML是一個只占很小存儲空間的XML語法分析程序

    Enhydra的KXML是一個只占很小存儲空間的XML語法分析程序,對于J2ME應用程序非常適合。它有一個非常獨特的DOM操作方法和被稱為pull的語法分析方法

    標簽: Enhydra KXML XML 存儲空間

    上傳時間: 2015-03-27

    上傳用戶:BOBOniu

  • === === =時鐘20:6=== === === == 應先初始化狀態寄存器 tx1714 EQU 7FFH PA EQU 05H PB EQU 06H PC EQU 07H

    === === =時鐘20:6=== === === == 應先初始化狀態寄存器 tx1714 EQU 7FFH PA EQU 05H PB EQU 06H PC EQU 07H PD EQU 20H IAR EQU 00H 間接尋址寄存器 TMR0 EQU 01H 定時器 STATUS EQU 03H 狀態寄存器 BSR EQU 04H bank選擇寄存器 PORTA EQU 05H I/0端口寄存器 PORTB EQU 06H I/0端口寄存器 PORTC EQU 07H I/0端口寄存器 PORTD EQU 20H I/0端口寄存器 pull EQU 21H pull-High上拉寄存器 WAKEUP EQU 22H 喚醒控制寄存器--被用來設定watchdog允許和禁止 IRQM EQU 23H 中斷屏蔽寄存器 IRQF EQU 24H 中斷標志寄存器 WDTSEL EQU 25H

    標簽: EQU 1714 7FFH 05H

    上傳時間: 2013-12-13

    上傳用戶:chfanjiang

  • 使用kxml解析xml

    使用kxml解析xml,兩種方式一種pull一種doc

    標簽: kxml xml

    上傳時間: 2013-12-26

    上傳用戶:leehom61

主站蜘蛛池模板: 嵊泗县| 长顺县| 苍南县| 扶绥县| 南陵县| 天镇县| 成都市| 化德县| 合作市| 邢台市| 新宾| 平舆县| 乾安县| 桂东县| 茶陵县| 金湖县| 礼泉县| 黄大仙区| 永德县| 紫金县| 惠水县| 大同县| 武宣县| 吴江市| 遵义县| 宁晋县| 盘锦市| 合肥市| 贵港市| 长顺县| 东乡族自治县| 双鸭山市| 奈曼旗| 黄骅市| 长泰县| 昭苏县| 日土县| 永年县| 墨竹工卡县| 大埔区| 即墨市|