该例程包含EFM32单片机所有基本功能以及外设接口配置。 支持keil和IAR工程
2022-04-12 13:26:02 37.79MB EFM32 EFM32官方例程 周立功EFM32
1
msp430g2553官方例程 很好很全面
2022-04-03 12:19:16 477KB msp g2553
1
This application note explains the differences between external EEPROM and embedded Flash memory, and it describes a software method for emulating EEPROM using the onchip Flash memory of the STM32F10x devices. This document also focuses on some embedded aspects in emulated EEPROM data storage, that the reader is assumed to know.
2022-03-22 13:57:23 1.97MB STM32F eeprom flash AN2594
1
Silicon Laboratory 的官方C8051F例程,包含各个型号MCU,可作为编程时的参考或者入门的学习。
2022-03-13 13:40:23 9.72MB C8051F 官方例程
1
GD32基于USB-UVC1.0协议的Camera官方例程,亲测可用,例程本身基于GD32F450、F207;方便移植到其他系列。
2022-02-24 14:06:00 506KB uv 其他 stm32 arm
1
LaunchPad(MSP430G2553)_官方例程,依照官方程序逐一理解,正确学习MSP430G2553技术,不走弯路。
2022-02-23 23:32:37 184KB MSP430G2553 官方 例程 程序
1
#include "DSP281x_Device.h" // DSP281x Headerfile Include File #include "DSP281x_Examples.h" // DSP281x Examples Include File #pragma CODE_SECTION(eva_timer1_isr, "ramfuncs"); #pragma CODE_SECTION(eva_timer2_isr, "ramfuncs"); #pragma CODE_SECTION(evb_timer3_isr, "ramfuncs"); // Prototype statements for functions found within this file. interrupt void eva_timer1_isr(void); void init_eva_timer1(void); // Global variables used in this example Uint32 EvaTimer1InterruptCount; // These are defined by the linker (see F2812.cmd) extern Uint16 RamfuncsLoadStart; extern Uint16 RamfuncsLoadEnd; extern Uint16 RamfuncsRunStart; void main(void) { InitSysCtrl(); DINT; InitPieCtrl(); IER = 0x0000; IFR = 0x0000; InitPieVectTable(); EALLOW; // This is needed to write to EALLOW protected registers PieVectTable.T1PINT = &eva_timer1_isr; EDIS; // This is needed to disable write to EALLOW protected registers init_eva_timer1(); MemCopy(&RamfuncsLoadStart, &RamfuncsLoadEnd, &RamfuncsRunStart); InitFlash(); EvaTimer1InterruptCount = 0; PieCtrlRegs.PIEIER2.all = M_INT4; IER |= M_INT2; EINT; // Enable Global interrupt INTM ERTM; // Enable Global realtime interrupt DBGM while(1); }
2022-02-10 09:21:42 211KB dspf2812
1
STM32F103ZET(基于秉火开发板)+Cubemx(F1 V1.60库)+RTC(修复官方例程日期不更新bug)程序 这篇文章的工程代码
2022-01-20 22:05:16 27.86MB stm32 /RTC /Cubemx /HAL
1
LSTM官方例程的电影评论数据集 imdb.pkl
2022-01-19 22:20:11 31.67MB LSTM 数据集 imdb.pkl
1
TP900掌机的官方例程,网上download,一直在忙于别的项目,无时间研究,希望对别的网友能派上用场
2022-01-18 14:37:25 288KB TP900
1