Add CD LED functionality to MMDVMHost

This commit is contained in:
phl0
2016-11-17 11:48:42 +01:00
parent cb35888d0e
commit 8373dc0b8a
5 changed files with 38 additions and 2 deletions

3
UMP.h
View File

@@ -36,6 +36,8 @@ public:
bool setTX(bool on);
bool setCD(bool on);
bool getLockout() const;
virtual int read(unsigned char* buffer, unsigned int length);
@@ -55,6 +57,7 @@ private:
bool m_lockout;
unsigned char m_mode;
bool m_tx;
bool m_cd;
};
#endif