Difference between revisions of "SIM5218 modem"

From Noah.org
Jump to navigationJump to search
(Created page with 'Category:Engineering = Qualcomm, Inc. SIMCom SIM5218 modem = Anyone familiar with this USB device? USB Device ID 05c6:9000 Qualcomm, Inc. SIMCom SIM5218 modem When I plug i…')
 
Line 6: Line 6:
 
When I plug it into my Linux laptop I have 5 separate USB tty serial ports show up (/dev/ttyUSB[0-4]).
 
When I plug it into my Linux laptop I have 5 separate USB tty serial ports show up (/dev/ttyUSB[0-4]).
  
I can connect to /dev/ttyUSB2 with the following `stty` settings: 460800,cs8,parenb,-cstopb,-hupcl, (460800 baud, 8-bits per character, no parity, and 1 stop bit). I use '''screen''' as my terminal emulator. I connect with this command '''screen  /dev/ttyUSB2 460800,cs8,parenb,-cstopb,-hupcl'''. Once connected I can execute 'AT' commands:
+
I can connect to /dev/ttyUSB2 with the following `stty` settings: 460800,cs8,parenb,-cstopb,-hupcl, (460800 baud, 8-bits per character, no parity, and 1 stop bit). I use '''screen''' as my terminal emulator. I connect with this command '''screen  /dev/ttyUSB2 460800,cs8,parenb,-cstopb,-hupcl'''. Once connected I can execute '''AT''' commands:
 
<pre>
 
<pre>
 
AT
 
AT
Line 18: Line 18:
 
</pre>
 
</pre>
  
ON /dev/ttyUSB3 I see the following data printed. This terminal also responds to AT commands.
+
On '''/dev/ttyUSB3''' I see the following data printed. This terminal also responds to '''AT''' commands. I have not found any interesting '''AT''' commands that dump status or state or helpful information.
 
<pre>
 
<pre>
 
SMS DONE
 
SMS DONE

Revision as of 15:17, 8 September 2014

Qualcomm, Inc. SIMCom SIM5218 modem

Anyone familiar with this USB device? USB Device ID 05c6:9000 Qualcomm, Inc. SIMCom SIM5218 modem

When I plug it into my Linux laptop I have 5 separate USB tty serial ports show up (/dev/ttyUSB[0-4]).

I can connect to /dev/ttyUSB2 with the following `stty` settings: 460800,cs8,parenb,-cstopb,-hupcl, (460800 baud, 8-bits per character, no parity, and 1 stop bit). I use screen as my terminal emulator. I connect with this command screen /dev/ttyUSB2 460800,cs8,parenb,-cstopb,-hupcl. Once connected I can execute AT commands:

AT
OK
ATA    
NO CARRIER
ATH
OK
ATO
NO CARRIER

On /dev/ttyUSB3 I see the following data printed. This terminal also responds to AT commands. I have not found any interesting AT commands that dump status or state or helpful information.

SMS DONE
+VOICEMAIL: INIT_STATE, 0, 0
PB DONE
+NETOPEN: 0

On /dev/ttyUSB0, /dev/ttyUSB1, and /dev/ttyUSB4 I see nothing printed and they do not respond to AT commands. Perhaps I have the `stty` settings wrong. I didn't experiment much. I tried only the same settings that worked on other ports.