capture.h
来自「无刷直流电机的无传感器控制TI程序」· C头文件 代码 · 共 53 行
H
53 行
/* =====================================================================================================================
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 + =
减小字号Ctrl + -
显示快捷键?