only use one port with CDMA at the moment.

pull/121/head
mazgch 2013-12-09 21:48:01 +01:00
parent ea42c3b726
commit d5da332367
2 changed files with 2 additions and 1 deletions

View File

@ -443,6 +443,7 @@ int UbloxUSBModem::init()
{ {
INFO("Using a u-blox LISA-C200 CDMA Modem"); INFO("Using a u-blox LISA-C200 CDMA Modem");
m_gsm = false; m_gsm = false;
m_onePort = false;
} }
else else
{ {

View File

@ -128,8 +128,8 @@ private:
bool m_ussdInit; //< Has USSDInterface object (m_ussd) been initialised? true/false bool m_ussdInit; //< Has USSDInterface object (m_ussd) been initialised? true/false
bool m_linkMonitorInit; //< Has LinkMonitor object (m_linkMonitor) been initialised? true/false bool m_linkMonitorInit; //< Has LinkMonitor object (m_linkMonitor) been initialised? true/false
bool m_atOpen; //< Is the interface to the ATCommandsInterface open? true/false bool m_atOpen; //< Is the interface to the ATCommandsInterface open? true/false
bool m_onePort;
protected: protected:
bool m_onePort;
bool m_gsm; bool m_gsm;
}; };