pmsm3_3.h

来自「有关TI公司用于交流电机控制程序(包含文档以及源码)」· C头文件 代码 · 共 61 行

H
61
字号
/* ==============================================================================
System Name:  PMSM33

File Name:	PMSM3_3.H

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

Originator:		Digital control systems Group - Texas Instruments

Note: In this software, the default inverter is supposed to be DMC1500 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_3_H
#define PMSM3_3_H

#include "target.h"

/*-------------------------------------------------------------------------------
Next, Include project specific include files.
-------------------------------------------------------------------------------*/
#include "resolver.h"       	// Include header for the RESOLVER object 

#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 


#if (DSP_TARGET==F2808)
#include "f280x_en.h"        	// Include header for the DRIVE object 
#include "f280xpwm.h"        	// Include header for the PWMGEN object 
#include "f280xadc04b.h" 		// Include header for the ADCVALSB object 
#include "f280xpwm_res.h"		// Include header for the RESOLVER_PWM object
#endif

#if (DSP_TARGET==F2812)
#include "f281x_en.h"        	// Include header for the DRIVE object 
#include "f281xpwm.h"        	// Include header for the PWMGEN object 
#include "f281xadc04b.h" 		// Include header for the ADCVALSB object 
#include "f281xpwm_res.h"		// Include header for the RESOLVER_PWM object
#endif

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

#endif   // end of PMSM3_3.H definition

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

⌨️ 快捷键说明

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