I am using the FX30 wp7702 (4G LTE) and testing the Talon IoT Mirage Wifi exp card.
I have found some topics but all related with the FX30 3G (which needs to have installed a R14.xXXXX firmware).
The firmware on my target is FX30_WP77xx_full_R11.0.0.007-sierra-SWI9X06Y_02.22.12.00.cwe, ad I see there are pre-built wifi apps:
First question is if this is also supported with the FX30 wp7702 or only with the FX30 wp85 (3G), I assumed it is due to the pre-built apps.
If yes, the setup should be straight forward (I am starting from shell before moving to legato API), but it fails immediately after the:
wifi client start (I made sure the wifi ap was off).
According to the logs it can`t detect the wlan0 interface:
Jan 6 00:21:47 fx30 user.info Legato: INFO | wifiService[1256] | Could not read interface wlan0 flags: No such device
Jan 6 00:21:47 fx30 user.info Legato: INFO | wifiService[1256] | WEXT: Could not set interface ‘wlan0’ UP
Jan 6 00:21:47 fx30 user.info Legato: INFO | wifiService[1256] | wlan0: Failed to initialize driver interface
But this is in the interfaces file:
auto lo
iface lo inet loopback
Wireless interfaces
iface wlan0 inet dhcp
wireless_mode managed
wireless_essid any
wpa-driver wext
wpa-conf /etc/wpa_supplicant.conf
iface atml0 inet dhcp
Wired or wireless interfaces
auto eth0
iface eth0 inet dhcp
hwaddress ether 00:14:3E:9D:BA:E7
address 192.168.13.31
netmask 255.255.255.0
iface eth1 inet dhcp
Bluetooth networking
iface bnep0 inet dhcp
I have tried to initialize the driver with the wpa_supplicant but without success:
root@fx30:~# wpa_supplicant -Dnl80211 -iwlan0 -c/etc/wpa_supplicant.conf
Successfully initialized wpa_supplicant
Could not read interface wlan0 flags: No such device
nl80211: Driver does not support authentication/association or connect commands
nl80211: deinit ifname=wlan0 disabled_11b_rates=0
Could not read interface wlan0 flags: No such device
wlan0: Failed to initialize driver interface
Anyone using the same module and having the same issue.