Hello
I am trying to configure the sixfab 4g lte cellular modem with ecm mode in raspberry pi 5.
I follow this tutorial of sixfab.
pi@rpi5:~ $ sudo apt update && sudo apt upgrade -y
…
pi@rpi5:~ $ sudo apt purge modemmanager -y
…
pi@rpi5:~ $ lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 002: ID 1bc7:1036 Telit Wireless Solutions LE910C1-WWX
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
pi@rpi5:~ $ lsusb -t
/: Bus 05.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M
/: Bus 04.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M
/: Bus 03.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M
/: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M
|__ Port 1: Dev 2, If 0, Class=Vendor Specific Class, Driver=option, 480M
|__ Port 1: Dev 2, If 1, Class=Vendor Specific Class, Driver=option, 480M
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=dwc2/1p, 480M
pi@rpi5:~ $ dmesg | grep ttyUSB
[ 765.897322] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0
[ 765.897637] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1
// Observation when i configured it also had ttyUSB2
sudo apt install minicom
…
sudo minicom -D /dev/ttyUSB2 -b 115200
AT
AT+CGDCONT=1,“IPV4V6”,“super”
AT#USBCFG=4
After this command the minicom freeze more than a minute, i rebooted the raspberry pi the ttyUSB* disapeared, i try to recofigure the ttyUSB* manually but it does not works
I format the card to do try it again in a clean installation but continues not working [the results before is from clean instalation]
What i have to do?
Regards