123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /************************************************************************
- Project: Welling Motor Control Paltform
- Filename: tbs.h
- Partner Filename: tbs.c
- Description: The header file of tbs.c
- Complier: IAR Embedded Workbench for ARM 7.80, IAR Systems.
- CPU TYPE : GD32F3x0
- *************************************************************************
- Copyright (c) 2018 Welling Motor Technology(Shanghai) Co. Ltd.
- All rights reserved.
- *************************************************************************
- *************************************************************************
- Revising History (ECL of this file):
- ************************************************************************/
- /************************************************************************
- Beginning of File, do not put anything above here except notes
- Compiler Directives
- ************************************************************************/
- #ifndef TBS_H
- #define TBS_H
- #include "typedefine.h"
- /************************************************************************
- Compiler Directives (N/A)
- *************************************************************************/
- #ifdef _TBS_C_
- #define _TBS_EXT
- #else
- #define _TBS_EXT extern
- #endif
- /************************************************************************
- Definitions & Macros
- *************************************************************************/
- /************************************************************************
- TypeDefs & Structure defines (N/A)
- *************************************************************************/
- /************************************************************************
- Constant Table
- *************************************************************************/
- /************************************************************************
- Exported Variables
- *************************************************************************/
- /************************************************************************
- RAM ALLOCATION (N/A)
- *************************************************************************/
- /************************************************************************
- Exported Function Call Prototypes
- *************************************************************************/
- #ifdef _TBS_C_
- _TBS_EXT void tbs_voIsr(void);
- #else
- _TBS_EXT void tbs_voIsr(void);
- #endif
- /************************************************************************
- Local Function Call Prototypes (N/A)
- *************************************************************************/
- /************************************************************************
- Flag Define (N/A)
- *************************************************************************/
- /***********************************************************************/
- #endif
- /************************************************************************
- Copyright (c) 2018 Welling Motor Technology(Shanghai) Co. Ltd.
- All rights reserved.
- *************************************************************************
- End of this File (EOF)!
- Do not put anything after this part!
- *************************************************************************/
|