32 lines
700 B
C++
32 lines
700 B
C++
// (C) 2024 by Folkert van Heusden
|
|
// Released under MIT license
|
|
|
|
#include "gen.h"
|
|
#include "comm.h"
|
|
|
|
|
|
class comm_posix_tty: public comm
|
|
{
|
|
private:
|
|
const std::string device;
|
|
const int bitrate;
|
|
int fd { -1 };
|
|
|
|
public:
|
|
comm_posix_tty(const std::string & dev, const int bitrate);
|
|
virtual ~comm_posix_tty();
|
|
|
|
bool begin() override;
|
|
|
|
JsonDocument serialize() const override;
|
|
static comm_posix_tty *deserialize(const JsonVariantConst j);
|
|
|
|
std::string get_identifier() const override { return device; }
|
|
|
|
bool is_connected() override;
|
|
|
|
bool has_data() override;
|
|
uint8_t get_byte() override;
|
|
|
|
void send_data(const uint8_t *const in, const size_t n) override;
|
|
};
|