-
Notifications
You must be signed in to change notification settings - Fork 6
/
Port_ESPEasySerial_SW_Serial.h
63 lines (41 loc) · 1.31 KB
/
Port_ESPEasySerial_SW_Serial.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#ifndef ESPEASYSERIAL_PORT_ESPEASYSERIAL_SW_SERIAL_H
#define ESPEASYSERIAL_PORT_ESPEASYSERIAL_SW_SERIAL_H
#include "ESPEasySerial_common_defines.h"
#if USES_SW_SERIAL
# include "Port_ESPEasySerial_base.h"
#if USES_LATEST_SOFTWARE_SERIAL_LIBRARY
# include <SoftwareSerial.h>
#else
# include "Driver_ESPEasySoftwareSerial.h"
#endif
class Port_ESPEasySerial_SW_Serial_t : public Port_ESPEasySerial_base {
public:
Port_ESPEasySerial_SW_Serial_t(const ESPEasySerialConfig& config);
virtual ~Port_ESPEasySerial_SW_Serial_t();
void begin(unsigned long baud);
void end();
int available(void);
int availableForWrite(void);
int peek(void);
int read(void);
size_t read(uint8_t *buffer,
size_t size);
void flush(void);
void flush(bool txOnly);
size_t write(uint8_t);
size_t write(const uint8_t *buffer,
size_t size);
int getBaudRate() const override;
operator bool() const;
void setDebugOutput(bool);
size_t setRxBufferSize(size_t new_size);
size_t setTxBufferSize(size_t new_size);
private:
#if USES_LATEST_SOFTWARE_SERIAL_LIBRARY
SoftwareSerial *_swserial = nullptr;
#else
Driver_ESPEasySoftwareSerial_t *_swserial = nullptr;
#endif
};
#endif // if USES_SW_SERIAL
#endif // ifndef ESPEASYSERIAL_PORT_ESPEASYSERIAL_SW_SERIAL_H