Changes between Version 6 and Version 7 of expansion/gw16130
- Timestamp:
- 04/23/2019 03:25:35 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
expansion/gw16130
v6 v7 4 4 GW16130 = GW16127 Mini-PCIe carrier + Iridium 9603 modem module 5 5 6 Iridium 960 2/9603 SBD (short burst data) modem is capable of transmitting ASCII or Binary messages in packets of up to 340 bytes, and receiving packets of up to 270 bytes.6 Iridium 9603 SBD (short burst data) modem is capable of transmitting ASCII or Binary messages in packets of up to 340 bytes, and receiving packets of up to 270 bytes. 7 7 8 8 == Modem Activation == 9 9 10 Modems need to be activated via an approved Iridium carrier /provider.10 Modems need to be activated using an approved Iridium carrier/provider. 11 11 12 12 During the activation, the modem is configured for the destination of the messages: … … 35 35 == Turning on Modem == 36 36 37 An FTDI FT231XQ USB UART Chip is used to communicate with the Iridium Satcom modem via itsUART.37 An FTDI FT231XQ USB to UART Chip is used to communicate with the Iridium Satcom modem via its serial UART. 38 38 39 39 The FTDI GPIO pins control the modem: … … 57 57 58 58 == Modem AT Commands 59 The Iridium SBD modems communicate via AT commands over a UART (default 19200 baud)59 The Iridium SBD modems communicate via AT commands over the UART (default 19200 baud). 60 60 61 AT Commands via picocom: (only works if there is one ftdi device being used) 61 In a Linux system the UART mapping is dynamic. See the following for examples on determining the correct port mapping. Note these commands only work if there is a single FTDI device in the system. 62 63 AT Commands via picocom: (only works if there is one ftdi device being used in the system) 62 64 {{{#!bash 63 65 DEVICE=/dev/$(basename $(ls -d /sys/bus/usb/drivers/ftdi_sio/*/ttyUSB*)) … … 65 67 }}} 66 68 67 AT Commands via shell: (only works if there is one ftdi device being used )69 AT Commands via shell: (only works if there is one ftdi device being used in the system) 68 70 {{{#!bash 69 71 DEVICE=/dev/$(basename $(ls -d /sys/bus/usb/drivers/ftdi_sio/*/ttyUSB*))