5.13.1a * Update TasmotaSerial to 2.0.0 allowing Hardware Serial Fallback when correct connection are configured
72 lines
2.3 KiB
C++
72 lines
2.3 KiB
C++
/*
|
|
TasmotaSerial.h - Minimal implementation of software serial for Tasmota
|
|
|
|
Copyright (C) 2018 Theo Arends
|
|
|
|
This library is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef TasmotaSerial_h
|
|
#define TasmotaSerial_h
|
|
/*********************************************************************************************\
|
|
* TasmotaSerial supports up to 115200 baud with fixed buffer size of 64 bytes using optional no iram
|
|
*
|
|
* Based on EspSoftwareSerial v3.3.1 by Peter Lerup (https://github.com/plerup/espsoftwareserial)
|
|
\*********************************************************************************************/
|
|
|
|
#define TM_SERIAL_BAUDRATE 9600 // Default baudrate
|
|
#define TM_SERIAL_BUFFER_SIZE 64 // Receive buffer size
|
|
|
|
#include <core_version.h> // Arduino_Esp8266 version information (ARDUINO_ESP8266_RELEASE and ARDUINO_ESP8266_RELEASE_2_3_0)
|
|
#ifndef ARDUINO_ESP8266_RELEASE_2_3_0
|
|
#define TM_SERIAL_USE_IRAM // Enable to use iram (+368 bytes)
|
|
#endif
|
|
|
|
#include <Stream.h>
|
|
|
|
class TasmotaSerial : public Stream {
|
|
public:
|
|
TasmotaSerial(int receive_pin, int transmit_pin, bool hardware_fallback = false);
|
|
bool begin(long speed);
|
|
bool begin();
|
|
bool hardwareSerial();
|
|
int peek();
|
|
|
|
virtual size_t write(uint8_t byte);
|
|
virtual int read();
|
|
virtual int available();
|
|
virtual void flush();
|
|
|
|
void rxRead();
|
|
|
|
using Print::write;
|
|
|
|
private:
|
|
bool isValidGPIOpin(int pin);
|
|
size_t txWrite(uint8_t byte);
|
|
|
|
// Member variables
|
|
bool m_valid;
|
|
bool m_hardserial;
|
|
bool m_high_speed;
|
|
int m_rx_pin;
|
|
int m_tx_pin;
|
|
unsigned long m_bit_time;
|
|
unsigned int m_in_pos;
|
|
unsigned int m_out_pos;
|
|
uint8_t *m_buffer;
|
|
};
|
|
|
|
#endif // TasmotaSerial_h
|