Telit Modem
From Yantrr Wiki
Contents
Overview
3G Modem
- Vayu 3GHx-E, VIBE 3GHx-E and VIBE2 3GHx-E comes with Telit HE910 3G modem. This modem creates 6 ports :
- /dev/ttyACM0 : Modem port and AT commands port
- /dev/ttyACM1
- /dev/ttyACM2
- /dev/ttyACM3 : AT commands port
- /dev/ttyACM4
- /dev/ttyACM5
4G Modem
- Vayu 4GLx-E, VIBE 4GLx-E and VIBE2 4GLx-E comes with Telit LE910 modem. This modem creates 6 ports :
- /dev/ttyUSB0
- /dev/ttyUSB1
- /dev/ttyUSB2 : Modem port and AT commands port
- /dev/ttyUSB3 : AT commands port
- /dev/ttyUSB4
- /dev/cdc-wdm0 : QMI Port
Modem Control
Please ensure that the modem is properly turned on before ppp connections can be established. If PPP connection cannot be established properly, soft reset the modem following the timing procedures for ZTE modem.
The modem can be powered on/off by either using the push button switch or GPIO45. Power on
The module will be turned off after power-on(when power is supplied) normally. In the state of power off, provide a low level pulse more than 5 seconds to ON/OFF PIN to turn on the module by either toggling the push button switch or by cycling the GPIO through Low-High cycle.
The default state of ON/OFF GPIO should be high.
cd /sys/class/gpio echo 45 > export cd gpio45 echo “high” > direction
cd /sys/class/gpio/gpio45 echo "low" > direction sleep 5 echo "high" > direction
Power off
In the state of Power On, provide atleast a 2000ms low level pulse to ON/OFF PIN to turn off the module.
cd /sys/class/gpio/gpio45 echo "low" > direction sleep 5 echo "high" > direction