15 lines
261 B
C
15 lines
261 B
C
#ifndef __BSP_USART_H__
|
|
#define __BSP_USART_H__
|
|
|
|
#include "stdint.h"
|
|
|
|
|
|
void bsp_usart_debug_init(void);
|
|
|
|
// void bsp_usart_send_data(usart_type_Enum e_usart_type, uint16_t us_tx_data);
|
|
|
|
// uint16_t bsp_usart_receive_data(usart_type_Enum e_usart_type);
|
|
|
|
#endif
|
|
|