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

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

micro-Controller

  • This book is about the programming and applying the PIC18F microcontrollers with C, with advanced ex

    This book is about the programming and applying the PIC18F microcontrollers with C, with advanced examples like SD memory, USB communication, CAN controller and RTOS.

    標簽: microcontrollers with programming the

    上傳時間: 2013-12-27

    上傳用戶:h886166

  • 在本教程中

    在本教程中,我們將基于 CLDC(連接有限設備配置,Connected Limited Device Configuration)和 MIDP(移動信息設備概要,Mobile Information Device Profile)API 構建一個名為 UniStocks 的典型 Java 2 Platform, Micro Edition(J2ME)應用程序。

    標簽: 教程

    上傳時間: 2013-12-10

    上傳用戶:jqy_china

  • This manual describes SAMSUNG s S3C2410X 16/32-bit RISC microprocessor. This product is designed to

    This manual describes SAMSUNG s S3C2410X 16/32-bit RISC microprocessor. This product is designed to provide hand-held devices and general applications with cost-effective, low-power, and high-performance microcontroller solution in small die size. To reduce total system cost, the S3C2410X includes the following components separate 16KB Instruction and 16KB Data Cache, MMU to handle virtual memory management, LCD Controller (STN & TFT), NAND Flash Boot Loader, System Manager (chip select logic and SDRAM Controller), 3-ch UART, 4-ch DMA, 4-ch Timers with PWM, I/O Ports, RTC, 8-ch 10-bit ADC and Touch Screen Interface, IIC-BUS Interface, IIS-BUS Interface, USB Host, USB Device, SD Host & Multi-Media Card Interface, 2-ch SPI and PLL for clock generation.

    標簽: This microprocessor describes S3C2410X

    上傳時間: 2014-01-11

    上傳用戶:shizhanincc

  • Commercially available active noise control headphones rely on fixed analog controllers to drive "an

    Commercially available active noise control headphones rely on fixed analog controllers to drive "anti-noise" loudspeakers. Our design uses an adaptive controller to optimally cancel unwanted acoustic noise. This headphone would be particularly useful for workers who operate or work near heavy machinery and engines because the noise is selectively eliminated. Desired sounds, such as speech and warning signals, are left to be heard clearly. The adaptive control algorithm is implemented on a Texas Instruments (TI™ ) 1 TMS320C30GEL digital signal processor (DSP), which drives a Sony CD550 headphone/microphone system. Our experiments indicate that adaptive noise control results in a dramatic improvement in performance over fixed noise control. This improvement is due to the availability of high-performance programmable DSPs and the self-optimizing and tracking capabilities of the adaptive controller in response to the surrounding noise.

    標簽: Commercially controllers headphones available

    上傳時間: 2013-12-04

    上傳用戶:dyctj

  • 基于FPGA的原理圖設計

    該原理圖采用CycloneV SOC FPGA設計的滿足多功能開發套件,主要接口包括以太網,USB接口,Micro-B等接口,非常適合初學者開發使用,歡迎下載。

    標簽: Cyclone,Altera,FPGA,生產

    上傳時間: 2015-03-04

    上傳用戶:renqiang2006

  • TJA1040

    The TJA1040 is an advanced high speed CAN transceiver for use in  automotive and general industrial applications. It supports the differential  bus signal representation described in the international standard for  in-vehicle high speed CAN applications (ISO11898). CAN (Controller Area  Network) is the standard protocol for serial in-vehicle bus communication,  particularly for Engine Management and Body Multiplexing. The TJA1040 provides a Standby mode, as known from its functional  predecessors PCA82C250 and PCA82C251, but with significantly  reduced power consumption. Besides the excellent low-power behavior  the TJA1040 offers several valuable system improvements. Highlights are  the absolute passive bus behavior if the device is unpowered as well as  the excellent EMC performance.

    標簽: CAN

    上傳時間: 2015-03-23

    上傳用戶:Yuan Lo

  • emWin用戶手冊

    emWin旨在提供一個高效、處理器和顯示controller-independent圖形用戶 界面(GUI)運行的任何應用程序的圖形化顯示。這是官方的用戶手冊

    標簽: emWin 圖形界面 參考手冊

    上傳時間: 2015-04-24

    上傳用戶:liudapang

  • 雅馬哈機器人操控軟件VIPplus

    VIP+ is support software for YAMAHA RCX series robot controllers. In addition to the functions of the previously released "VIP Windows" software, VIP+ includes an easy-to-use GUI (graphical user interface). VIP+ also allows control by 2 or more controllers or access to a controller from 2 or more clients via Ethernet connection. ● With VIP+ you can: ? Do offline editing of all data used on robot controllers ? Operate and monitor robots connected to robot controllers ? Do online editing of all data used with robot controllers ? Back up and restore robot controller data ● Functions and features newly added to VIP+: ? Ethernet connection to controllers ? Supports data input in spreadsheet software format ? Seamless backup and restoring of controller information such as point data ? Syntax coloring ? Data transfer between the online controller and an offline document by drag & drop ? Executes online commands using a terminal window ? Controller tree and document tree functions similar to Windows Explorer

    標簽: 雅馬哈 VIPplus

    上傳時間: 2015-11-18

    上傳用戶:anncol

  • SpringMVC設計

       springMVC有三個映射器,如果不定義映射Mapping,那么就會使默認: l   <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean> 也就是說:上面這個定義和不定義都是一樣的。 不定義: <bean id="testController" name="/hello.do" class="cn.itcast.controller.TestController"></bean> 直接使用:hello.do來訪問。 <!-- 簡單的url映射處理器 --> l   <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">                    <property name="mappings">                             <props>          那么上面的這個映射配置:表示多個*.do文件可以訪問多個Controller或者一個Controller。          前提是:都必須依賴:          <bean id="testController" name="/hello.do" class="cn.itcast.controller.TestController"></bean>          <!-- /WEB-INF/jsp/index.jsp -->          <bean class="org.springframework.web.servl                                      <prop key="/hello1.do">testController</prop>                                      <prop key="/a.do">testController</prop>                             </props>                    </property> </bean> et.view.InternalResourceViewResolver">                    <property name="prefix" value="/WEB-INF/jsp/"></property>                    <property name="suffix" value=".jsp"></property>          </bean>

    標簽: SpringMVC

    上傳時間: 2016-06-03

    上傳用戶:hthunder

  • 面向微機電系統組裝與封裝的微操作裝備關鍵技術

    對微機電系統(Micro electro mechanical systems,MEMS)組裝與封裝工藝的特點進行了總結分析,給出了MEMS組裝與封裝設備的研究現狀。針對MEMS產業發展的特點,分析了面向MEMS組裝與封裝的微操作設備中的工藝參數優化數據庫、快速精密定位、模塊化作業工具、快速顯微視覺、柔性裝夾和自動化物流等關鍵技術。在此基礎上,詳細介紹了研制的MEMS傳感器陽極化鍵合設備和引線鍵合設備的組成結構,工作原理,并給出了組裝和封裝試驗結果。最后,指出了MEMS組裝與封裝技術及設備研制的發展趨勢。

    標簽: 微機電系統 封裝 關鍵技術 操作

    上傳時間: 2016-07-26

    上傳用戶:leishenzhichui

主站蜘蛛池模板: 东丰县| 梁河县| 温宿县| 霍邱县| 永胜县| 枣庄市| 望都县| 东辽县| 油尖旺区| 高尔夫| 额济纳旗| 开远市| 水城县| 松潘县| 颍上县| 宁河县| 霍城县| 潜山县| 应城市| 昔阳县| 潞城市| 东乌珠穆沁旗| 封开县| 塘沽区| 泗水县| 张家川| 随州市| 新乡县| 卓资县| 阿拉尔市| 旌德县| 益阳市| 京山县| 德化县| 德惠市| 六盘水市| 昌都县| 琼海市| 盐津县| 定兴县| 璧山县|