mirror of
https://github.com/Indemsys/Frequency_Inverter.git
synced 2026-04-16 01:05:54 +00:00
61 lines
2.0 KiB
C
61 lines
2.0 KiB
C
/******************************************************************************
|
|
*
|
|
* (c) Copyright 2009, Freescale & STMicroelectronics
|
|
*
|
|
***************************************************************************//*!
|
|
*
|
|
* @file gdflib.h
|
|
*
|
|
* @author r63172
|
|
*
|
|
* @version 1.0.1.0
|
|
*
|
|
* @date Dec-6-2012
|
|
*
|
|
* @brief Master header file.
|
|
*
|
|
*******************************************************************************
|
|
*
|
|
******************************************************************************/
|
|
#ifndef _GDFLIB_H
|
|
#define _GDFLIB_H
|
|
|
|
/******************************************************************************
|
|
* Includes
|
|
******************************************************************************/
|
|
#include "SWLIBS_Typedefs.h"
|
|
#include "SWLIBS_Defines.h"
|
|
#include "SWLIBS_Inlines.h"
|
|
|
|
#include "GDFLIB_FilterIIR1.h"
|
|
#include "GDFLIB_FilterIIR2.h"
|
|
#include "GDFLIB_FilterFIR.h"
|
|
#include "GDFLIB_FilterMA.h"
|
|
|
|
/******************************************************************************
|
|
* Constants
|
|
******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Macros
|
|
******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Types
|
|
******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Global variables
|
|
******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Global functions
|
|
******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Inline functions
|
|
******************************************************************************/
|
|
|
|
#endif /* _GDFLIB_H */
|
|
|