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

📄 aci3_1.h

📁 TMS320f28xx控制三相感应电机程序。包括速度检测、速度调节、V/F控制、PWM生成等。
💻 H
字号:
/* ==============================================================================
System Name:  ACI31

File Name:	ACI3_1.H

Description:	Primary system header file for the Real Implementation of Sensored
          		V/Hz for a Three Phase AC Induction Motor. 

Originator:		Digital control systems Group - Texas Instruments

last modify:lingyijian
=====================================================================================
 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 ACI3_1_H
#define ACI3_1_H

#include "target.h"

/*-------------------------------------------------------------------------------
Next, Include project specific include files.
-------------------------------------------------------------------------------*/
#include "svgen_mf.h"       	// Include header for the SVGENMF object
#include "speed_pr.h"			// Include header for the SPEED_MEAS_CAP object
#include "rmp_cntl.h"       	// Include header for the RMPCNTL object
#include "vhzprof.h"        	// Include header for the VHZPROF object
#include "pid_reg3.h"        	// Include header for the PIDREG3 object

#if (DSP_TARGET==F2808)
#include "f280x_en.h"        	// Include header for the DRIVE object
#include "f280xcap.h"        	// Include header for the CAPTURE 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 "f281xcap.h"        	// Include header for the CAPTURE 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

#endif   // end of ACI3_1.H definition

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

⌨️ 快捷键说明

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