Changes between Version 6 and Version 7 of wireless/modem


Ignore:
Timestamp:
02/08/2018 06:25:06 PM (6 years ago)
Author:
Ryan Erbstoesser
Comment:

picocom example updated

Legend:

Unmodified
Added
Removed
Modified
  • wireless/modem

    v6 v7  
    112112
    113113Some examples (assuming /dev/ttyUSB0 is your modem's control interface)
     114
     115* picocom (recommended)
     116{{{#!bash
     117picocom /dev/ttyUSB0 --baud 57600
     118
     119picocom /dev/ttyUSB -b 9600 --omap lfcr
     120}}}
     121
     122* minicom
     123{{{#!bash
     124minicom --device /dev/ttyUSB0 --baudrate 57600
     125}}}
     126
    114127* screen
     128 * NOTE: a screen session for AT commands within another screen session may
    115129{{{#!bash
    116130screen /dev/ttyUSB0 57600
    117131}}}
    118 * minicom
    119 {{{#!bash
    120 minicom --device /dev/ttyUSB0 --baudrate 57600
    121 }}}
    122 * picocom
    123 {{{#!bash
    124 picocom /dev/ttyUSB0 --baud 57600
    125 }}}
     132
    126133* stty/cat/echo:
    127134{{{#!bash