Windows CE.Net 5.0 的相機(jī)驅(qū)動(dòng)程式原始碼,簡(jiǎn)單修改後可用!
上傳時(shí)間: 2013-12-24
上傳用戶(hù):caixiaoxu26
基于51單片機(jī)的時(shí)間片輪訓(xùn)程序,程序中有五個(gè)任務(wù)。 1.按鍵1掃描任務(wù) 2.按鍵2掃描任務(wù) 3.led1驅(qū)動(dòng)任務(wù) 4.led2驅(qū)動(dòng)任務(wù) 5.led3驅(qū)動(dòng)任務(wù)
標(biāo)簽: 程序
上傳時(shí)間: 2019-05-21
上傳用戶(hù):zhai8765
傳統(tǒng)的嵌入式程序設(shè)計(jì),主要采用前/ 后臺(tái)系統(tǒng)或超級(jí)循環(huán)系統(tǒng),應(yīng)用程序是一個(gè)無(wú)限循環(huán),循環(huán)中 調(diào)用相應(yīng)的函數(shù)完成操作,中斷服務(wù)程序處理異步事件,這種系統(tǒng)處理信息的實(shí)時(shí)性較差,RTOS(實(shí)時(shí)操作 系統(tǒng))解決了這一問(wèn)題。如果把RTOS 應(yīng)用在ARM Cortex- M3 架構(gòu)的單片機(jī)上,配合其先進(jìn)的硬件設(shè)計(jì), 將使嵌入式軟件的實(shí)時(shí)性能產(chǎn)生質(zhì)的飛躍。
標(biāo)簽: RTOS STM 32 開(kāi)源 單片機(jī) 中的應(yīng)用
上傳時(shí)間: 2020-03-15
上傳用戶(hù):moon
內(nèi)容簡(jiǎn)介 介紹了一般微處押器核鮒設(shè)計(jì)原理、基于微處邦器核的SoC設(shè)計(jì)的其本機(jī)念甜方法,通過(guò)對(duì)ARM系列處理器核和 CPU核的詳小描述,說(shuō)明微處理器及外接口的設(shè)計(jì)原理和方法。同時(shí)也綜述了ARM系列她理器核和最新ARM核的 研發(fā)戰(zhàn)果以政ARM和Thmb踹積模型,對(duì)SC設(shè)計(jì)中涉及到的行儲(chǔ)器層次、 Cache存儲(chǔ)器管誣、片上總線片|:調(diào)和 產(chǎn)品測(cè)試等主要間黥進(jìn)行了論述。在此基礎(chǔ)上給出了幾個(gè)基于ARM核的SoC嵌人式應(yīng)用的實(shí)例。最后對(duì)基于異步設(shè)計(jì) 的ARM核 AMCLET及異步SUC子系統(tǒng) AMUlET3打的研究進(jìn)行了介紹 木書(shū)的特點(diǎn)是將基于ARM微處理器核的SC設(shè)計(jì)和實(shí)際恢人式系統(tǒng)的應(yīng)用集成于一體,對(duì)于基于ARM核的S設(shè)計(jì) 和嵌λ式系統(tǒng)開(kāi)發(fā)者來(lái)說(shuō)是一本很好的參考手冊(cè)。可用作計(jì)算機(jī)科學(xué)拉術(shù)與應(yīng)用電氣T程、電∫科學(xué)與技術(shù)專(zhuān)業(yè)科牛及碩 研究生的教材,也可作為從事集成電路設(shè)計(jì)的[程技術(shù)人員、于ARM的嵌入式系統(tǒng)應(yīng)用開(kāi)發(fā)技術(shù)入員的參考書(shū)。
上傳時(shí)間: 2020-04-02
上傳用戶(hù):hongpixiaozhu
用于FLUENT中模擬矩形腔內(nèi)添加翅片的情形
標(biāo)簽: 仿真模擬
上傳時(shí)間: 2020-05-22
上傳用戶(hù):學(xué)無(wú)止境2020
FPGA片內(nèi)FIFO讀寫(xiě)測(cè)試Verilog邏輯源碼Quartus工程文件+文檔說(shuō)明,使用 FPGA 內(nèi)部的 FIFO 以及程序?qū)υ?FIFO 的數(shù)據(jù)讀寫(xiě)操作。FPGA型號(hào)Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。timescale 1ns / 1ps//////////////////////////////////////////////////////////////////////////////////module fifo_test( input clk, //50MHz時(shí)鐘 input rst_n //復(fù)位信號(hào),低電平有效 );//-----------------------------------------------------------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寫(xiě)數(shù)據(jù)wire wr_en; //FIFO寫(xiě)使能wire rd_en; //FIFO讀使能wire[15:0] r_data; //FIFO讀數(shù)據(jù)wire full; //FIFO滿信號(hào) wire empty; //FIFO空信號(hào) wire[8:0] rd_data_count; wire[8:0] wr_data_count; ///產(chǎn)生FIFO寫(xiě)入的數(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空, 開(kāi)始寫(xiě)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滿, 開(kāi)始讀FIFO next_read_state <= R_FIFO; else next_read_state <= R_IDLE; R_FIFO: if(empty == 1'b1)
標(biāo)簽: fpga fifo verilog quartus
上傳時(shí)間: 2021-12-19
上傳用戶(hù):20125101110
部分STM32 是具有空片檢測(cè)功能的,以便直接進(jìn)入System Memory 中執(zhí)行Bootloader,方便通過(guò)某些個(gè)外設(shè)來(lái)直接進(jìn)行編程。比如STM32L011xx、STM32L021xx、STM32F04x和STM32F09x。有看過(guò)《STM32F091 空片使用System Bootloader下載代碼》和《STM32L011x 和STM32L021x啟動(dòng)模式注意事項(xiàng)》的都知道這個(gè)功能。
上傳時(shí)間: 2022-02-22
上傳用戶(hù):
電學(xué)中的測(cè)量技術(shù)涉及范圍非常廣,電流測(cè)量在電學(xué)計(jì)量中占有非常重要的位置。如何精確地進(jìn)行電流測(cè)量是精密測(cè)量的一大難題。傳統(tǒng)的電流檢測(cè)電路多采用運(yùn)算放大芯片與片外電流檢測(cè)電路相結(jié)合的方式,電路集成度很低,需要較多的接口和資源才能完成對(duì)電路的檢測(cè)。本文把所有電路部分都集成在一塊芯片上,包括檢測(cè)電阻,運(yùn)算放大器電路及模擬轉(zhuǎn)數(shù)字轉(zhuǎn)換電路,從而在電路內(nèi)部可以進(jìn)行電流檢測(cè),使電路更好的集成化。前置電路使用二級(jí)共源共柵結(jié)構(gòu)的運(yùn)算放大器,減小溝道長(zhǎng)度調(diào)制效應(yīng)造成的電流誤差。10位SAR ADC中采用電容驅(qū)動(dòng)能力強(qiáng)的傳輸門(mén)保證了模數(shù)轉(zhuǎn)化器的有效精度。比較器模塊采用再生鎖存器與遲滯比較器作為基礎(chǔ)單元組合解決精密測(cè)量的問(wèn)題。本設(shè)計(jì)可以作為嵌入芯片內(nèi)的一小部分而檢測(cè)芯片中的微小電流1mA~100mA,工作電壓在1.8v左右,電流檢測(cè)精度預(yù)期達(dá)到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.
標(biāo)簽: 電流檢測(cè) 電路 運(yùn)算放大器 adc
上傳時(shí)間: 2022-04-03
上傳用戶(hù):
觸控彈簧 跳線座 冷壓插片 Altium封裝 AD封裝庫(kù) 2D+3D PCB封裝庫(kù)-4MBAltium Designer設(shè)計(jì)的PCB封裝庫(kù)文件,集成2D和3D封裝,可直接應(yīng)用的到你的產(chǎn)品設(shè)計(jì)中。PCB庫(kù)封裝列表: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
標(biāo)簽: Altium designer 封裝
上傳時(shí)間: 2022-05-04
上傳用戶(hù):
新版本無(wú)人機(jī).刷機(jī)用借助此實(shí)際應(yīng)用程序,管理無(wú)人機(jī)的所有區(qū)域,例如電動(dòng)機(jī),GPS,傳感器,陀螺儀,接收器,端口和固件INAV-Chrome 的配置器中的新功能:修復(fù)了導(dǎo)致加速度計(jì)校準(zhǔn)失敗的錯(cuò)誤支持DJI FPV系統(tǒng)配置輸出選項(xiàng)卡中的怠速節(jié)氣門(mén)和馬達(dá)極現(xiàn)在可以在“混合器”選項(xiàng)卡中選擇“漫遊者”和“船用”平臺(tái)。 固件方面的支持仍然有限!閱讀完整的變更日誌 在過(guò)去的幾年中,無(wú)人駕駛飛機(jī)取得了相當(dāng)大的進(jìn)步,越來(lái)越多的人能夠獲取和使用無(wú)人機(jī)。 不用說(shuō),無(wú)人機(jī)可以基於特定固件在一組命令上運(yùn)行。 在這方面, 用於Chrome的INAV-Configurator隨附的工具可幫助您輕鬆配置無(wú)人機(jī)的各個(gè)方面。支持多種硬件配置首先要提到的一件事是,要求Google Chrome瀏覽器能夠訪問(wèn)INAV-Chrome的配置器功能。 儘管它已集成到Chrome中,但它可以作為獨(dú)立應(yīng)用程序運(yùn)行,甚至可以脫機(jī)使用,而與瀏覽器無(wú)關(guān)。 您甚至可以從Google Apps菜單為其創(chuàng)建桌面快捷方式。不用說(shuō),另一個(gè)要求是實(shí)際的飛行裝置。 該應(yī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。該窗口非常直觀,並提供各種令人印象深刻的提示和文檔。 在上方的工具欄上,您可以找到連接選項(xiàng),這些選項(xiàng)可以通過(guò)COM端口,手動(dòng)選擇或無(wú)線模式進(jìn)行。 您也可以選擇自動(dòng)連接。 連接後,您可以在上方的工具欄中查看設(shè)備的功能,並在側(cè)面板中輕鬆瀏覽配置選項(xiàng)。管理傳感器,電機(jī),端口和固件本。
標(biāo)簽: configurator 無(wú)人機(jī)
上傳時(shí)間: 2022-06-09
上傳用戶(hù):
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1