• Benvenuti su RaspberryItaly!
Benvenuto ospite! Login Login con Facebook Registrati Login with Facebook


Valutazione discussione:
  • 0 voto(i) - 0 media
  • 1
  • 2
  • 3
  • 4
  • 5

[-]
Tags
lte dongle usb

LTE Dongle USB
#1
ciao a tutti, sto cercando di far funzionare questo dongle LTE acquistato su aliexpress https://it.aliexpress.com/item/100500370...4c4dfOTjnJ
sto utilizzando UBUNTU 21.10 Server su una Raspberry pi 4.
Dopo averlo collegato mi escono questi output: 

ubuntu@ubuntu:~$ lsusb Bus 001 Device 011: ID 05c6:9024 Qualcomm, Inc. Android

ubuntu@ubuntu:~$ lsusb -t /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/1p, 480M |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M |__ Port 4: Dev 11, If 0, Class=Wireless, Driver=rndis_host, 480M |__ Port 4: Dev 11, If 1, Class=CDC Data, Driver=rndis_host, 480M |__ Port 4: Dev 11, If 2, Class=Vendor Specific Class, Driver=, 480M 

dmesg

[Sat Feb 26 01:26:33 2022] usb 1-1.4: new high-speed USB device number 9 using xhci_hcd
[Sat Feb 26 01:26:33 2022] usb 1-1.4: New USB device found, idVendor=05c6, idProduct=902d, bcdDevice= 3.10
[Sat Feb 26 01:26:33 2022] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[Sat Feb 26 01:26:33 2022] usb 1-1.4: Product: Android
[Sat Feb 26 01:26:33 2022] usb 1-1.4: Manufacturer: Android
[Sat Feb 26 01:26:33 2022] usb 1-1.4: SerialNumber: 0
[Sat Feb 26 01:26:33 2022] rndis_host 1-1.4:1.0 usb0: register 'rndis_host' at usb-0000:01:00.0-1.4, RNDIS device, da:64:eb:65:43:2c
[Sat Feb 26 01:27:06 2022] usb 1-1.4: USB disconnect, device number 9
[Sat Feb 26 01:27:06 2022] rndis_host 1-1.4:1.0 usb0: unregister 'rndis_host' usb-0000:01:00.0-1.4, RNDIS device
[Sat Feb 26 01:27:06 2022] usb 1-1.4: new high-speed USB device number 10 using xhci_hcd
[Sat Feb 26 01:27:06 2022] usb 1-1.4: New USB device found, idVendor=18d1, idProduct=d002, bcdDevice= 3.10
[Sat Feb 26 01:27:06 2022] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[Sat Feb 26 01:27:06 2022] usb 1-1.4: Product: Android
[Sat Feb 26 01:27:06 2022] usb 1-1.4: Manufacturer: Android
[Sat Feb 26 01:27:06 2022] usb 1-1.4: SerialNumber: 0
[Sat Feb 26 01:27:11 2022] usb 1-1.4: USB disconnect, device number 10
[Sat Feb 26 01:27:11 2022] usb 1-1.4: new high-speed USB device number 11 using xhci_hcd
[Sat Feb 26 01:27:11 2022] usb 1-1.4: New USB device found, idVendor=05c6, idProduct=9024, bcdDevice= 3.10
[Sat Feb 26 01:27:11 2022] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[Sat Feb 26 01:27:11 2022] usb 1-1.4: Product: Android
[Sat Feb 26 01:27:11 2022] usb 1-1.4: Manufacturer: Android
[Sat Feb 26 01:27:11 2022] usb 1-1.4: SerialNumber: 0
[Sat Feb 26 01:27:11 2022] rndis_host 1-1.4:1.0 usb0: register 'rndis_host' at usb-0000:01:00.0-1.4, RNDIS device, 36:69:84:36:f6:1f


ho provato a seguire questa guida https://www.jeffgeerling.com/blog/2022/u...spberry-pi

ma, per quanto riguarda il setup "QMI MODE" , non e' presente sul mio sistema il file /dev/cdc-wdm0 e quindi non posso andare avanti nel tutotial

per la parte "ECM" invece, con
sudo wvdialconf mi esce
Editing `/etc/wvdial.conf'.
Scanning your serial ports for a modem.
ttyS0<*1>: ATQ0 V1 E1 -- failed with 2400 baud, next try: 9600 baud
ttyS0<*1>: ATQ0 V1 E1 -- failed with 9600 baud, next try: 115200 baud
ttyS0<*1>: ATQ0 V1 E1 -- and failed too at 115200, giving up.
Sorry, no modem was detected! Is it in use by another program?
Did you configure it properly with setserial?

e se provo ad accedere a ttyS0 con minicom non posso immettere comani AT e quindi non posso fare praticamente nulla.
qualcuno sa come aiutarmi perfavore




Un utente su un altro forum mi ha consigliato questo:

Così ad occhio manca il modulo per il dispositivo...
Dunque piccola ricerca:
- sembra un modulo con processore qualcomm
- - dovrebbe essere supportato su linux
- al momento pare essere rilevato in modalità storage
Prova ad installare i seguenti pacchetti:
sudo apt install kmod-usb-net-rndis usb-modeswitch

Questo modulo si presenta al sistema in due modi:
un-switched (questa è la modalità usb storage che dicevo nel post precedente)
05c6:9024 Qualcomm, Inc.

switched (questa è la modalità modem, dopo che la modalità storage è stata disattivata)
05c6:9025 Qualcomm HSUSB Device

Per passare alla modalità switched, quindi per poter rilevare il modem, devi dare il seguente comando (direi da root):
usb_modeswitch -v 05c6 -p 9024 -M "5553424360F6FA8700000000000106EE000100000000000000000000000000"

Prova e poi verifica se l'id del dispositivo cambia, fammi sapere.

Provato e:
il comando sudo apt install kmod-usb-net-rndis usb-modeswitch mi restituisce questo errore: E: Unable to locate package kmod-usb-net-rndis
Risposta
  


Vai al forum:


Navigazione: 1 Ospite(i)
Forum con nuovi Post
Forum senza nuovi post
Forum bloccato
Forum Redirect