Beispiel #1
0
void NeoModemService::wake()
{
    qLog(Modem) << " Gta04ModemService::wake()";
    
    QSerialIODevice *port = multiplexer()->channel("primary");
    port->open(QIODevice::ReadWrite);
    primaryAtChat()->resume();
    
    //primaryAtChat()->resume();
    //chat("AT_OSQI=1");          // unsolicited reporting of antenna signal strength, e.g. "_OSIGQ: 3,0"
    wakeDone();
}
void HtcuniversalModemService::wake()
{
  HtcuniversalGsmPower::getInstance(this)->enableNotifications();
  wakeDone();
}
Beispiel #3
0
/*!
    Processes a request to wake up the modem from a \c suspend() state.
    The modem vendor plug-in must call \c wakeDone() once the operation
    completes.  The default implementation calls \c wakeDone().

    This function is called in response to a \c{wake()} command
    on the QCop channel \c{QPE/ModemSuspend}.

    \sa wakeDone(), suspend()
*/
void QModemService::wake()
{
    wakeDone();
}