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

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

time-delay Systems

  • 基于ATmega16的標記機控制系統

    介紹了當前普通標記機控制系統現狀及其存在缺點,給出氣動標記機及相頻修正PWM模式的工作原理。采用ATmega16單片機和USB轉換RS232接口器件CH341T實現驅動控制系統與PC的實時通訊,標記控制系統可升級到USB接口。采用基于ATmega16的相頻修正PWM替換555振蕩電路產生的PWM,可直接通過軟件調整PWM信號。使用達林頓三極管TIP122替代直流繼電器驅動高頻電磁閥,使得電磁閥驅動電路簡單,成本低廉。該控制系統已成功應用于氣動標記機。 Abstract:  In this paper,the actuality and demerit of the common gas marking machine control systems are described.The operation principle of the gas marking machine and the phase and frequency correct PWM of ATmega16is introduced.The real-time communication between the driving control system and PC by CH341T which its function is translated USB to RS232is realized,the control systems is updated grade to USB interface.The PWM signal can be adjustable by software for the555surge circuit was substituted by the phase and frequency.The high frequency electromagnetic value’s driving circuit by DC relay is replaced by TIP122,therefore,the circuit is become simple and the cost cheap.The control systems has been widely used in gas marking machine.

    標簽: ATmega 16 標記 控制系統

    上傳時間: 2013-10-18

    上傳用戶:1427796291

  • MT8870D DTMF解碼芯片

    Features• Complete DTMF Receiver• Low power consumption• Internal gain setting amplifier• Adjustable guard time• Central office quality• Power-down mode• Inhibit mode• Backward compatible withMT8870C/MT8870C-1Applications• Receiver system for British Telecom (BT) orCEPT Spec (MT8870D-1)• Paging systems• Repeater systems/mobile radio• Credit card systems• Remote control• Personal computers• Telephone answering machine

    標簽: 8870D 8870 DTMF MT

    上傳時間: 2013-11-20

    上傳用戶:mpquest

  • HT47R20A-1時基(Time Base)使用介紹

    HT47R20A-1時基(Time Base)使用介紹 HT47 系列單片機的時基可提供一個周期性超時時間周期以產生規則性的內部中斷。時基的時鐘來源可由掩膜選擇設定為WDT 時鐘、RTC 時鐘或指令時鐘(系統時鐘/4);其超時時間范圍可由掩膜選擇設定為“時鐘來源”/212~“時鐘來源”/215。如果時基發生超時現象,則其對應的中斷請求標志(TBF)會被置位,如果中斷允許,則產生一個中斷服務到08H 的地址。

    標簽: Base Time HT 47

    上傳時間: 2013-11-15

    上傳用戶:13925096126

  • PCA9516 5channel I2C hub

    The PCA9516 is a BiCMOS integrated circuit intended forapplication in I2C and SMBus systems.While retaining all the operating modes and features of the I2Csystem, it permits extension of the I2C-bus by buffering both the data(SDA) and the clock (SCL) lines, thus enabling five buses of 400 pF.The I2C-bus capacitance limit of 400 pF restricts the number ofdevices and bus length. Using the PCA9516 enables the systemdesigner to divide the bus into five segments off of a hub where anysegment to segment transition sees only one repeater delay.

    標簽: 5channel 9516 PCA I2C

    上傳時間: 2013-11-21

    上傳用戶:q123321

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

    標簽: microcontro Using 76X LPC

    上傳時間: 2013-12-30

    上傳用戶:Artemis

  • 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

  • 采用TüV認證的FPGA開發功能安全系統

    This white paper discusses how market trends, the need for increased productivity, and new legislation have accelerated the use of safety systems in industrial machinery. This TÜV-qualified FPGA design methodology is changing the paradigms of safety designs and will greatly reduce development effort, system complexity, and time to market. This allows FPGA users to design their own customized safety controllers and provides a significant competitive advantage over traditional microcontroller or ASIC-based designs. Introduction The basic motivation of deploying functional safety systems is to ensure safe operation as well as safe behavior in cases of failure. Examples of functional safety systems include train brakes, proximity sensors for hazardous areas around machines such as fast-moving robots, and distributed control systems in process automation equipment such as those used in petrochemical plants. The International Electrotechnical Commission’s standard, IEC 61508: “Functional safety of electrical/electronic/programmable electronic safety-related systems,” is understood as the standard for designing safety systems for electrical, electronic, and programmable electronic (E/E/PE) equipment. This standard was developed in the mid-1980s and has been revised several times to cover the technical advances in various industries. In addition, derivative standards have been developed for specific markets and applications that prescribe the particular requirements on functional safety systems in these industry applications. Example applications include process automation (IEC 61511), machine automation (IEC 62061), transportation (railway EN 50128), medical (IEC 62304), automotive (ISO 26262), power generation, distribution, and transportation. 圖Figure 1. Local Safety System

    標簽: FPGA 安全系統

    上傳時間: 2013-11-05

    上傳用戶:維子哥哥

  • WP151 - Xilinx FPGA的System ACE配置解決方案

    Design techniques for electronic systems areconstantly changing. In industries at the heart of thedigital revolution, this change is especially acute.Functional integration, dramatic increases incomplexity, new standards and protocols, costconstraints, and increased time-to-market pressureshave bolstered both the design challenges and theopportunities to develop modern electronic systems.One trend driving these changes is the increasedintegration of core logic with previously discretefunctions to achieve higher performance and morecompact board designs.

    標簽: System Xilinx FPGA 151

    上傳時間: 2014-12-28

    上傳用戶:康郎

  • xilinx Zynq-7000 EPP產品簡介

    The Xilinx Zynq-7000 Extensible Processing Platform (EPP) redefines the possibilities for embedded systems, giving system and software architects and developers a flexible platform to launch their new solutions and traditional ASIC and ASSP users an alternative that aligns with today’s programmable imperative. The new class of product elegantly combines an industrystandard ARMprocessor-based system with Xilinx 28nm programmable logic—in a single device. The processor boots first, prior to configuration of the programmable logic. This, along with a streamlined workflow, saves time and effort and lets software developers and hardware designers start development simultaneously. 

    標簽: xilinx Zynq 7000 EPP

    上傳時間: 2013-11-01

    上傳用戶:dingdingcandy

  • tcp ip協議詳解 中文版PDF

    很多不同的廠家生產各種型號的計算機,它們運行完全不同的操作系統,但TCP.IP協議族允許它們互相進行通信。這一點很讓人感到吃驚,因為它的作用已遠遠超出了起初的設想。T C P / I P起源于6 0年代末美國政府資助的一個分組交換網絡研究項目,到9 0年代已發展成為計算機之間最常應用的組網形式。它是一個真正的開放系統,因為協議族的定義及其多種實現可以不用花錢或花很少的錢就可以公開地得到。它成為被稱作“全球互聯網”或“因特網(Internet)”的基礎,該廣域網(WA N)已包含超過1 0 0萬臺遍布世界各地的計算機。本章主要對T C P / I P協議族進行概述,其目的是為本書其余章節提供充分的背景知識。 TCP.IP協議 縮略語 ACK (ACKnowledgment) TCP首部中的確認標志 API (Application Programming Interface) 應用編程接口 ARP (Address Resolution Protocol) 地址解析協議 ARPANET(Defense Advanced Research Project Agency NETwork) (美國)國防部遠景研究規劃局 AS (Autonomous System) 自治系統 ASCII (American Standard Code for Information Interchange) 美國信息交換標準碼 ASN.1 (Abstract Syntax Notation One) 抽象語法記法1 BER (Basic Encoding Rule) 基本編碼規則 BGP (Border Gateway Protocol) 邊界網關協議 BIND (Berkeley Internet Name Domain) 伯克利I n t e r n e t域名 BOOTP (BOOTstrap Protocol) 引導程序協議 BPF (BSD Packet Filter) BSD 分組過濾器 CIDR (Classless InterDomain Routing) 無類型域間選路 CIX (Commercial Internet Exchange) 商業互聯網交換 CLNP (ConnectionLess Network Protocol) 無連接網絡協議 CRC (Cyclic Redundancy Check) 循環冗余檢驗 CSLIP (Compressed SLIP) 壓縮的S L I P CSMA (Carrier Sense Multiple Access) 載波偵聽多路存取 DCE (Data Circuit-terminating Equipment) 數據電路端接設備 DDN (Defense Data Network) 國防數據網 DF (Don’t Fragment) IP首部中的不分片標志 DHCP (Dynamic Host Configuration Protocol) 動態主機配置協議 DLPI (Data Link Provider Interface) 數據鏈路提供者接口 DNS (Domain Name System) 域名系統 DSAP (Destination Service Access Point) 目的服務訪問點 DSLAM (DSL Access Multiplexer) 數字用戶線接入復用器 DSSS (Direct Sequence Spread Spectrum) 直接序列擴頻 DTS (Distributed Time Service) 分布式時間服務 DVMRP (Distance Vector Multicast Routing Protocol) 距離向量多播選路協議 EBONE (European IP BackbONE) 歐洲I P主干網 EOL (End of Option List) 選項清單結束 EGP (External Gateway Protocol) 外部網關協議 EIA (Electronic Industries Association) 美國電子工業協會 FCS (Frame Check Sequence) 幀檢驗序列 FDDI (Fiber Distributed Data Interface) 光纖分布式數據接口 FIFO (First In, First Out) 先進先出 FIN (FINish) TCP首部中的結束標志 FQDN (Full Qualified Domain Name) 完全合格的域名 FTP (File Transfer Protocol) 文件傳送協議 HDLC (High-level Data Link Control) 高級數據鏈路控制 HELLO 選路協議 IAB (Internet Architecture Board) Internet體系結構委員會 IANA (Internet Assigned Numbers Authority) Internet號分配機構 ICMP (Internet Control Message Protocol) Internet控制報文協議 IDRP (InterDomain Routing Protocol) 域間選路協議 IEEE (Institute of Electrical and Electronics Engineering) (美國)電氣與電子工程師協會 IEN (Internet Experiment Notes) 互聯網試驗注釋 IESG (Internet Engineering Steering Group) Internet工程指導小組 IETF (Internet Engineering Task Force) Internet工程專門小組 IGMP (Internet Group Management Protocol) Internet組管理協議 IGP (Interior Gateway Protocol) 內部網關協議 IMAP (Internet Message Access Protocol) Internet報文存取協議 IP (Internet Protocol) 網際協議 I RTF (Internet Research Task Force) Internet研究專門小組 IS-IS (Intermediate System to Intermediate System Protocol) 中間系統到中間系統協議 ISN (Initial Sequence Number) 初始序號 ISO (International Organization for Standardization) 國際標準化組織 ISOC (Internet SOCiety) Internet協會 LAN (Local Area Network) 局域網 LBX (Low Bandwidth X) 低帶寬X LCP (Link Control Protocol) 鏈路控制協議 LFN (Long Fat Net) 長肥網絡 LIFO (Last In, First Out) 后進先出 LLC (Logical Link Control) 邏輯鏈路控制 LSRR (Loose Source and Record Route) 寬松的源站及記錄路由 MBONE (Multicast Backbone On the InterNEt) Internet上的多播主干網 MIB (Management Information Base) 管理信息庫 MILNET (MILitary NETwork) 軍用網 MIME (Multipurpose Internet Mail Extensions) 通用I n t e r n e t郵件擴充 MSL (Maximum Segment Lifetime) 報文段最大生存時間 MSS (Maximum Segment Size) 最大報文段長度 M TA (Message Transfer Agent) 報文傳送代理 MTU (Maximum Transmission Unit) 最大傳輸單元 NCP (Network Control Protocol) 網絡控制協議 NFS (Network File System) 網絡文件系統 NIC (Network Information Center) 網絡信息中心 NIT (Network Interface Tap) 網絡接口栓(S u n公司的一個程序) NNTP (Network News Transfer Protocol) 網絡新聞傳送協議 NOAO (National Optical Astronomy Observatories) 國家光學天文臺 NOP (No Operation) 無操作 NSFNET (National Science Foundation NETwork) 國家科學基金網絡 NSI (NASA Science Internet) (美國)國家宇航局I n t e r n e t NTP (Network Time Protocol) 網絡時間協議 NVT (Network Virtual Terminal) 網絡虛擬終端 OSF (Open Software Foudation) 開放軟件基金 OSI (Open Systems Interconnection) 開放系統互連 OSPF (Open Shortest Path First) 開放最短通路優先 PAWS (Protection Against Wrapped Sequence number) 防止回繞的序號 PDU (Protocol Data Unit) 協議數據單元 POSIX (Portable Operating System Interface) 可移植操作系統接口 PPP (Point-to-Point Protocol) 點對點協議 PSH (PuSH) TCP首部中的急迫標志 RARP (Reverse Address Resolution Protocol) 逆地址解析協議 RFC (Request For Comments) Internet的文檔,其中的少部分成為標準文檔 RIP (Routing Information Protocol) 路由信息協議 RPC (Remote Procedure Call) 遠程過程調用 RR (Resource Record) 資源記錄 RST (ReSeT) TCP首部中的復位標志 RTO (Retransmission Time Out) 重傳超時 RTT (Round-Trip Time) 往返時間 SACK (Selective ACKnowledgment) 有選擇的確認 SLIP (Serial Line Internet Protocol) 串行線路I n t e r n e t協議 SMI (Structure of Management Information) 管理信息結構 SMTP (Simple Mail Transfer Protocol) 簡單郵件傳送協議 SNMP (Simple Network Management Protocol) 簡單網絡管理協議 SSAP (Source Service Access Point) 源服務訪問點 SSRR (Strict Source and Record Route) 嚴格的源站及記錄路由 SWS (Silly Window Syndrome) 糊涂窗口綜合癥 SYN (SYNchronous) TCP首部中的同步序號標志 TCP (Transmission Control Protocol) 傳輸控制協議 TFTP (Trivial File Transfer Protocol) 簡單文件傳送協議 TLI (Transport Layer Interface) 運輸層接口 TTL (Ti m e - To-Live) 生存時間或壽命 TUBA (TCP and UDP with Bigger Addresses) 具有更長地址的T C P和U D P Telnet 遠程終端協議 UA (User Agent) 用戶代理 UDP (User Datagram Protocol) 用戶數據報協議 URG (URGent) TCP首部中的緊急指針標志 UTC (Coordinated Universal Time) 協調的統一時間 UUCP (Unix-to-Unix CoPy) Unix到U n i x的復制 WAN (Wide Area Network) 廣域網 WWW (World Wide Web) 萬維網 XDR (eXternal Data Representation) 外部數據表示 XID (transaction ID) 事務標識符 XTI (X/Open Transport Layer Interface) X/ O p e n運輸層接口

    標簽: tcp 協議

    上傳時間: 2013-11-13

    上傳用戶:tdyoung

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美中文字幕第一页| 亚洲视频一二| 亚洲国产高清自拍| 免费影视亚洲| 91久久精品国产91性色| 美女免费视频一区| 99国内精品久久| 国产伦精品免费视频| 欧美一区二视频| 精品91在线| 欧美高清视频在线| 亚洲一区二区精品在线观看| 欧美色图首页| 亚洲伦理精品| 国产偷国产偷亚洲高清97cao| 亚洲欧美日本另类| 亚洲电影在线看| 久久夜色精品国产亚洲aⅴ| 一区二区三区在线视频播放| 欧美劲爆第一页| 亚洲男人的天堂在线| 国产深夜精品福利| 国产日韩专区| 欧美日韩免费看| 欧美高潮视频| 欧美日韩国产在线观看| 欧美性一区二区| 国产女同一区二区| 一区二区三区在线视频免费观看| 尤物九九久久国产精品的特点 | 欧美一区二视频| 久久aⅴ国产欧美74aaa| 久久国产精品高清| 欧美黄色一区| 欧美精品播放| 国产精品久久国产愉拍| 国产一级揄自揄精品视频| 韩日欧美一区| 国产精品99久久99久久久二8| 午夜日韩av| 欧美成人精品高清在线播放| 欧美视频一区二区三区在线观看| 国产精品看片你懂得| 依依成人综合视频| 一区二区三区免费网站| 久久精品欧美| 欧美日韩一区二区三区四区五区| 国产日韩欧美在线视频观看| 亚洲人成高清| 欧美一区中文字幕| 欧美精品一区在线播放| 国产一区二区欧美| 一本综合久久| 乱人伦精品视频在线观看| 欧美午夜电影完整版| 黄色精品一区二区| 亚洲视频图片小说| 另类综合日韩欧美亚洲| 国产精品午夜在线| 99天天综合性| 久久一综合视频| 国产精品视频免费一区| 亚洲精品乱码久久久久久| 欧美伊人久久久久久午夜久久久久 | 亚洲黄色影片| 欧美一区二区视频在线观看2020 | 国产美女精品人人做人人爽| 亚洲国产精品嫩草影院| 欧美一区二区成人6969| 欧美日韩一区二区三区免费看| 狠狠久久亚洲欧美| 欧美一级专区免费大片| 欧美日韩一区在线| 亚洲激情小视频| 久久久蜜臀国产一区二区| 国产精品久久久久久久久借妻 | 今天的高清视频免费播放成人| 在线视频日韩精品| 欧美xart系列高清| 狠狠色狠狠色综合日日91app| 亚洲在线网站| 国产精品久久久久aaaa樱花| 在线视频日韩精品| 欧美午夜精品理论片a级按摩| 亚洲美女毛片| 欧美国产视频在线观看| 亚洲第一久久影院| 久久综合给合| 亚洲福利一区| 免费在线欧美黄色| 亚洲免费大片| 欧美激情亚洲视频| 亚洲人成网站色ww在线 | 欧美日韩一区二区免费在线观看| 亚洲第一中文字幕在线观看| 久久久久久亚洲精品杨幂换脸| 国产日韩欧美精品在线| 欧美一级片一区| 国产亚洲欧洲| 久久精品日产第一区二区| 国内视频一区| 久久综合伊人| 亚洲国产精品成人综合| 你懂的成人av| 亚洲日本一区二区三区| 欧美日韩成人综合| 亚洲一区二区三区中文字幕在线| 国产精品久久久久久久app| 亚洲一区精品电影| 国产精品一区二区三区免费观看 | 亚洲国产二区| 毛片精品免费在线观看| 国产精品美女久久久久久免费| 欧美午夜理伦三级在线观看| 亚洲高清不卡| 欧美成人精品一区| 国产精品视频观看| 欧美一级在线亚洲天堂| 欧美调教视频| 国产综合激情| 欧美色欧美亚洲高清在线视频| 99riav久久精品riav| 狠狠色丁香婷婷综合久久片| 一区二区av| 欧美日本不卡| 一区二区欧美国产| 欧美大片免费观看| 欲色影视综合吧| 欧美国产视频在线观看| 亚洲欧美日韩精品在线| 在线亚洲电影| 亚洲欧美日韩一区二区三区在线观看| 亚洲国产一区二区视频| 在线视频欧美精品| 亚洲精品国产品国语在线app| 国产精品视频精品视频| 国产综合亚洲精品一区二| 国内精品写真在线观看| 蜜桃av综合| 欧美一区激情视频在线观看| 亚洲精品视频免费| 韩国一区二区三区美女美女秀| 欧美大片免费观看在线观看网站推荐 | 亚洲欧美日韩精品久久奇米色影视| aa成人免费视频| 欧美三日本三级少妇三99| 亚洲一区二区在| 精品69视频一区二区三区| 欧美精品福利在线| 欧美一二三区精品| 亚洲美女av黄| 黄色亚洲在线| 欧美视频一区| 久久这里只有| 午夜精品久久久久影视 | 午夜亚洲福利| 亚洲欧洲免费视频| 久久综合久久综合久久| 亚洲午夜久久久久久久久电影院| 国内精品久久久久影院色| 欧美性大战久久久久| 欧美成人a视频| 久久精品国产亚洲aⅴ| 亚洲一区自拍| 99re66热这里只有精品4| 1769国内精品视频在线播放| 国产伦精品一区二区三区免费 | 国产精品成人播放| 欧美国产丝袜视频| 美日韩在线观看| 久久精品国产99| 亚洲欧美在线免费观看| 亚洲一区免费网站| 99在线精品视频在线观看| 在线观看91精品国产麻豆| 国产一区二区av| 国产欧美视频一区二区| 国产精品美女久久福利网站| 欧美日韩成人综合在线一区二区 | 午夜精品理论片| 亚洲小少妇裸体bbw| 一区二区三区成人| 99视频精品免费观看| 亚洲免费av观看| 日韩一区二区福利| 亚洲精品社区| 99天天综合性| 亚洲无线观看| 午夜精品亚洲一区二区三区嫩草| 亚洲午夜av| 午夜精品福利电影| 先锋影音网一区二区| 欧美有码在线观看视频| 久久高清福利视频| 久久男人av资源网站| 美女成人午夜| 欧美黄色一区| 国产精品ⅴa在线观看h| 国产精品欧美风情| 国产综合在线看|