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

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

all-valid

  • MSP430 USB JTAG自制資料

    The MSP-FET430U14 is a powerful flash emulation tool to quickly begin application development on the MSP430 MCU. It includes USB debugging interface used to program and debug the MSP430 in-system through the JTAG interface or the pin saving Spy Bi-Wire (2-wire JTAG) protocol. The flash memory can be erased and programmed in seconds with only a few keystrokes, and since the MSP430 flash is ultra-low power, no external power supply is required. The debugging tool interfaces the MSP430 to the included integrated software environment and includes code to start your design immediately.  The MSP-FET430UIF development tools supports development with all MSP430 flash devices

    標簽: JTAG MSP 430 USB

    上傳時間: 2013-10-28

    上傳用戶:13691535575

  • Atmel AVR 單片機上網方案

    Atmel AVR 單片機上網方案 The AVR Embedded Internet Toolkit is the fastest way to connect anyembedded design to the Internet. It includes an ATmega AVR microcontroller,dedicated hardware, and all required software protocols forconnecting to the Internet. The AVR Embedded Internet Toolkit is thefastest choice for getting started with embedded Internet and for developinga complete embedded application connected to the Internet.

    標簽: Atmel AVR 單片機 方案

    上傳時間: 2013-11-06

    上傳用戶:xjz632

  • Agilent Wedge for Probing High

    IntroductionAs chip designers pack more functions into ICs,pin counts continue to grow and the space betweenpins keeps shrinking. Pin spacings of 0.5 mm and0.65 mm are not at all uncommon. The power ofthese new ICs is wonderful, to be sure, but trou-bleshooting them can be a chore because connect-ing scopes and logic analyzers has become muchmore difficult and less dependable.

    標簽: Agilent Probing Wedge High

    上傳時間: 2013-10-22

    上傳用戶:蔣清華嗯

  • PICKIT™ 2 PROGRAMMER-TO-

    PICKIT™ 2 PROGRAMMER-TO-GO USER GUIDE The PICkit 2 Programmer-To-Go functionality allows a PIC MCU memory image to be downloaded into the PICkit 2 unit for later programming into a specific PIC MCU. No software or PC is required to program devices once the PICkit 2 unit is set up for Programming-To-Go. A USB power source for the PICkit 2 is all that is needed.

    標簽: PROGRAMMER-TO PICKIT 8482

    上傳時間: 2013-10-29

    上傳用戶:ca05991270

  • at91rm9200啟動過程教程

    at91rm9200啟動過程教程 系統上電,檢測BMS,選擇系統的啟動方式,如果BMS為高電平,則系統從片內ROM啟動。AT91RM9200的ROM上電后被映射到了0x0和0x100000處,在這兩個地址處都可以訪問到ROM。由于9200的ROM中固化了一個BOOTLOAER程序。所以PC從0X0處開始執行這個BOOTLOAER(準確的說應該是一級BOOTLOADER)。這個BOOTLOER依次完成以下步驟: 1、PLL SETUP,設置PLLB產生48M時鐘頻率提供給USB DEVICE。同時DEBUG USART也被初始化為48M的時鐘頻率; 2、相應模式下的堆棧設置; 3、檢測主時鐘源(Main oscillator); 4、中斷控制器(AIC)的設置; 5、C 變量的初始化; 6、跳到主函數。 完成以上步驟后,我們可以認為BOOT過程結束,接下來的就是LOADER的過程,或者也可以認為是裝載二級BOOTLOER。AT91RM9200按照DATAFLASH、EEPROM、連接在外部總線上的8位并行FLASH的順序依次來找合法的BOOT程序。所謂合法的指的是在這些存儲設備的開始地址處連續的存放的32個字節,也就是8條指令必須是跳轉指令或者裝載PC的指令,其實這樣規定就是把這8條指令當作是異常向量表來處理。必須注意的是第6條指令要包含將要裝載的映像的大小。關于如何計算和寫這條指令可以參考用戶手冊。一旦合法的映像找到之后,則BOOT程序會把找到的映像搬到SRAM中去,所以映像的大小是非常有限的,不能超過16K-3K的大小。當BOOT程序完成了把合法的映像搬到SRAM的任務以后,接下來就進行存儲器的REMAP,經過REMAP之后,SRAM從映設前的0X200000地址處被映設到了0X0地址并且程序從0X0處開始執行。而ROM這時只能在0X100000這個地址處看到了。至此9200就算完成了一種形式的啟動過程。如果BOOT程序在以上所列的幾種存儲設備中找到合法的映像,則自動初始化DEBUG USART口和USB DEVICE口以準備從外部載入映像。對DEBUG口的初始化包括設置參數115200 8 N 1以及運行XMODEM協議。對USB DEVICE進行初始化以及運行DFU協議。現在用戶可以從外部(假定為PC平臺)載入你的映像了。在PC平臺下,以WIN2000為例,你可以用超級終端來完成這個功能,但是還是要注意你的映像的大小不能超過13K。一旦正確從外部裝載了映像,接下來的過程就是和前面一樣重映設然后執行映像了。我們上面講了BMS為高電平,AT91RM9200選擇從片內的ROM啟動的一個過程。如果BMS為低電平,則AT91RM9200會從片外的FLASH啟動,這時片外的FLASH的起始地址就是0X0了,接下來的過程和片內啟動的過程是一樣的,只不過這時就需要自己寫啟動代碼了,至于怎么寫,大致的內容和ROM的BOOT差不多,不同的硬件設計可能有不一樣的地方,但基本的都是一樣的。由于片外FLASH可以設計的大,所以這里編寫的BOOTLOADER可以一步到位,也就是說不用像片內啟動可能需要BOOT好幾級了,目前AT91RM9200上使用較多的bootloer是u-boot,這是一個開放源代碼的軟件,用戶可以自由下載并根據自己的應用配置。總的說來,筆者以為AT91RM9200的啟動過程比較簡單,ATMEL的服務也不錯,不但提供了片內啟動的功能,還提供了UBOOT可供下載。筆者寫了一個BOOTLODER從片外的FLASHA啟動,效果還可以。 uboot結構與使用uboot是一個龐大的公開源碼的軟件。他支持一些系列的arm體系,包含常見的外設的驅動,是一個功能強大的板極支持包。其代碼可以 http://sourceforge.net/projects/u-boot下載 在9200上,為了啟動uboot,還有兩個boot軟件包,分別是loader和boot。分別完成從sram和flash中的一級boot。其源碼可以從atmel的官方網站下載。 我們知道,當9200系統上電后,如果bms為高電平,則系統從片內rom啟動,這時rom中固化的boot程序初始化了debug口并向其發送'c',這時我們打開超級終端會看到ccccc...。這說明系統已經啟動,同時xmodem協議已經啟動,用戶可以通過超級終端下載用戶的bootloader。作為第一步,我們下載loader.bin.loader.bin將被下載到片內的sram中。這個loder完成的功能主要是初始化時鐘,sdram和xmodem協議,為下載和啟動uboot做準備。當下載了loader.bin后,超級終端會繼續打印:ccccc....。這時我們就可以下在uboot了。uboot將被下載到sdram中的一個地址后并把pc指針調到此處開始執行uboot。接著我們就可以在終端上看到uboot的shell啟動了,提示符uboot>,用戶可以uboot>help 看到命令列表和大概的功能。uboot的命令包含了對內存、flash、網絡、系統啟動等一些命令。 如果系統上電時bms為低電平,則系統從片外的flash啟動。為了從片外的flash啟動uboot,我們必須把boot.bin放到0x0地址出,使得從flash啟動后首先執行boot.bin,而要少些boot.bin,就要先完成上面我們講的那些步驟,首先開始從片內rom啟動uboot。然后再利用uboot的功能完成把boot.bin和uboot.gz燒寫到flash中的目的,假如我們已經啟動了uboot,可以這樣操作: uboot>protect off all uboot>erase all uboot>loadb 20000000 uboot>cp.b 20000000 10000000 5fff uboot>loadb 21000000 uboot>cp.b 210000000 10010000 ffff 然后系統復位,就可以看到系統先啟動boot,然后解壓縮uboot.gz,然后啟動uboot。注意,這里uboot必須壓縮成.gz文件,否則會出錯。 怎么編譯這三個源碼包呢,首先要建立一個arm的交叉編譯環境,關于如何建立,此處不予說明。建立好了以后,分別解壓源碼包,然后修改Makefile中的編譯器項目,正確填寫你的編譯器的所在路徑。 對loader和boot,直接make。對uboot,第一步:make_at91rm9200dk,第二步:make。這樣就會在當前目錄下分別生成*.bin文件,對于uboot.bin,我們還要壓縮成.gz文件。 也許有的人對loader和boot搞不清楚為什么要兩個,有什么區別嗎?首先有區別,boot主要完成從flash中啟動uboot的功能,他要對uboot的壓縮文件進行解壓,除此之外,他和loader并無大的區別,你可以把boot理解為在loader的基礎上加入了解壓縮.gz的功能而已。所以這兩個并無多大的本質不同,只是他們的使命不同而已。 特別說名的是這三個軟件包都是開放源碼的,所以用戶可以根據自己的系統的情況修改和配置以及裁減,打造屬于自己系統的bootloder。

    標簽: 9200 at 91 rm

    上傳時間: 2013-10-27

    上傳用戶:wsf950131

  • FREERTOS的官方移植文檔

    FeaturesThe following standard features are provided.• Choice of RTOS scheduling policy1. Pre-emptive:Always runs the highest available task. Tasks of identical priorityshare CPU time (fully pre-emptive with round robin time slicing).2. Cooperative:Context switches only occur if a task blocks, or explicitly callstaskYIELD().• Co-routines (light weight tasks that utilise very little RAM).• Message queues• Semaphores [via macros]• Trace visualisation ability (requires more RAM)• Majority of source code common to all supported development tools• Wide range of ports and examples

    標簽: FREERTOS 移植 文檔

    上傳時間: 2013-10-13

    上傳用戶:13162218709

  • 開放式匯編器系統的設計

    匯編器在微處理器的驗證和應用中舉足輕重,如何設計通用的匯編器一直是研究的熱點之一。本文提出了一種開放式的匯編器系統設計思想,在匯編語言與機器語言間插入中間代碼CMDL(code mapping description language)語言,打破匯編語言與機器語言的直接映射關系,由此建立起一套描述匯編語言與機器語言的開放式映射體系。基于此開放式映射體系開發了一套匯編器系統,具有較高層次上的通用性和可移植性。【關鍵詞】指令集,CMDL,匯編器,開放式 Design of Retargetable Assembler System Liu Ling Feng Wen Nan Wang Ying Chun Jiang An Ping Ji Li Jiu IME of Peking University, 100871【摘要】An assembler plays a very important role in the field of microprocessor verifications and applications, thus how to build a retargetable assembler system has been a hotspot in this field for long time. This paper presents a new method about the retargetable assembler system design.It provides a kind of language CMDL, code mapping description language. During the process of assembling, assembler languages are firstly translated to CMDL, and then mapped to the machine codes. In an other word, CMDL is inserted between assembler languages and machine codes during the translation procedure. As a medium code, CMDL has a lot of features, such as high extraction, strong descript capabilities. It can describe almost all attributes of assembler languages. By breaking the direct mapping relationship between assembler languages and machine codes, the complexities of machine codes are hided to the users, therefore, the new retargetable assembler system has higher retargetable level by converting the mapping from assembler languages and machine codes to assembler languages and CMDL, and implementationof it becomes easier. Based on the new mapping system structure, a retargetable assemblersystem is developed. It proved the whole system has good retargetability and implantability.【關鍵詞】instruction set, symbol table, assembler, lexical analysis, retargetability

    標簽: 開放式 匯編器

    上傳時間: 2013-10-10

    上傳用戶:meiguiweishi

  • TMS320C6000 Assembly Language

    Texas Instruments and its subsidiaries (TI) reserve the right to make changes to their productsor to discontinue any product or service without notice, and advise customers to obtain the latestversion of relevant information to verify, before placing orders, that information being relied onis current and complete. All products are sold subject to the terms and conditions of sale suppliedat the time of order acknowledgement, including those pertaining to warranty, patentinfringement, and limitation of liability.

    標簽: Assembly Language C6000 320C

    上傳時間: 2013-11-12

    上傳用戶:chens000

  • 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

  • PCA9517 Level translating I2C-

    The PCA9517 is a CMOS integrated circuit that provides level shifting between lowvoltage (down to 0.9 V) and higher voltage (2.7 V to 5.5 V) I2C-bus or SMBus applications.While retaining all the operating modes and features of the I2C-bus system during thelevel shifts, it also permits extension of the I2C-bus by providing bidirectional buffering forboth the data (SDA) and the clock (SCL) lines, thus enabling two buses of 400 pF. Usingthe PCA9517 enables the system designer to isolate two halves of a bus for both voltageand capacitance. The SDA and SCL pins are over voltage tolerant and arehigh-impedance when the PCA9517 is unpowered.

    標簽: translating Level 9517 PCA

    上傳時間: 2013-12-25

    上傳用戶:wsf950131

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费成人高清| 亚洲电影免费观看高清完整版在线观看| 国产女人精品视频| 日韩亚洲综合在线| 国产精品久久九九| 久久经典综合| 影音先锋日韩精品| 欧美激情第3页| 亚洲一区二区高清视频| 国产免费成人| 狼人社综合社区| 99re视频这里只有精品| 国产精品一区二区在线观看| 久久久久久久一区二区三区| 亚洲激情视频在线| 国产精品视频免费观看www| 欧美一区午夜视频在线观看| 在线观看日韩| 国产精品不卡在线| 久久精品盗摄| 亚洲最新色图| 一区精品在线| 国产精品成av人在线视午夜片| 久久精品一区二区三区不卡| 亚洲精品一二区| 国产一本一道久久香蕉| 欧美日韩不卡合集视频| 久久久久.com| 亚洲欧美一区二区三区在线| 最新日韩在线| 韩国三级在线一区| 欧美婷婷六月丁香综合色| 久久综合狠狠| 欧美在线一级视频| 一区二区三区四区五区在线| 在线免费不卡视频| 国产欧美三级| 欧美日韩亚洲一区| 裸体一区二区三区| 久久er精品视频| 亚洲自拍偷拍一区| 亚洲少妇自拍| 亚洲乱码国产乱码精品精| 国一区二区在线观看| 国产精品久久影院| 欧美日韩国产成人高清视频| 老司机免费视频一区二区| 午夜精品久久久久影视| 这里只有精品在线播放| 亚洲免费成人| 亚洲黄页一区| 亚洲高清不卡av| 激情成人综合网| 国产在线成人| 国产亚洲欧洲| 国产私拍一区| 国产午夜精品一区理论片飘花 | 欧美在线视频观看| 一区二区三区毛片| 亚洲伦理网站| 亚洲欧洲在线观看| 亚洲国产专区| 亚洲国产综合视频在线观看| 一色屋精品视频在线看| 黄色成人在线网址| 黄色精品免费| 在线观看欧美日本| 亚洲国产精彩中文乱码av在线播放| 国内自拍一区| 一区二区三区在线不卡| 激情六月婷婷综合| 伊人蜜桃色噜噜激情综合| 激情综合色综合久久综合| 国产综合色精品一区二区三区| 国产亚洲欧美一区二区三区| 国产一区在线播放| 一色屋精品视频在线看| 亚洲国产精品综合| 亚洲精品一区二区三区樱花| 日韩视频一区二区| 在线亚洲一区观看| 亚洲男女自偷自拍图片另类| 亚洲一区二区日本| 亚洲欧美日韩网| 久久黄色网页| 久久伊人精品天天| 欧美韩日视频| 国产精品国产三级国产普通话蜜臀| 国产精品久久久久一区| 国产日韩欧美精品综合| 一区二区三区中文在线观看 | 欧美成人精品| 欧美精品1区| 国产精品成人一区二区| 国产日韩欧美另类| 激情综合在线| 亚洲国内在线| 在线一区二区日韩| 午夜国产欧美理论在线播放| 久久电影一区| 欧美成人自拍视频| 欧美视频1区| 国产亚洲欧美日韩一区二区| 亚洲国产精品一区| 亚洲性线免费观看视频成熟| 久久精品国产欧美激情| 欧美紧缚bdsm在线视频| 国产精品一区二区你懂得| 悠悠资源网亚洲青| 亚洲无线一线二线三线区别av| 欧美在线首页| 欧美精品18+| 国产在线精品一区二区中文| 亚洲日本电影在线| 亚洲男人的天堂在线观看| 久久这里有精品视频| 欧美性做爰猛烈叫床潮| 黄色一区二区三区| 一区二区三区导航| 久久免费午夜影院| 国产精品www网站| 精品二区视频| 亚洲一区二区三区免费视频 | 激情综合久久| 亚洲欧美国产精品桃花| 欧美成人午夜激情在线| 国产伦精品一区二区三区照片91 | 亚洲一区二区三区成人在线视频精品| 欧美一区二区精美| 欧美日本一道本在线视频| 国内伊人久久久久久网站视频| 中文在线资源观看网站视频免费不卡| 久久久噜噜噜久久久| 国产精品久久久久9999吃药| 亚洲欧洲视频在线| 久久国产精品99久久久久久老狼| 欧美日韩成人一区二区| 国产一区二区精品在线观看| 国产精品99久久不卡二区| 久久人人爽爽爽人久久久| 国产伦精品一区二区三| 日韩一区二区精品视频| 久久永久免费| 国产亚洲激情在线| 亚洲视频碰碰| 欧美成人a∨高清免费观看| 国产一区二区三区av电影| 亚洲性av在线| 欧美日本在线视频| 亚洲黄色成人久久久| 久久久精品网| 激情欧美一区二区三区| 欧美一区午夜精品| 国产精品综合| 亚洲自拍啪啪| 欧美视频在线观看免费| 亚洲另类视频| 欧美成人免费网站| 亚洲福利视频免费观看| 午夜影视日本亚洲欧洲精品| 欧美视频一区二区三区四区| 亚洲精品国精品久久99热| 欧美成人精品在线| 亚洲国产精品毛片| 欧美高清免费| 日韩视频在线免费| 欧美日韩色一区| 一区二区三区日韩欧美精品| 欧美日韩亚洲高清| 亚洲私人影院| 国产精品国产三级国产| 亚洲伊人伊色伊影伊综合网| 欧美亚洲第一页| 亚洲自拍三区| 国产亚洲一级| 久久久夜色精品亚洲| 狠狠色噜噜狠狠狠狠色吗综合| 久久国产99| 伊人久久婷婷| 欧美mv日韩mv国产网站| 亚洲激情第一区| 欧美片网站免费| 一本久道久久久| 国产精品麻豆成人av电影艾秋 | 亚洲国产一区二区三区高清| 免费国产自线拍一欧美视频| 亚洲第一毛片| 欧美黄色片免费观看| 9久re热视频在线精品| 国产精品福利网| 欧美一区二区三区日韩| 精品不卡在线| 欧美激情视频一区二区三区不卡| 亚洲精品日韩欧美| 欧美三区免费完整视频在线观看| 亚洲在线网站| 在线欧美福利| 欧美日韩综合一区| 欧美一级播放| 在线免费日韩片|