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
这是一个关于DSP28377的例程,其采用C++语言进行编写,能够实现RAM功能,非常好。
2022-01-15 17:50:03 672KB 28377官方例程 dsp
例程合集包括,定时器扫描、EEPEOM、温度、时钟、串口、A/D、矩阵键盘、外部中断、点阵等
2022-01-15 11:41:51 670KB 模块例程
1
TI官方的DSP例程2812,包含头文件,源程序,和DSP的基本应用功能,值得学习
2022-01-14 20:41:47 669KB DSP 2812
1
leapmotion的官方例程,由于官方提供的例程需要自己建立项目, 此处可以参考一下这个建立项目的方式
2022-01-01 07:53:24 7.82MB C#
1
MSP430F169官方例程 MSP430F169官方例程 MSP430F169官方例程
2021-12-17 17:15:09 279KB MSP430 例程
1