mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-05 06:25:24 +00:00
Handle M17 in the display code.
This commit is contained in:
parent
80a77bd12a
commit
e0f4928db5
12 changed files with 240 additions and 1 deletions
10
Display.h
10
Display.h
|
|
@ -72,6 +72,11 @@ public:
|
|||
void writeNXDNBER(float ber);
|
||||
void clearNXDN();
|
||||
|
||||
void writeM17(const char* source, const char* dest, const char* type);
|
||||
void writeM17RSSI(unsigned char rssi);
|
||||
void writeM17BER(float ber);
|
||||
void clearM17();
|
||||
|
||||
void writePOCSAG(uint32_t ric, const std::string& message);
|
||||
void clearPOCSAG();
|
||||
|
||||
|
|
@ -118,6 +123,11 @@ protected:
|
|||
virtual void writeNXDNBERInt(float ber);
|
||||
virtual void clearNXDNInt() = 0;
|
||||
|
||||
virtual void writeM17Int(const char* source, const char* dest, const char* type) = 0;
|
||||
virtual void writeM17RSSIInt(unsigned char rssi);
|
||||
virtual void writeM17BERInt(float ber);
|
||||
virtual void clearM17Int() = 0;
|
||||
|
||||
virtual void writePOCSAGInt(uint32_t ric, const std::string& message) = 0;
|
||||
virtual void clearPOCSAGInt() = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue