12 lines
336 B
C
12 lines
336 B
C
#ifndef __USER_DATA_SEND_H
|
|
#define __USER_DATA_SEND_H
|
|
|
|
#include "stm32f1xx_ll_usart.h"
|
|
|
|
void UsartxSendDataByte(USART_TypeDef* USARTx,uint8_t Data);
|
|
void UsartxSendDataStr(USART_TypeDef* USARTx,uint8_t *Data,uint32_t len);
|
|
|
|
void SendData(uint8_t *sensorData);
|
|
void SendHeartBeatData(uint8_t sensorData);
|
|
#endif /* __USER_DATA_SEND_H */
|