mirror of
https://github.com/g4klx/MMDVMHost
synced 2025-12-24 01:25:41 +08:00
Changed type of callsign variable for TFTSerial
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
class CTFTSerial : public IDisplay
|
||||
{
|
||||
public:
|
||||
CTFTSerial(const char* callsign, unsigned int dmrid, const std::string& port, unsigned int brightness);
|
||||
CTFTSerial(const std::string& callsign, unsigned int dmrid, const std::string& port, unsigned int brightness);
|
||||
virtual ~CTFTSerial();
|
||||
|
||||
virtual bool open();
|
||||
@@ -50,7 +50,7 @@ public:
|
||||
virtual void close();
|
||||
|
||||
private:
|
||||
const char* m_callsign;
|
||||
std::string m_callsign;
|
||||
unsigned int m_dmrid;
|
||||
CSerialController m_serial;
|
||||
unsigned int m_brightness;
|
||||
|
||||
Reference in New Issue
Block a user