I want to communicate directly with the GSM Modem of my neo.
When I call:
Qt Code:
  1. QModemService* modemService = QModemService::createVendorSpecific();
To copy to clipboard, switch view to plain text mode 

It gives the following output in the log:

Qt Code:
  1. Feb 25 09:26:19 om-gta02 user.notice DEBUGGER: Modem : opening serial device "/dev/ttySAC0" at 115200
  2. Feb 25 09:26:19 om-gta02 user.notice DEBUGGER: Modem : Device: "/dev/ttySAC0" is a tty device: True
  3. Feb 25 09:26:19 om-gta02 user.notice DEBUGGER: Modem : NONBLOCK successfully reset
  4. Feb 25 09:26:19 om-gta02 user.notice DEBUGGER: Modem : Opened "/dev/ttySAC0"
  5. Feb 25 09:26:19 om-gta02 user.notice DEBUGGER: Modem : querying multiplexer plugin "neomultiplex"
  6. Feb 25 09:26:19 om-gta02 user.notice DEBUGGER: Hardware : virtual bool NeoMultiplexerPlugin::detect(QSerialIODevice*)
  7. Feb 25 09:26:19 om-gta02 user.notice DEBUGGER: Hardware : virtual bool NeoMultiplexerPlugin::detect(QSerialIODevice*) is gta02
  8. Feb 25 09:26:19 om-gta02 user.notice DEBUGGER: AtChat : T : "^Z"
  9. Feb 25 09:26:29 om-gta02 user.notice DEBUGGER: Mux : *** mux setup timed out ***
  10. Feb 25 09:26:29 om-gta02 user.notice DEBUGGER: AtChat : T : "^Z"
  11. Feb 25 09:26:39 om-gta02 user.notice Qtopia: ApplicationLayer : Trigger todo
  12. Feb 25 09:26:39 om-gta02 user.notice DEBUGGER: Mux : *** mux setup timed out ***
  13. Feb 25 09:26:39 om-gta02 user.notice DEBUGGER: Initializing the modem failed.
To copy to clipboard, switch view to plain text mode 

While when I start my device i got the following:
Qt Code:
  1. Feb 25 08:36:43 om-gta02 user.notice Qtopia: Modem : opening serial device "/dev/ttySAC0" at 115200
  2. Feb 25 08:36:43 om-gta02 user.notice Qtopia: Modem : Device: "/dev/ttySAC0" is a tty device: True
  3. Feb 25 08:36:43 om-gta02 user.notice Qtopia: Modem : NONBLOCK successfully reset
  4. Feb 25 08:36:43 om-gta02 user.notice Qtopia: Modem : Opened "/dev/ttySAC0"
  5. Feb 25 08:36:43 om-gta02 user.notice Qtopia: Modem : querying multiplexer plugin "neomultiplex"
  6. Feb 25 08:36:43 om-gta02 user.notice Qtopia: Hardware : virtual bool NeoMultiplexerPlugin::detect(QSerialIODevice*)
  7. Feb 25 08:36:43 om-gta02 user.notice Qtopia: Hardware : virtual bool NeoMultiplexerPlugin::detect(QSerialIODevice*) is gta02
  8. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : T : "^Z"
  9. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F : ^Z
  10. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F :
  11. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F :
  12. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F : OK
  13. Feb 25 08:36:43 om-gta02 user.notice Qtopia: Modem : Attempts needed to initialize the modem 0
  14. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : T : "ATE0"
  15. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F :
  16. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F : ATE0
  17. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F :
  18. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F :
  19. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F : OK
  20. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : T : "AT+CMUX=1,0,5,64"
  21. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F :
  22. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F :
  23. Feb 25 08:36:43 om-gta02 user.notice Qtopia: AtChat : F : OK
To copy to clipboard, switch view to plain text mode 

Has anybody any clue how to communicate directly with the modem? I'm stuck for a few days now with this problem.

Thanks in advance!

Maarten