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

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

中穎單片機

  • Windows CE.Net 5.0 的相機驅(qū)動程式原始碼

    Windows CE.Net 5.0 的相機驅(qū)動程式原始碼,簡單修改後可用!

    標簽: Windows 5.0 Net CE

    上傳時間: 2013-12-24

    上傳用戶:caixiaoxu26

  • 時間片輪詢程序

    基于51單片機的時間片輪訓程序,程序中有五個任務。 1.按鍵1掃描任務 2.按鍵2掃描任務 3.led1驅(qū)動任務 4.led2驅(qū)動任務 5.led3驅(qū)動任務

    標簽: 程序

    上傳時間: 2019-05-21

    上傳用戶:zhai8765

  • 開源RTOS在STM32單片機中的應用

    傳統(tǒng)的嵌入式程序設計,主要采用前/ 后臺系統(tǒng)或超級循環(huán)系統(tǒng),應用程序是一個無限循環(huán),循環(huán)中 調(diào)用相應的函數(shù)完成操作,中斷服務程序處理異步事件,這種系統(tǒng)處理信息的實時性較差,RTOS(實時操作 系統(tǒng))解決了這一問題。如果把RTOS 應用在ARM Cortex- M3 架構的單片機上,配合其先進的硬件設計, 將使嵌入式軟件的實時性能產(chǎn)生質(zhì)的飛躍。

    標簽: RTOS STM 32 開源 單片機 中的應用

    上傳時間: 2020-03-15

    上傳用戶:moon

  • ARM SoC體系結構

    內(nèi)容簡介 介紹了一般微處押器核鮒設計原理、基于微處邦器核的SoC設計的其本機念甜方法,通過對ARM系列處理器核和 CPU核的詳小描述,說明微處理器及外接口的設計原理和方法。同時也綜述了ARM系列她理器核和最新ARM核的 研發(fā)戰(zhàn)果以政ARM和Thmb踹積模型,對SC設計中涉及到的行儲器層次、 Cache存儲器管誣、片上總線片|:調(diào)和 產(chǎn)品測試等主要間黥進行了論述。在此基礎上給出了幾個基于ARM核的SoC嵌人式應用的實例。最后對基于異步設計 的ARM核 AMCLET及異步SUC子系統(tǒng) AMUlET3打的研究進行了介紹 木書的特點是將基于ARM微處理器核的SC設計和實際恢人式系統(tǒng)的應用集成于一體,對于基于ARM核的S設計 和嵌λ式系統(tǒng)開發(fā)者來說是一本很好的參考手冊。可用作計算機科學拉術與應用電氣T程、電∫科學與技術專業(yè)科牛及碩 研究生的教材,也可作為從事集成電路設計的[程技術人員、于ARM的嵌入式系統(tǒng)應用開發(fā)技術入員的參考書。

    標簽: ARM SoC

    上傳時間: 2020-04-02

    上傳用戶:hongpixiaozhu

  • 仿真模擬翅片的實現(xiàn)

    用于FLUENT中模擬矩形腔內(nèi)添加翅片的情形

    標簽: 仿真模擬

    上傳時間: 2020-05-22

    上傳用戶:學無止境2020

  • FPGA片內(nèi)FIFO讀寫測試Verilog邏輯源碼Quartus工程文件+文檔說明 使用 FPGA

    FPGA片內(nèi)FIFO讀寫測試Verilog邏輯源碼Quartus工程文件+文檔說明,使用 FPGA 內(nèi)部的 FIFO 以及程序?qū)υ?FIFO 的數(shù)據(jù)讀寫操作。FPGA型號Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。timescale 1ns / 1ps//////////////////////////////////////////////////////////////////////////////////module fifo_test( input clk,           //50MHz時鐘 input rst_n              //復位信號,低電平有效 );//-----------------------------------------------------------localparam      W_IDLE      = 1;localparam      W_FIFO     = 2; localparam      R_IDLE      = 1;localparam      R_FIFO     = 2; reg[2:0]  write_state;reg[2:0]  next_write_state;reg[2:0]  read_state;reg[2:0]  next_read_state;reg[15:0] w_data;    //FIFO寫數(shù)據(jù)wire      wr_en;    //FIFO寫使能wire      rd_en;    //FIFO讀使能wire[15:0] r_data; //FIFO讀數(shù)據(jù)wire       full;  //FIFO滿信號 wire       empty;  //FIFO空信號 wire[8:0]  rd_data_count;  wire[8:0]  wr_data_count;  ///產(chǎn)生FIFO寫入的數(shù)據(jù)always@(posedge clk or negedge rst_n)begin if(rst_n == 1'b0) write_state <= W_IDLE; else write_state <= next_write_state;endalways@(*)begin case(write_state) W_IDLE: if(empty == 1'b1)               //FIFO空, 開始寫FIFO next_write_state <= W_FIFO; else next_write_state <= W_IDLE; W_FIFO: if(full == 1'b1)                //FIFO滿 next_write_state <= W_IDLE; else next_write_state <= W_FIFO; default: next_write_state <= W_IDLE; endcaseendassign wr_en = (next_write_state == W_FIFO) ? 1'b1 : 1'b0; always@(posedge clk or negedge rst_n)begin if(rst_n == 1'b0) w_data <= 16'd0; else    if (wr_en == 1'b1)     w_data <= w_data + 1'b1; else          w_data <= 16'd0; end///產(chǎn)生FIFO讀的數(shù)據(jù)always@(posedge clk or negedge rst_n)begin if(rst_n == 1'b0) read_state <= R_IDLE; else read_state <= next_read_state;endalways@(*)begin case(read_state) R_IDLE: if(full == 1'b1)               //FIFO滿, 開始讀FIFO next_read_state <= R_FIFO; else next_read_state <= R_IDLE; R_FIFO: if(empty == 1'b1)   

    標簽: fpga fifo verilog quartus

    上傳時間: 2021-12-19

    上傳用戶:20125101110

  • STM32L011和STM32F091空片檢測進行System Bootloader編程注意事項

    部分STM32 是具有空片檢測功能的,以便直接進入System Memory 中執(zhí)行Bootloader,方便通過某些個外設來直接進行編程。比如STM32L011xx、STM32L021xx、STM32F04x和STM32F09x。有看過《STM32F091 空片使用System Bootloader下載代碼》和《STM32L011x 和STM32L021x啟動模式注意事項》的都知道這個功能。

    標簽: stm32l011 stm32f091

    上傳時間: 2022-02-22

    上傳用戶:

  • 電流檢測電路中運算放大器與ADC的設計

    電學中的測量技術涉及范圍非常廣,電流測量在電學計量中占有非常重要的位置。如何精確地進行電流測量是精密測量的一大難題。傳統(tǒng)的電流檢測電路多采用運算放大芯片與片外電流檢測電路相結合的方式,電路集成度很低,需要較多的接口和資源才能完成對電路的檢測。本文把所有電路部分都集成在一塊芯片上,包括檢測電阻,運算放大器電路及模擬轉(zhuǎn)數(shù)字轉(zhuǎn)換電路,從而在電路內(nèi)部可以進行電流檢測,使電路更好的集成化。前置電路使用二級共源共柵結構的運算放大器,減小溝道長度調(diào)制效應造成的電流誤差。10位SAR ADC中采用電容驅(qū)動能力強的傳輸門保證了模數(shù)轉(zhuǎn)化器的有效精度。比較器模塊采用再生鎖存器與遲滯比較器作為基礎單元組合解決精密測量的問題。本設計可以作為嵌入芯片內(nèi)的一小部分而檢測芯片中的微小電流1mA~100mA,工作電壓在1.8v左右,電流檢測精度預期達到10uA的需求。The measurement technology in electricity involves a wide range,and current measurement plays a very important position in electrical measurement.How to accurately measure current is a big problem in precision measurement. The traditional current detecting circuit adopts the combination of the operational amplifier chip and theoff-chip current detecting circuit, The circuit integration is very low, and more interfaces and resources are needed tocomplete the circuit detection.This topic integrates all the circuit parts into one chip, including detection resistance, operational amplifier circuit andanalog to digital conversion circuit. Highly integrated circuit makes the external resources on the chip more intensive,so that current detection can be carried out inside the circuit, so that the circuit can be better integrated. Thefront-end circuit of this project uses two-stage cascade operational amplifier and cascade tube to reduce the currenterror caused by channel length modulation effect. In 10-bit SAR ADC, the transmission gate with strong capacitivedriving ability ensures the effective accuracy of the analog-to-digital converter. Comparator module uses regenerativelatch and hysteresis comparator as basic unit to solve the difficult problem of precision measurement. This topic can beused as a small part of the embedded chip to detect the micro-current in the chip 1 mA~100 mA, the working voltageis about 1.8v, and the current detection accuracy is expected to reach the requirement of 10 uA.

    標簽: 電流檢測 電路 運算放大器 adc

    上傳時間: 2022-04-03

    上傳用戶:

  • 觸控彈簧 跳線座 冷壓插片 Altium封裝 AD封裝庫 2D+3D PCB封裝庫-4MB

    觸控彈簧 跳線座 冷壓插片 Altium封裝 AD封裝庫 2D+3D PCB封裝庫-4MBAltium Designer設計的PCB封裝庫文件,集成2D和3D封裝,可直接應用的到你的產(chǎn)品設計中。PCB庫封裝列表:PCB Library : 跳線座.PcbLibDate        : 2020/6/9Time        : 5:43:08Component Count : 48Component Name-----------------------------------------------Wire - 3mmWire - 4mmWire - 5mmWire - 6mmWire - 7mmWire - 8mmWire - 9mmWire - 10mmWire - 11mmWire - 12mmWire - 13mmWire - 14mmWire - 15mmWire - 16mmWire - 17mmWire - 18mmWire - 19mmWire - 20mmWire - 21mmWire - 22mmWire - 23mmWire - 24mmWire - 25mmWire - 26mmWire - 27mmWire - 28mmWire - 29mmWire - 30mmWire - 31mmWire - 32mmWire - 33mmWire - 34mmWire - 35mmWire - 36mmWire - 37mmWire - 38mmWire - 39mmWire - 40mmWire - 41mmWire - 42mmWire - 43mmWire - 44mmWire - 45mmWire - 46mmWire - 47mmWire - 48mmWire - 49mmWire - 50mm

    標簽: Altium designer 封裝

    上傳時間: 2022-05-04

    上傳用戶:

  • INAV-configurator-1.9.3.zip 新版本無人機 刷機用

    新版本無人機.刷機用借助此實際應用程序,管理無人機的所有區(qū)域,例如電動機,GPS,傳感器,陀螺儀,接收器,端口和固件INAV-Chrome 的配置器中的新功能:修復了導致加速度計校準失敗的錯誤支持DJI FPV系統(tǒng)配置輸出選項卡中的怠速節(jié)氣門和馬達極現(xiàn)在可以在“混合器”選項卡中選擇“漫遊者”和“船用”平臺。 固件方面的支持仍然有限!閱讀完整的變更日誌 在過去的幾年中,無人駕駛飛機取得了相當大的進步,越來越多的人能夠獲取和使用無人機。 不用說,無人機可以基於特定固件在一組命令上運行。 在這方面, 用於Chrome的INAV-Configurator隨附的工具可幫助您輕鬆配置無人機的各個方面。支持多種硬件配置首先要提到的一件事是,要求Google Chrome瀏覽器能夠訪問INAV-Chrome的配置器功能。 儘管它已集成到Chrome中,但它可以作為獨立應用程序運行,甚至可以脫機使用,而與瀏覽器無關。 您甚至可以從Google Apps菜單為其創(chuàng)建桌面快捷方式。不用說,另一個要求是實際的飛行裝置。 該應用程序支持所有支持INAV的硬件配置,例如Sirius AIR3,SPRacingF3,Vortex,Sparky,DoDo,CC3D / EVO,F(xiàn)lip32 / + / Deluxe,DragonFly32,CJMCU Microquad,Chebuzz F3,STM32F3Discovery,Hermit ,Naze32 Tricopter框架和Skyline32。該窗口非常直觀,並提供各種令人印象深刻的提示和文檔。 在上方的工具欄上,您可以找到連接選項,這些選項可以通過COM端口,手動選擇或無線模式進行。 您也可以選擇自動連接。 連接後,您可以在上方的工具欄中查看設備的功能,並在側(cè)面板中輕鬆瀏覽配置選項。管理傳感器,電機,端口和固件本。

    標簽: configurator 無人機

    上傳時間: 2022-06-09

    上傳用戶:

主站蜘蛛池模板: 子长县| 玉龙| 五台县| 沙坪坝区| 武汉市| 通河县| 屏东市| 固始县| 绿春县| 葵青区| 内乡县| 区。| 盐池县| 高碑店市| 宣汉县| 南通市| 彭阳县| 修武县| 元阳县| 河北省| 顺平县| 巩留县| 侯马市| 文登市| 桃园市| 革吉县| 四会市| 翼城县| 蓬溪县| 新龙县| 河北省| 应城市| 荣成市| 马公市| 陈巴尔虎旗| 甘泉县| 中卫市| 合山市| 三江| 彩票| 枣庄市|