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

📄 capture.h

📁 无刷直流电机的无传感器控制TI程序
💻 H
字号:
/* =====================================================================================================================
File name:        CAPTURE.H                     
                    
Originator:	Digital Control Systems Group
			Texas Instruments

Description:
Front end header file for the PWM Generation Units.
This header file includes the correct header file for the 
target defined by the target header file.
       
Choices currently accepted are F243 F2407.
     
Depending on this choice the correct header file is included in by this file.                                   
=====================================================================================
 History:
-------------------------------------------------------------------------------------
 9-15-2000	Release	Rev 1.0                                                   
----------------------------------------------------------------------------------- */
        
#ifndef __CAPTURE_H__
#define __CAPTURE_H__  
#include <TARGET.H>


#if  (TARGET == F240 ) 
#error Implementation not ported to the F240

#elif  ( TARGET == F243 ) 
#include <F243_CAP.H>    

#elif  ( TARGET == F2407 )
#include <F2407CAP.H>            

#endif /* TARGET == F2407 */

#ifdef TARGET
#if  ((TARGET!=F240)&(TARGET!=F243)&(TARGET!=F2407))
#error CAPTURE.H: Unsupported Target !
#endif 
#endif


        
        
#endif  /* __CAPTURE_H__ */

  




⌨️ 快捷键说明

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