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

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

a-h

  • H-JTAG調試軟件下載

    ARM通訊   H-JTAG 是一款簡單易用的的調試代理軟件,功能和流行的MULTI-ICE 類似。H-JTAG 包括兩個工具軟件:H-JTAG SERVER 和H-FLASHER。其中,H-JTAG SERVER 實現調試代理的功能,而H-FLASHER則實現了FLASH 燒寫的功能。H-JTAG 的基本結構如下圖1-1所示。  H-JTAG支持所有基于ARM7 和ARM9的芯片的調試,并且支持大多數主流的ARM調試軟件,如ADS、RVDS、IAR 和KEIL。通過靈活的接口配置,H-JTAG 可以支持WIGGLER,SDT-JTAG 和用戶自定義的各種JTAG 調試小板。同時,附帶的H-FLASHER 燒寫軟件還支持常用片內片外FLASH 的燒寫。使用H-JTAG,用戶能夠方便的搭建一個簡單易用的ARM 調試開發平臺。H-JTAG 的功能和特定總結如下: 1. 支持 RDI 1.5.0 以及 1.5.1; 2. 支持所有ARM7 以及 ARM9 芯片; 3. 支持 THUMB 以及ARM 指令; 4. 支持 LITTLE-ENDIAN 以及 BIG-ENDIAN; 5. 支持 SEMIHOSTING; 6. 支持 WIGGLER, SDT-JTAG和用戶自定義JTAG調試板; 7. 支持 WINDOWS 9.X/NT/2000/XP; 8.支持常用FLASH 芯片的編程燒寫; 9. 支持LPC2000 和AT91SAM 片內FLASH 的自動下載;

    標簽: H-JTAG 調試軟件

    上傳時間: 2014-12-01

    上傳用戶:Miyuki

  • Arduino學習筆記3_連接HMC5883L三軸電子羅盤傳感器

    用途:測量地磁方向,測量物體靜止時候的方向,測量傳感器周圍磁力線的方向。注意,測量地磁時候容易受到周圍磁場影響,主芯片HMC5883 三軸磁阻傳感器特點(抄自網上): 1,數字量輸出:I2C 數字量輸出接口,設計使用非常方便。 2,尺寸小: 3x3x0.9mm LCC 封裝,適合大規模量產使用。 3,精度高:1-2 度,內置12 位A/D,OFFSET, SET/RESET 電路,不會出現磁飽和現象,不會有累加誤差。 4,支持自動校準程序,簡化使用步驟,終端產品使用非常方便。 5,內置自測試電路,方便量產測試,無需增加額外昂貴的測試設備。 6,功耗低:供電電壓1.8V, 功耗睡眠模式-2.5uA 測量模式-0.6mA   連接方法: 只要連接VCC,GND,SDA,SDL 四條線。 Arduino GND -> HMC5883L GND Arduino 3.3V -> HMC5883L VCC Arduino A4 (SDA) -> HMC5883L SDA Arduino A5 (SCL) -> HMC5883L SCL (注意,接線是A4,A5,不是D4,D5) 源程序: #include <Wire.h> #include <HMC5883L.h> HMC5883Lcompass; voidsetup() { Serial.begin(9600); Wire.begin(); compass = HMC5883L(); compass.SetScale(1.3); compass.SetMeasurementMode(Measurement_Continuous); } voidloop() { MagnetometerRaw raw = compass.ReadRawAxis(); MagnetometerScaled scaled = compass.ReadScaledAxis(); float xHeading = atan2(scaled.YAxis, scaled.XAxis); float yHeading = atan2(scaled.ZAxis, scaled.XAxis); float zHeading = atan2(scaled.ZAxis, scaled.YAxis); if(xHeading < 0) xHeading += 2*PI; if(xHeading > 2*PI) xHeading -= 2*PI; if(yHeading < 0) yHeading += 2*PI; if(yHeading > 2*PI) yHeading -= 2*PI; if(zHeading < 0) zHeading += 2*PI; if(zHeading > 2*PI) zHeading -= 2*PI; float xDegrees = xHeading * 180/M_PI; float yDegrees = yHeading * 180/M_PI; float zDegrees = zHeading * 180/M_PI; Serial.print(xDegrees); Serial.print(","); Serial.print(yDegrees); Serial.print(","); Serial.print(zDegrees); Serial.println(";"); delay(100); }

    標簽: Arduino 5883L 5883 HMC

    上傳時間: 2013-12-16

    上傳用戶:stella2015

  • MR-E-A伺服手冊

    MR-E-A伺服手冊

    標簽: MR-E-A 伺服

    上傳時間: 2013-10-30

    上傳用戶:半熟1994

  • ADI在線工具簡化工程師的設計

      創新、效能、卓越是ADI公司的文化支柱。作為業界公認的全球領先數據轉換和信號調理技術領先者,我們除了提供成千上萬種產品以外,還開發了全面的設計工具,以便客戶在整個設計階段都能輕松快捷地評估電路。

    標簽: ADI 在線工具 工程師

    上傳時間: 2013-10-18

    上傳用戶:cxl274287265

  • MR-E-A伺服手冊

    MR-E-A伺服手冊

    標簽: MR-E-A 伺服

    上傳時間: 2013-10-16

    上傳用戶:liaocs77

  • Create a 1-Wire Master with Xilinx PicoBlaze

    Abstract: Designers who must interface 1-Wire temperature sensors with Xilinx field-programmable gate arrays(FPGAs) can use this reference design to drive a DS28EA00 1-Wire slave device. The downloadable softwarementioned in this document can also be used as a starting point to connect other 1-Wire slave devices. The systemimplements a 1-Wire master connected to a UART and outputs temperature to a PC from the DS28EA00 temperaturesensor. In addition, high/low alarm outputs are displayed from the DS28EA00 PIO pins using LEDs.

    標簽: PicoBlaze Create Master Xilinx

    上傳時間: 2013-11-12

    上傳用戶:大三三

  • AstroII-EVB-F1K(A)-L144開發板用戶指南

        AstroII-EVB-F1K(A)-L144開發板用戶指南

    標簽: AstroII-EVB-F 144 開發板 用戶

    上傳時間: 2013-11-08

    上傳用戶:liuchee

  • CV181L-A-20_Specification_V1.0(大功放)

    cv181l-a-20

    標簽: Specification_V 181 1.0 L-A

    上傳時間: 2013-10-20

    上傳用戶:ikemada

  • Employing a Single-Chip Transceiver in Femtocell Base-Station Applications

    Abstract: This application note discusses the development and deployment of 3G cellular femtocell base stations. The technicalchallenges for last-mile residential connectivity and adding system capacity in dense urban environments are discussed, with 3Gfemtocell base stations as a cost-effective solution. Maxim's 3GPP TS25.104-compliant transceiver solution is presented along withcomplete radio reference designs such as RD2550. For more information on the RD2550, see reference design 5364, "FemtocellRadio Reference Designs Using the MAX2550–MAX2553 Transceivers."

    標簽: Base-Station Applications Single-Chip Transceiver

    上傳時間: 2013-11-05

    上傳用戶:超凡大師

  • HLP-A、M、F、H變頻器說明書

    海麗普變頻器說明書

    標簽: HLP-A 變頻器 說明書

    上傳時間: 2013-11-10

    上傳用戶:二驅蚊器

主站蜘蛛池模板: 喜德县| 白玉县| 雷州市| 涿鹿县| 灵台县| 清远市| 紫阳县| 永寿县| 保德县| 邹城市| 新干县| 惠来县| 珲春市| 白城市| 汉沽区| 洱源县| 寿阳县| 合阳县| 鄂托克前旗| 民权县| 北流市| 乌苏市| 北辰区| 永年县| 政和县| 东乡县| 阳高县| 伊通| 鹤山市| 靖西县| 襄垣县| 海安县| 师宗县| 红桥区| 梧州市| 庄浪县| 织金县| 南漳县| 咸宁市| 正宁县| 贵南县|