DSPF2812标准头文件源文件CMD文件
2023-03-02 14:13:43 46KB F2812库文件
1
基于DSPF2812的双无刷直流电机PID控制程序,利用EVA、EVB各自控制一台电机。
2022-06-17 16:33:46 559KB DSPF2812 无刷直流电机 PID
1
DSPF2812双闭环PI控制电机程序,希望大家能用得到
2022-03-22 14:53:46 174KB DSP
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
这个是在CCS6.0 中新建的2812 的工程,有head库和common库,建好的工程是烧写到FLASH中去的 ,启动时先将代码copy到RAM中运行的,这是个1602的工程,不需要要可以删除
2021-10-12 10:55:31 209KB CCS6.0 ,DSPF2812 ,flash下载
1
基于DSPF2812的电机闭环控制程序,带有串口通信功能,与PC连接。
2021-06-16 19:06:15 968KB DSPF2812 串口通信
1
这是一个用TMS320F2812 DSP 实现PWM 的程序
2020-01-10 03:10:40 113KB PWM
1
利用DSPF2812实现的双闭环控制电机程序,对从事异步电机控制的人而言可能有所帮助
2020-01-10 03:06:59 174KB DSP 2812 电机控制
1
此为在ccs平台下,用c语言写的电机控制程序实例
2019-12-21 19:49:20 173KB dsp
1
简单的F2812的发出PWM波形的控制程序 操作DSP2812的EV产生PWM
2019-12-21 19:32:30 1.34MB DSPF2812 PWM
1