You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
517 B

/** \file usart11.h */
#if !defined(USART11_H__358CA7DD_31CD_4E7D_9BFE_5B68A5DAD39D__INCLUDED_)
#define USART11_H__358CA7DD_31CD_4E7D_9BFE_5B68A5DAD39D__INCLUDED_
#include "define.h"
void Usart11_Initialization(uint32_t Baudrate, USART1n_DATA_BIT_Type Databit, USART1n_PARITY_BIT_Type Paritybit, USART1n_STOP_BIT_Type Stopbit);
void Usart11_Transmit(uint8_t TxData);
void Usart11_TransmitData(uint8_t* pTxData, uint32_t TxLen);
uint32_t Usart11_Get_RecvDataCount(void);
uint8_t Usart11_Get_RecvData(void);
#endif