23 lines
318 B
C
23 lines
318 B
C
#ifndef __USART_USER_H
|
|
#define __USART_USER_H
|
|
|
|
#include "stm32f091xc.h"
|
|
#include "stm32f0xx_ll_usart.h"
|
|
|
|
|
|
|
|
void UsartUserConfig(void);
|
|
|
|
|
|
void UsartxSendDataByte(USART_TypeDef* USARTx, uint16_t Data);
|
|
void UsartxSendDataStr(USART_TypeDef* USARTx, const uint8_t *Data, uint32_t len);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __USART_USER_H */
|