⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pmsm3_4.h

📁 基于TMS320F2812的电动机控制源码(使用C语言)
💻 H
字号:
/* ==============================================================================
System Name:  PMSM34

File Name:	PMSM3_4.H

Description:	Primary system header file for the Real Implementation of Position Control
                Based Sensored Field Orientation Control for a Three Phase Permanent-
                Magnet Synchronous Motor (PMSM) using QEP sensor

Originator:		Digital control systems Group - Texas Instruments

Note: In this software, the default inverter is supposed to be DMC550 board. 
=====================================================================================
 History:
-------------------------------------------------------------------------------------
 04-15-2005	Version 3.20: Support both F280x and F281x targets 
 04-25-2005 Version 3.21: Move EINT and ERTM down to ensure that all initialization
 						  is completed before interrupts are allowed.
=================================================================================  */

#ifndef PMSM3_4_H
#define PMSM3_4_H

#include "target.h"

/*-------------------------------------------------------------------------------
Next, Include project specific include files.
-------------------------------------------------------------------------------*/
#include "park.h"       		// Include header for the PARK object 
#include "ipark.h"       		// Include header for the IPARK object 
#include "pid_reg3.h"       	// Include header for the PIDREG3 object 
#include "clarke.h"         	// Include header for the CLARKE object 
#include "svgen_dq.h"       	// Include header for the SVGENDQ object 
#include "rampgen.h"        	// Include header for the RAMPGEN object 
#include "rmp_cntl.h"       	// Include header for the RMPCNTL object 
#include "speed_fr.h"			// Include header for the SPEED_MEAS_QEP object 

#if (DSP_TARGET==F2808)
#include "f280x_en.h"        	// Include header for the DRIVE object 
#include "f280xqep.h"        	// Include header for the QEP object 
#include "f280xileg_vdc.h"      // Include header for the ILEG2DCBUSMEAS object
#include "f280xpwm.h"        	// Include header for the PWMGEN object 
#include "f280xpwmdac.h"		// Include header for the PWMDAC object 
#endif

#if (DSP_TARGET==F2812)
#include "f281x_en.h"        	// Include header for the DRIVE object 
#include "f281xqep.h"        	// Include header for the QEP object 
#include "f281xileg_vdc.h" 		// Include header for the ILEG2DCBUSMEAS object 
#include "f281xpwm.h"        	// Include header for the PWMGEN object 
#include "f281xpwmdac.h"		// Include header for the PWMDAC object 
#endif


#include "dlog4ch.h"			// Include header for the DLOG_4CH object
#include "fault_log.h"
#include "data_log.h"
#include "Modbus.h"

#endif   // end of PMSM3_4.H definition

//===========================================================================
// No more.
//===========================================================================

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -