mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-14 10:35:30 +00:00
25 lines
516 B
C++
25 lines
516 B
C++
#include "ESPEasySerial_Port_base.h"
|
|
|
|
ESPEasySerial_Port_base::ESPEasySerial_Port_base() {}
|
|
ESPEasySerial_Port_base::~ESPEasySerial_Port_base() {}
|
|
|
|
/*
|
|
#ifdef ESP8266
|
|
void ESPEasySerial_Port_base::setPortConfig(
|
|
unsigned long baud,
|
|
SerialConfig config,
|
|
SerialMode mode)
|
|
{
|
|
_config.setPortConfig(baud, config, mode);
|
|
}
|
|
|
|
#endif // ifdef ESP8266
|
|
|
|
#ifdef ESP32
|
|
void ESPEasySerial_Port_base::setPortConfig(unsigned long baud, uint32_t config)
|
|
{
|
|
_config.setPortConfig(baud, config);
|
|
}
|
|
|
|
#endif // ifdef ESP32
|
|
*/ |