This programming manual provides information for application and system-level softwaredevelopers. It gives a full description of the STM32F3 and STM32F4 Series Cortex?-M4processor programming model, instruction set and core peripherals.
標(biāo)簽: stm32f7
上傳時間: 2021-12-02
上傳用戶:
Multisim仿真Multisim數(shù)電模電仿真實例源碼100例,08數(shù)控本二 07.ms1010-10-4串聯(lián)型直流穩(wěn)壓電路(2).ms724小時時鐘(full)改.ms104位數(shù)字頻率計.ms10559.ms10ADC電壓顯示1.ms12BIN2BCD電路.ms10FM解調(diào).ms14FM解調(diào).ms14 (Security copy)LED調(diào)光電路.pdsprjLM324簡-易-電-子-琴-.ms10MC1496應(yīng)用2.ms10Multisim 13.0仿真OP07CP兩級放大.rarMUltisim 仿真作品集.zipOCL功率放大器電路.ms12OP07CP兩級差動放大.ms13TL494 5V DC-DC.ms14UC3843升壓控制電路.ms14UC3843芯片的DC-DC升壓電路.ms14XUNKE936防靜電焊臺電路圖.ms12zhongji電路.ms10三極管單按鈕開關(guān)電路.ms10三極管線性穩(wěn)壓電路.ms10三相電源錯相、斷相保護(hù)電路.ms10乘法器.ms14交流電源防盜報警器.ms14交通信號燈_X.ms12交通燈(74LS163、74LS153、74LS74).ms13倒計時定時器 (1).ms10倒計時定時器.ms10倒計時定時器A【74LS161 74LS192】.ms10六路20秒聲光顯示計分搶答器.ms14減法.ms12四種波形發(fā)生器-741.ms14四路20秒聲光顯示計分搶答器.ms14四路帶計分系統(tǒng)搶答器.rar四路流水燈.ms10四階帶通濾波.ms14四階帶通濾波.ms14 (Security copy)多色流水燈.ms10字發(fā)生+共陽數(shù)碼管顯示電路.ms10小信號放大電路.ms10差分比例電路+比例放大.ms14搶答器 (1).ms10搶答器.ms10數(shù)字時鐘設(shè)計2.ms12數(shù)字電子鐘仿真電路圖.ms10數(shù)字電子鐘仿真電路圖2X.ms10數(shù)字鐘X.ms10數(shù)字頻率計(帶量程).ms14數(shù)字頻率計.ms10李薩如圖.ms10模擬打兵乓球電路.ms10汽車尾燈控制電路2.ms10汽車尾燈顯示控制電路.ms10汽車指示燈設(shè)計孫昱.docx混沌電路.ms10火災(zāi)報警.jpg電容測量電路.ms10電機(jī)正反轉(zhuǎn)接觸器應(yīng)用.ms12電路2.ms10電路3.ms10電風(fēng)扇.ms10簡易洗衣機(jī).ms10簡易洗衣機(jī)2.ms10簡易洗衣機(jī)2當(dāng).ms14籃球30秒計時器_X.ms13設(shè)計1.ms14設(shè)計2.ms14設(shè)計2.ms14 (Security copy)設(shè)計201405292100八路搶答器.ms10設(shè)計201405301500骰子模擬電路.ms10設(shè)計201406252300多色流水燈.ms10設(shè)計21.ms14設(shè)計3.ms14設(shè)計3.ms14 (Security copy)路燈節(jié)能控制.ms10輸出電壓可調(diào)的穩(wěn)壓源.ms14輸出電壓可調(diào)的穩(wěn)壓源.ms14 (Security copy)鎖相環(huán).ms7音量控制電路.ms10音頻IRF610耳放.ms13音頻功率放大器.ms14
標(biāo)簽: multisim
上傳時間: 2021-12-12
上傳用戶:
This Section covers the design of power transformers used in buck-derived topologies: forward converter, bridge, half-bridge, and full-wave centertap. Flyback transformers (actually coupled inductors) are covered in a later Section. For more specialized applications, the principles discussed herein will generally apply.
上傳時間: 2021-12-16
上傳用戶:fliang
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 //復(fù)位信號,低電平有效 );//-----------------------------------------------------------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)
標(biāo)簽: fpga fifo verilog quartus
上傳時間: 2021-12-19
上傳用戶:20125101110
Keil激活_Keygen-Decompressed-Full-2030.zip
標(biāo)簽: Keil
上傳時間: 2022-01-28
上傳用戶:
The PW3130 series product is a high integration solution for lithium-lion/polymer batteryprotection.PW3130 contains advanced power MOSFET, high-accuracy voltage detection circuits anddelay circuits. PW3130 is put into an ultra-small SOT23-5 package and only one external componentmakes it an ideal solution in limited space of battery pack. PW3130 has all the protection functionsrequired in the battery application including overcharging, overdischarging, overcurrent and loadshort circuiting protection etc. The accurate overcharging detection voltage ensures safe and fullutilization charging.The low standby current drains little current from the cell while in storage. Thedevice is not only targeted for digital cellular phones, but also for any other Li-Ion and Li-Polybattery-powered information appliances requiring long-term battery life
標(biāo)簽: pw3130
上傳時間: 2022-02-11
上傳用戶:fliang
InGaAs/AlGaAs semiconductor lasers come in threetypes: VCSELs and two types of EELs. The VCSEL, asits name implies, emits vertically, normal to the planeof the device, owing to cavity mirrors grown withinthe epitaxial material itself. The VCSEL’s circular beamhas a numerical aperture (NA) of roughly 0.2, or a fullangle of approximately 25 degrees.
標(biāo)簽: tof
上傳時間: 2022-02-12
上傳用戶:
The PW8205A8TS is the highest performance trench N-ch MOSFETs with extreme high cell density,which provide excellent RDSON and gate charge for most of the small power switching and loadswitch applications. The meet the RoHS and Product requirement with full function reliabilityapproved .
標(biāo)簽: 8205a8
上傳時間: 2022-02-14
上傳用戶:wangshoupeng199
Single chip TFT-LCD Controller/Driver with On-chip Frame Memory (FM) Display Resolution: 240*RGB (H) *320(V) Frame Memory Size: 240 x 320 x 18-bit = 1,382,400 bits LCD Driver Output Circuits- Source Outputs: 240 RGB Channels- Gate Outputs: 320 Channels- Common Electrode Output Display Colors (Color Mode)- Full Color: 262K, RGB=(666) max., Idle Mode Off- Color Reduce: 8-color, RGB=(111), Idle Mode On Programmable Pixel Color Format (Color Depth) for Various Display Data input Format- 12-bit/pixel: RGB=(444)- 16-bit/pixel: RGB=(565)- 18-bit/pixel: RGB=(666) MCU Interface- Parallel 8080-series MCU Interface (8-bit, 9-bit, 16-bit & 18-bit)- 6/16/18 RGB Interface(VSYNC, HSYNC, DOTCLK, ENABLE, DB[17:0])- Serial Peripheral Interface(SPI Interface)- VSYNC Interface
上傳時間: 2022-03-04
上傳用戶:
在半導(dǎo)體制冷技術(shù)的工作性能及其優(yōu)缺點研究的基礎(chǔ)上,設(shè)計了以單片機(jī)為核心控制元件,以TEC1-12706為執(zhí)行元件的半導(dǎo)體制冷溫度控制系統(tǒng)。采用高精度分段式PID控制算法配合PWM輸出控制的方法實現(xiàn)溫度控制;選擇數(shù)字傳感器DS18B20為溫度檢測元件,還包含1602液晶顯示模塊、按鍵調(diào)整輸入模塊和H橋驅(qū)動模塊等。實際測試表明,該系統(tǒng)結(jié)構(gòu)簡單易行,操作方便,工作性能優(yōu)良,同時針對該系統(tǒng)專門設(shè)計的溫控算法,使半導(dǎo)體制冷器能更好地適應(yīng)不同工況而充分發(fā)揮其制冷制熱工作特性。Based on the study of the performance and advantages and disadvantages of thermoelectric cooler(TEC)technology,a thermoelectric cooling temperature control system with single-chip microcomputer as the core control element and TEC1-12706 as the executive element was designed. High precision piecewise PID control algorithm combined with PWM output control method is adopted to realize temperature control. The digital sensor DS18B20 is selected as the temperature detection element. It also includes 1602 LCD module,key adjustment input module and H bridge drive module. The actual test shows that the system has simple structure,convenient operation and excellent performance. Meanwhile,the temperature control algorithm specially designed for the system can make the semiconductor cooler better adapt to different working conditions and give full play to its refrigeration and heating characteristics.
標(biāo)簽: 半導(dǎo)體 溫度控制系統(tǒng)
上傳時間: 2022-03-27
上傳用戶:
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1