11 lines
293 B
C
11 lines
293 B
C
#ifndef __USER_DATA_SEND_H
|
|
#define __USER_DATA_SEND_H
|
|
|
|
#include "stm32l0xx_ll_usart.h"
|
|
|
|
void UsartxSendDataByte(USART_TypeDef* USARTx,uint8_t Data);
|
|
void UsartxSendDataStr(USART_TypeDef* USARTx,uint8_t *Data,uint32_t len);
|
|
|
|
void SendData(uint16_t *sensorData);
|
|
#endif /* __USER_DATA_SEND_H */
|