Merge pull request #630 from stefansaraev/oled-buildfix

OLED: fix build after f070410f7 and c7fbeecc5
This commit is contained in:
Jonathan Naylor 2020-08-10 14:30:25 +01:00 committed by GitHub
commit cdf62f1601
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -434,7 +434,7 @@ void COLED::clearDMRInt(unsigned int slotNo)
m_display.display();
}
void COLED::writeFusionInt(const char* source, const char* dest, const char* type, const char* origin)
void COLED::writeFusionInt(const char* source, const char* dest, unsigned char dgid, const char* type, const char* origin)
{
m_mode = MODE_YSF;

2
OLED.h
View file

@ -58,7 +58,7 @@ public:
virtual void writeDMRInt(unsigned int slotNo, const std::string& src, bool group, const std::string& dst, const char* type);
virtual void clearDMRInt(unsigned int slotNo);
virtual void writeFusionInt(const char* source, const char* dest, const char* type, const char* origin);
virtual void writeFusionInt(const char* source, const char* dest, unsigned char dgid, const char* type, const char* origin);
virtual void clearFusionInt();
virtual void writeP25Int(const char* source, bool group, unsigned int dest, const char* type);