You've already forked meshtastic-device-ui
mirror of
https://github.com/m5stack/meshtastic-device-ui.git
synced 2026-05-20 11:51:03 -07:00
d234bd98c7
* fix standalone reboot * add LinuxSerialClient * trunk fmt * debug log levels
14 lines
244 B
C++
14 lines
244 B
C++
#pragma once
|
|
|
|
#include "comms/UARTClient.h"
|
|
|
|
class LinuxSerialClient : public UARTClient
|
|
{
|
|
public:
|
|
LinuxSerialClient(const char *tty);
|
|
void init(void) override;
|
|
virtual ~LinuxSerialClient() {}
|
|
|
|
protected:
|
|
const char *tty;
|
|
}; |