Changes between Version 19 and Version 20 of expansion/gw16130
- Timestamp:
- 05/24/2019 07:45:02 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
expansion/gw16130
v19 v20 49 49 50 50 51 == Turning on Modem ==51 == Turning on Modem *REQUIRED* == 52 52 53 53 An FTDI FT231XQ USB to UART Chip is used to communicate with the Iridium Satcom modem via its serial UART. … … 104 104 }}} 105 105 106 AT Commands via shell: ( only works if there is one ftdi device being used in the system)106 AT Commands via shell: (auto-magic device select script only works if there is one ftdi device being used in the system) 107 107 {{{#!bash 108 108 DEVICE=/dev/$(basename $(ls -d /sys/bus/usb/drivers/ftdi_sio/*/ttyUSB*)) … … 114 114 at "AT+GMR" # Revision details 115 115 at "AT+GSN" # serial number (IEMI) 116 at "AT+CSQ" # signal strength (0 to 5): '+CSQ:0' 116 at "AT+CSQ" # signal strength (0 to 5): '+CSQ:0' (where 5 is the best, as in 5 bars of service vs 0 bars of service 117 117 }}} 118 118 … … 123 123 AT+SBDWT=Hello World #enter message as string 124 124 AT+SBDIX # Send message 125 +SBDIX: 0, 4, 0, 0, 0, 0 #Response saying it was successful 125 +SBDIX: 0, 4, 0, 0, 0, 0 #Response saying it was successful 126 126 }}} 127 * To read more about the SBDIX response, read through one of the [https://www.google.com/search?q=iridium+9603+at+commands AT Command Documents] 128 Troubleshooting: 129 * If no AT commands are working, verify the modem is enabled using the FTDI CBUS GPIOs. 127 * Typically the first number should be 0 for success. To read more about the SBDIX response, read through one of the [https://www.google.com/search?q=iridium+9603+at+commands AT Command Documents] 128 129 == Troubleshooting == 130 * If no AT commands are working, verify the modem is enabled using the FTDI CBUS GPIOs as described in the Turning on Modem section on this wiki page. 131 * Be sure the satellite antenna has a clear view of the sky, check the signal strength with the AT+CSQ 130 132 131 133