probonopd 3 years ago committed by GitHub
parent ac3705ad01
commit 6c1cc0397b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/userinterface.cpp

@ -25,8 +25,6 @@
#include <string.h>
#include <assert.h>
#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 (),

Loading…
Cancel
Save