32 lines
774 B
C
32 lines
774 B
C
#ifndef __USART_H__
|
|
#define __USART_H__
|
|
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
#endif /* __cplusplus */
|
|
|
|
/* Includes -----------------------------------------------------------------*/
|
|
#include <stdio.h>
|
|
#include "fsl_usart.h"
|
|
/* Defines ------------------------------------------------------------------*/
|
|
/* Macros -------------------------------------------------------------------*/
|
|
/* Typedefs -----------------------------------------------------------------*/
|
|
/* Extern variables ---------------------------------------------------------*/
|
|
/* Functions API ------------------------------------------------------------*/
|
|
void Debug_USART1_Init(void);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#endif /* __USART_H__ */
|