12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /************************************************************************
- Project: Welling Motor Control Paltform
- Filename: tbt.h
- Partner Filename: tbt.c
- Description: The header file of tbt.c
- Complier: IAR Embedded Workbench for ARM 7.80.4
- 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 TBT_H
- #define TBT_H
- /************************************************************************
- Compiler Directives (N/A)
- ************************************************************************/
- #ifdef _TBT_C_
- #define _TBT_EXT
- #else
- #define _TBT_EXT extern
- #endif
- /************************************************************************
- Definitions & Macros (#define ...)
- ************************************************************************/
- //#define xxx xxx
- /************************************************************************
- TypeDefs & Structure defines for " XXX "
- ************************************************************************/
- /*typedef struct
- {
- UWORD XXX;
- } XXX;*/
- /************************************************************************
- Constant Table
- *************************************************************************/
- /************************************************************************
- Exported Variables:
- ************************************************************************/
- // TEMPLATE_EXT UWORD xxx_uwXXX;
- /************************************************************************
- RAM ALLOCATION:
- ************************************************************************/
- //#define xxx_stXXX (*(XXX *)TBC_BUFFER)
- /************************************************************************
- Exported Function Call Prototypes (N/A)
- ************************************************************************/
- #ifdef _TBT_C_
- _TBT_EXT void tbt_voIsr(void);
- #else
- _TBT_EXT void tbt_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!
- ************************************************************************/
|