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

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

FOR-Win

  • PCB Design Considerations and Guidelines for 0.4mm and 0.5mm WLPs

    Abstract: Using a wafer-level package (WLP) can reduce the overall size and cost of your solution.However when using a WLP IC, the printed circuit board (PCB) layout can become more complex and, ifnot carefully planned, result in an unreliable design. This article presents some PCB designconsiderations and general recommendations for choosing a 0.4mm- or 0.5mm-pitch WLP for yourapplication.

    標簽: Considerations Guidelines and Design

    上傳時間: 2013-10-14

    上傳用戶:ysystc699

  • Circuitry for Single Cell Operation

      Portable, battery-powered operation of electronic apparatushas become increasingly desirable. Medical, remotedata acquisition, power monitoring and other applicationsare good candidates for batteryoperation. In some circumstances,due to space, power or reliability considerations,it is preferable to operate the circuitry from a single 1.5Vcell. Unfortunately, a 1.5V supply eliminates almost alllinear ICs as design candidates. In fact, the LM10 opamp-reference and the LT®1017/LT1018 comparators arethe only IC gain blocks fully specifi ed for 1.5V operation.Further complications are presented by the 600mV dropof silicon transistors and diodes. This limitation consumesa substantial portion of available supply range, makingcircuit design diffi cult. Additionally, any circuit designedfor 1.5V operation mustfunction at end-of-life batteryvoltage, typically 1.3V. (See Box Section, “Componentsfor 1.5V Operation.”)

    標簽: Circuitry Operation Single Cell

    上傳時間: 2013-10-30

    上傳用戶:hz07104032

  • IAR+FOR+MSP430+快速入門

    IAR+FOR+MSP430+快速入門

    標簽: IAR FOR 430 MSP

    上傳時間: 2013-10-16

    上傳用戶:18752787361

  • USBasp-win驅動及其他

    USBasp-win驅動及軟件

    標簽: USBasp-win 驅動

    上傳時間: 2013-10-08

    上傳用戶:taozhihua1314

  • 單片機C語言(for)延時計算

    單片機C語言(for)延時計算

    標簽: for 單片機 C語言 延時計算

    上傳時間: 2013-10-28

    上傳用戶:maizezhen

  • Keil C51使用詳解

    Keil C51使用詳解Keil C51 是美國Keil Software 公司出品的51 系列兼容單片機C 語言軟件開發系統,與匯編相比,C 語言在功能上、結構性、可讀性、可維護性上有明顯的優勢,因而易學易用。用過匯編語言后再使用C 來開發,體會更加深刻。Keil C51 軟件提供豐富的庫函數和功能強大的集成開發調試工具,全Windows界面。另外重要的一點,只要看一下編譯后生成的匯編代碼,就能體會到Keil C51生成的目標代碼效率非常之高,多數語句生成的匯編代碼很緊湊,容易理解。在開發大型軟件時更能體現高級語言的優勢。下面詳細介紹 Keil C51 開發系統各部分功能和使用。第二節 Keil C51 單片機軟件開發系統的整體結構C51 工具包的整體結構,如圖(1)所示,其中uVision 與Ishell 分別是C51 forWindows 和for Dos 的集成開發環境(IDE),可以完成編輯、編譯、連接、調試、仿真等整個開發流程。開發人員可用IDE 本身或其它編輯器編輯C 或匯編源文件。然后分別由C51 及A51 編譯器編譯生成目標文件(.OBJ)。目標文件可由LIB51 創建生成庫文件,也可以與庫文件一起經L51 連接定位生成絕對目標文件(.ABS)。ABS 文件由OH51 轉換成標準的Hex 文件,以供調試器dScope51 或tScope51 使用進行源代碼級調試,也可由仿真器使用直接對目標板進行調試,也可以直接寫入程序存貯器如EPROM 中。圖(1) C51 工具包整體結構圖第三節 Keil C51 工具包的安裝81. C51 for Dos在 Windows 下直接運行軟件包中DOS\C51DOS.exe 然后選擇安裝目錄即可。完畢后欲使系統正常工作須進行以下操作(設C:\C51 為安裝目錄):修改 Autoexec.bat,加入path=C:\C51\BinSet C51LIB=C:\C51\LIBSet C51INC=C:\C51\INC然后運行Autoexec.bat2. C51 for Windows 的安裝及注意事項:在 Windows 下運行軟件包中WIN\Setup.exe,最好選擇安裝目錄與C51 for Dos相同,這樣設置最簡單(設安裝于C:\C51 目錄下)。然后將軟件包中crack 目錄中的文件拷入C:\C51\Bin 目錄下。第四節 Keil C51 工具包各部分功能及使用簡介1. C51 與A51(1) C51C51 是C 語言編譯器,其使用方法為:C51 sourcefile[編譯控制指令]或者 C51 @ commandfile其中 sourcefile 為C 源文件(.C)。大量的編譯控制指令完成C51 編譯器的全部功能。包控C51 輸出文件C.LST,.OBJ,.I 和.SRC 文件的控制。源文件(.C)的控制等,詳見第五部分的具體介紹。而 Commandfile 為一個連接控制文件其內容包括:.C 源文件及各編譯控制指令,它沒有固定的名字,開發人員可根據自己的習慣指定,它適于用控制指令較多的場合。(2) A51A51 是匯編語言編譯器,使用方法為:9A51 sourcefile[編譯控制指令]或 A51 @ commandfile其中sourcefile 為匯編源文件(.asm或.a51),而編譯控制指令的使用與其它匯編如ASM語言類似,可參考其他匯編語言材料。Commandfile 同C51 中的Commandfile 類似,它使A51 使用和修改方便。2. L51 和BL51(1) L51L51 是Keil C51 軟件包提供的連接/定位器,其功能是將編譯生成的OBJ 文件與庫文件連接定位生成絕對目標文件(.ABS),其使用方法為:L51 目標文件列表[庫文件列表] [to outputfile] [連接控制指令]或 L51 @Commandfile源程序的多個模塊分別經 C51 與A51 編譯后生成多個OBJ 文件,連接時,這些文件全列于目標文件列表中,作為輸入文件,如果還需與庫文件(.LiB)相連接,則庫文件也必須列在其后。outputfile 為輸文件名,缺少時為第一模塊名,后綴為.ABS。連接控制指令提供了連接定位時的所有控制功能。Commandfile 為連接控制文件,其具體內容是包括了目標文件列表,庫文件列表及輸出文件、連接控制命令,以取代第一種繁瑣的格式,由于目標模塊庫文件大多不止1 個,因而第2 種方法較多見,這個文件名字也可由使用者隨意指定。(2) Bl51BL51 也是C51 軟件包的連接/定位器,其具有L51 的所有功能,此外它還具有以下3 點特別之處:a. 可以連接定位大于64kBytes 的程序。b. 具有代碼域及域切換功能(CodeBanking & Bank Switching)c. 可用于RTX51 操作系統RTX51 是一個實時多任務操作系統,它改變了傳統的編程模式,甚至不必用main( )函數,單片機系統軟件向RTOS 發展是一種趨勢,這種趨勢對于186 和38610及68K 系列CPU 更為明顯和必須,對8051 因CPU 較為簡單,程序結構等都不太復雜,RTX51 作用顯得不太突出,其專業版軟件PK51 軟件包甚至不包括RTX51Full,而只有一個RTX51TINY 版本的RTOS。RTX51 TINY 適用于無外部RAM 的單片機系統,因而可用面很窄,在本文中不作介紹。Bank switching 技術因使用很少也不作介紹。3. DScope51,Tscope51 及Monitor51(1) dScope51dScope51 是一個源級調試器和模擬器,它可以調試由C51 編譯器、A51 匯編器、PL/M-51 編譯器及ASM-51 匯編器產生的程序。它不需目標板(for windows 也可通過mon51 接目標板),只能進行軟件模擬,但其功能強大,可模擬CPU 及其外圍器件,如內部串口,外部I/O 及定時器等,能對嵌入式軟件功能進行有效測試。

    標簽: Keil C51 使用詳解

    上傳時間: 2013-11-01

    上傳用戶:zhouxuepeng1

  • USB Demonstration for DK3200 w

    The μPSD32xx family, from ST, consists of Flash programmable system devices with a 8032 MicrocontrollerCore. Of these, the μPSD3234A and μPSD3254A are notable for having a complete implementationof the USB hardware directly on the chip, complying with the Universal Serial Bus Specification, Revision1.1.This application note describes a demonstration program that has been written for the DK3200 hardwaredemonstration kit (incorporating a μPSD3234A device). It gives the user an idea of how simple it is to workwith the device, using the HID class as a ready-made device driver for the USB connection.IN-APPLICATION-PROGRAMMING (IAP) AND IN-SYSTEM-PROGRAMMING (ISP)Since the μPSD contains two independent Flash memory arrays, the Micro Controller Unit (MCU) can executecode from one memory while erasing and programming the other. Product firmware updates in thefield can be reliably performed over any communication channel (such as CAN, Ethernet, UART, J1850)using this unique architecture. For In-Application-Programming (IAP), all code is updated through theMCU. The main advantage for the user is that the firmware can be updated remotely. The target applicationruns and takes care on its own program code and data memory.IAP is not the only method to program the firmware in μPSD devices. They can also be programmed usingIn-System-Programming (ISP). A IEEE1149.1-compliant JTAG interface is included on the μPSD. Withthis, the entire device can be rapidly programmed while soldered to the circuit board (Main Flash memory,Secondary Boot Flash memory, the PLD, and all configuration areas). This requires no MCU participation.The MCU is completely bypassed. So, the μPSD can be programmed or reprogrammed any time, anywhere, even when completely uncommitted.Both methods take place with the device in its normal hardware environment, soldered to a printed circuitboard. The IAP method cannot be used without previous use of ISP, because IAP utilizes a small amountof resident code to receive the service commands, and to perform the desired operations.

    標簽: Demonstration 3200 USB for

    上傳時間: 2014-02-27

    上傳用戶:zhangzhenyu

  • I2C slave routines for the 87L

    The 87LPC76X Microcontroller combines in a small package thebenefits of a high-performance microcontroller with on-boardhardware supporting the Inter-Integrated Circuit (I2C) bus interface.The 87LPC76X can be programmed both as an I2C bus master, aslave, or both. An overview of the I2C bus and description of the bussupport hardware in the 87LPC76X microcontrollers appears inapplication note AN464, Using the 87LPC76X Microcontroller as anI2C Bus Master. That application note includes a programmingexample, demonstrating a bus-master code. Here we show anexample of programming the microcontroller as an I2C slave.The code listing demonstrates communications routines for the87LPC76X as a slave on the I2C bus. It compliments the program inAN464 which demonstrates the 87LPC76X as an I2C bus master.One may demonstrate two 87LPC76X devices communicating witheach other on the I2C bus, using the AN464 code in one, and theprogram presented here in the other. The examples presented hereand in AN464 allow the 87LPC76X to be either a master or a slave,but not both. Switching between master and slave roles in amultimaster environment is described in application note AN435.The software for a slave on the bus is relatively simple, as theprocessor plays a relatively passive role. It does not initiate bustransfers on its own, but responds to a master initiating thecommunications. This is true whether the slave receives or transmitsdata—transmission takes place only as a response to a busmaster’s request. The slave does not have to worry about arbitrationor about devices which do not acknowledge their address. As theslave is not supposed to take control of the bus, we do not demandit to resolve bus exceptions or “hangups”. If the bus becomesinactive the processor simply withdraws, not interfering with themaster (or masters) on the bus which should (hopefully) try toresolve the situation.

    標簽: routines slave I2C 87L

    上傳時間: 2013-11-19

    上傳用戶:shirleyYim

  • CodeWarrior Development Studio for Microcontrollers V10.2, 第一部分

    CodeWarrior Development Studio for Microcontrollers v10.2 集成了 RS08, HCS08, ColdFire, ColdFire+, Kinetis, Qorivva MPC56xx和 DSC 架構的開發工具于一個基于Eclipse的開放開發工具平臺上。這次課程將介紹關于Eclipse的基礎知識和CodeWarrior for MCU v10.2的一些新特性。

    標簽: Microcontrollers CodeWarrior Development Studio

    上傳時間: 2013-11-17

    上傳用戶:6546544

  • proteus7.10 Proteus VSM for ARM Cortex

    proteus7.10 Proteus VSM for ARM Cortex

    標簽: proteus Proteus Cortex 7.10

    上傳時間: 2013-11-16

    上傳用戶:13160677563

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
性欧美1819sex性高清| 久久久久久久久久久久久9999| 一区二区三区视频免费在线观看| 亚洲电影成人| 免费不卡在线观看| 亚洲日韩中文字幕在线播放| 国产视频欧美视频| 欧美精品三级在线观看| 久久本道综合色狠狠五月| 在线观看精品| 国产精品日本精品| 蜜臀久久99精品久久久画质超高清| 99国产精品久久久久久久成人热| 亚洲第一黄色| 国产在线拍偷自揄拍精品| 国产伦精品一区二区三区免费| 欧美日韩国产成人在线观看| 一区二区三区四区在线| 99国内精品久久久久久久软件| 韩日精品视频一区| 在线不卡a资源高清| 国产麻豆91精品| 国产欧美综合在线| 亚洲综合精品四区| 亚洲国产成人精品视频| 在线看视频不卡| 韩国av一区二区三区在线观看| 欧美午夜视频一区二区| 国产精品户外野外| 欧美色播在线播放| 女人色偷偷aa久久天堂| 久久嫩草精品久久久精品| 久久久99爱| 久久成人这里只有精品| 久久精品视频网| 久久精品成人| 久久久久成人精品免费播放动漫| 蜜桃久久av| 欧美成人首页| 欧美激情视频在线免费观看 欧美视频免费一 | 亚洲欧美成人一区二区在线电影| 久久久久久国产精品mv| 午夜在线精品偷拍| 久久精品一二三| 欧美精品午夜| 亚洲欧美日本另类| 精品成人在线观看| 国产伦精品一区二区三区在线观看 | 欧美96在线丨欧| 美腿丝袜亚洲色图| 欧美精品一区二区三区一线天视频| 欧美精品xxxxbbbb| 欧美激情精品久久久久久| 国产精品夜夜夜| 亚洲韩国青草视频| 欧美精品99| 欧美日韩国产色站一区二区三区| 国内精品久久久久久久影视麻豆| 国产精品a级| 亚洲欧美在线一区| 欧美剧在线观看| 最新日韩在线| 欧美在线观看你懂的| 欧美日韩ab片| 欧美成人官网二区| 国产一区二区三区四区在线观看| 亚洲精品欧洲| 国产精品美女久久久| 欧美日韩综合视频| 在线一区日本视频| 欧美尤物巨大精品爽| 久热国产精品| 国产精品黄页免费高清在线观看| 国产精品亚洲а∨天堂免在线| 国产一级揄自揄精品视频| 在线欧美日韩精品| 国产精品网站在线播放| 亚洲国产精品电影| 免费欧美在线视频| 国产亚洲精品高潮| 一区二区三区免费在线观看| 国产精品久久久久影院色老大| 亚洲人成网站777色婷婷| 亚洲一区二区在线观看视频| 国产精品毛片a∨一区二区三区|国| 亚洲自拍偷拍视频| 老司机免费视频一区二区| 欧美日韩无遮挡| 亚洲国产欧美另类丝袜| 亚洲在线网站| 欧美日韩一区二区三区在线 | 久久青草欧美一区二区三区| 国产精品成人av性教育| 一区二区欧美激情| 久久精品99国产精品酒店日本| 在线国产精品一区| 久久综合五月| 亚洲免费视频在线观看| 亚洲电影观看| 国产亚洲一区二区在线观看 | 国产日韩精品一区二区三区在线 | 夜夜嗨av一区二区三区网站四季av| 久久超碰97人人做人人爱| 欧美日韩国产一区精品一区| 极品尤物av久久免费看| 欧美性事在线| 欧美与黑人午夜性猛交久久久| 亚洲精品乱码久久久久久蜜桃麻豆 | 美女在线一区二区| 一区二区欧美在线观看| 在线观看中文字幕不卡| 国产欧美日本在线| 国产精品少妇自拍| 国产精品网站在线观看| 在线观看中文字幕不卡| 亚洲第一精品夜夜躁人人躁| 在线综合亚洲| 亚洲人成网站影音先锋播放| 国产精品美女www爽爽爽视频| 欧美日韩大片| 一本色道久久综合精品竹菊| 国产伦精品一区二区三区高清| 在线亚洲精品| 欧美视频日韩| 国产精品夫妻自拍| 亚洲国产欧美一区二区三区同亚洲 | 亚洲精品美女久久久久| 亚洲欧美中文另类| 国产精品毛片va一区二区三区| 香蕉成人伊视频在线观看| 国产精品稀缺呦系列在线| 久久国产精品毛片| 在线日韩中文| 欧美精品一卡二卡| 亚洲欧美日韩天堂| 国产曰批免费观看久久久| 欧美日韩成人综合| 午夜视频在线观看一区二区三区| 国产日韩在线一区二区三区| 久久只精品国产| 亚洲精品一区二区三区蜜桃久| 欧美日韩精品免费观看| 亚洲欧美日本在线| 国模精品一区二区三区| 欧美日韩国产一级| 亚洲影音先锋| 亚洲香蕉网站| 国产色综合天天综合网| 国产日韩综合一区二区性色av| 一本一本久久a久久精品综合麻豆 一本一本久久a久久精品牛牛影视 | 国产有码在线一区二区视频| 欧美成人资源| 亚洲一区二区高清| 亚洲高清自拍| 欧美成人首页| 国产精品无码专区在线观看 | 亚洲人成在线观看| 国产精品视频精品| 久久综合亚洲社区| 中文一区在线| 亚洲国产裸拍裸体视频在线观看乱了中文 | 欧美va天堂在线| 欧美性事在线| 亚洲一区二区高清视频| 亚洲主播在线播放| 国产欧美日韩精品一区| 欧美影院在线| 黄色影院成人| 国产日韩精品在线观看| 91久久在线播放| 国产欧美日韩三级| 国产一区二区三区高清| 欧美日本一道本在线视频| 欧美在线精品一区| 99视频精品在线| 伊人天天综合| 精品动漫3d一区二区三区免费| 欧美午夜在线视频| 美乳少妇欧美精品| 欧美一区二区啪啪| 91久久视频| 精品91在线| 在线观看91精品国产麻豆| 国产精品国产馆在线真实露脸| 国产一区二区三区久久久| 欧美小视频在线| 蜜臀av性久久久久蜜臀aⅴ四虎| 亚洲国产高潮在线观看| 欧美色欧美亚洲另类二区| 亚洲一区二区精品视频| 亚洲一区二区三区在线播放| 亚洲婷婷综合色高清在线| 国产精品久久久久久模特| 久久成人精品视频| 欧美激情第10页| 欧美激情aⅴ一区二区三区| 99re视频这里只有精品| 国产精品成人v| 久久国产黑丝| 国产精品久久一区主播|