mirror of
https://github.com/Indemsys/Frequency_Inverter.git
synced 2026-04-16 09:06:08 +00:00
78 lines
2.4 KiB
C
78 lines
2.4 KiB
C
/******************************************************************************
|
|
*
|
|
* (c) Copyright 2009, Freescale & STMicroelectronics
|
|
*
|
|
***************************************************************************//*!
|
|
*
|
|
* @file gflib.h
|
|
*
|
|
* @author r63172
|
|
*
|
|
* @version 1.0.1.0
|
|
*
|
|
* @date Dec-6-2012
|
|
*
|
|
* @brief Master header file for GFLIB library.
|
|
*
|
|
*******************************************************************************
|
|
*
|
|
******************************************************************************/
|
|
|
|
#ifndef _GFLIB_H
|
|
#define _GFLIB_H
|
|
|
|
/******************************************************************************
|
|
* Includes
|
|
******************************************************************************/
|
|
#include "SWLIBS_Typedefs.h"
|
|
#include "SWLIBS_Defines.h"
|
|
#include "SWLIBS_Inlines.h"
|
|
|
|
#include "GFLIB_Sin.h"
|
|
#include "GFLIB_Cos.h"
|
|
#include "GFLIB_Tan.h"
|
|
#include "GFLIB_Sqrt.h"
|
|
#include "GFLIB_ControllerPIr.h"
|
|
#include "GFLIB_ControllerPIp.h"
|
|
#include "GFLIB_ControllerPIpAW.h"
|
|
#include "GFLIB_Asin.h"
|
|
#include "GFLIB_Acos.h"
|
|
#include "GFLIB_Atan.h"
|
|
#include "GFLIB_AtanYX.h"
|
|
#include "GFLIB_Sign.h"
|
|
#include "GFLIB_Lut1D.h"
|
|
#include "GFLIB_Limit.h"
|
|
#include "GFLIB_LowerLimit.h"
|
|
#include "GFLIB_UpperLimit.h"
|
|
#include "GFLIB_Hyst.h"
|
|
#include "GFLIB_IntegratorTR.h"
|
|
#include "GFLIB_Ramp.h"
|
|
#include "GFLIB_AtanYXShifted.h"
|
|
|
|
/******************************************************************************
|
|
* Constants
|
|
******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Macros
|
|
******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Types
|
|
******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Global variables
|
|
******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Global functions
|
|
******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Inline functions
|
|
******************************************************************************/
|
|
|
|
#endif /* _GFLIB_H */
|
|
|