1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef __UART4_H
- #define __UART4_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef __UART4_H_GLOBAL
- #define __UART4_H_EXTERN
- #else
- #define __UART4_H_EXTERN extern
- #endif
- /************************************************************************************************
- * Version *
- ************************************************************************************************/
- /************************************************************************************************
- * How to use *
- ************************************************************************************************/
- /************************************************************************************************
- * Enable config *
- ************************************************************************************************/
- /************************************************************************************************
- * Includes *
- ************************************************************************************************/
- /************************************************************************************************
- * Defines *
- ************************************************************************************************/
- /************************************************************************************************
- * Typedefs *
- ************************************************************************************************/
- /************************************************************************************************
- * Interfaces *
- ************************************************************************************************/
- void uart4_init(void);
- #ifdef __cplusplus
- };
- #endif
- #endif // __UART4_H
|