代码拉取完成,页面将自动刷新
#ifndef __ESP32_SERIAL_H__
#define __ESP32_SERIAL_H__
#include "stdint.h"
#include "ringbuf/softRingBuf.h"
#include "stm32f7xx_hal.h"
#include "stm32f7xx_hal_uart.h"
typedef struct xySerialType xySerial;
struct xySerialType{
struct {
uint32_t sending :1;
uint32_t :0;
}stat;
UART_HandleTypeDef* uart;
uint32_t baudRate;
softRingBuf txBuf;
softRingBuf rxBuf;
void (*sendStartCallback)(void);
void (*sendCompleteCallback)(void);
void (*dataReadyCallback)(uint8_t byte);
int32_t (*uartInit)(void);
int32_t (*uartDeInit)(void);
int32_t (*uartSetBaud)(xySerial* const serial,uint32_t baudRate);
int32_t (*sendBuf)(xySerial* const serial,uint8_t* pBuf,uint32_t len);
int32_t (*senfChar)(xySerial* const serial,uint8_t byte);
int32_t (*getChar)(xySerial* const serial,uint8_t* byte);
int32_t (*clearBuffer)(xySerial* const serial,uint8_t fifoType);
};
int32_t xySerialInit(xySerial* const serial);
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。