From 6c1cc0397b8c07b1c104db6485f6148b2baf1325 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 14 May 2022 22:24:22 +0200 Subject: [PATCH] new CHD44780Device (&m_I2CMaster, ... https://github.com/probonopd/MiniDexed/issues/169#issuecomment-1126805756 --- src/userinterface.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/userinterface.cpp b/src/userinterface.cpp index 057dd8c..1e93c8c 100644 --- a/src/userinterface.cpp +++ b/src/userinterface.cpp @@ -25,8 +25,6 @@ #include #include -#define I2C_MASTER_DEVICE (CMachineInfo::Get ()->GetDevice (DeviceI2CMaster)) - LOGMODULE ("ui"); CUserInterface::CUserInterface (CMiniDexed *pMiniDexed, CGPIOManager *pGPIOManager, CConfig *pConfig) @@ -54,8 +52,7 @@ bool CUserInterface::Initialize (void) if (m_pConfig->GetLCDEnabled ()) { - m_pI2CMaster = new CI2CMaster(I2C_MASTER_DEVICE); - m_pLCD = new CHD44780Device (&I2CMaster, CConfig::LCDI2CAddress, CConfig::LCDColumns, CConfig::LCDRows); + m_pLCD = new CHD44780Device (&m_I2CMaster, CConfig::LCDI2CAddress, CConfig::LCDColumns, CConfig::LCDRows); /* TODO: Read configuration file to see whether i2c should be used for the display. Otherwise run: m_pLCD = new CHD44780Device (CConfig::LCDColumns, CConfig::LCDRows, m_pConfig->GetLCDPinData4 (),