QSO info removed from OLED. QSO info add via CASTInfo.

This commit is contained in:
GuusvanDooren
2019-05-10 20:44:01 +02:00
parent 5acef270d1
commit 6d83bfb8bc
6 changed files with 223 additions and 25 deletions

View File

@@ -237,7 +237,6 @@ m_oledBrightness(0U),
m_oledInvert(false),
m_oledScroll(false),
m_oledRotate(false),
m_oledCast(false),
m_lcdprocAddress(),
m_lcdprocPort(0U),
m_lcdprocLocalPort(0U),
@@ -791,8 +790,6 @@ bool CConf::read()
m_oledScroll = ::atoi(value) == 1;
else if (::strcmp(key, "Rotate") == 0)
m_oledRotate = ::atoi(value) == 1;
else if (::strcmp(key, "Cast") == 0)
m_oledCast = ::atoi(value) == 1;
} else if (section == SECTION_LCDPROC) {
if (::strcmp(key, "Address") == 0)
m_lcdprocAddress = value;
@@ -1701,10 +1698,6 @@ bool CConf::getOLEDRotate() const
return m_oledRotate;
}
bool CConf::getOLEDCast() const
{
return m_oledCast;
}
std::string CConf::getLCDprocAddress() const
{