Hey,
i'm currently working on setting my voxl to softap mode. While doing that i encountered some issues that i wanted to let u know.
Voxl: Voxl 1
Voxl System Image: 3.8.0
Voxl Suite: 0.7.0
So when i'm trying to set the voxl into softap factory mode i'm getting the following error:
voxl-wifi -f
Output:

Seems like voxl-hwscan doesn't exist anymore in the new system-image ?
Also when i tried editing the default password in:
/usr/bin/voxl-wifi l. 5-7
DEFAULT_SSID="VOXL-BLA"
DEFAULT_PASS="somesecretpassword"
DEFAULT_COUNTRY_CODE="mycountrycode"
it will still use the standart password 1234567890. So i had a look at the hostapd.conf,
and it seems like there also is a wpa_passphrase var at line 997 and a country code at line 99. Modifying voxl-wifi in line 54 to:
function create_softap_conf_file () {
echo "editing ${hostapd_conf_file} for softap mode, ssid is: ${ssid}"
sed -i "/^ssid=/c\ssid=${ssid}" ${hostapd_conf_file}
sed -i "/^wpa_passphrase=/c\wpa_passphrase=${DEFAULT_PASS}" ${hostapd_conf_file}
sed -i "/^country_code=/c\country_code=${DEFAULT_COUNTRY_CODE}" ${hostapd_conf_file}
echo "creating new $conf_file for softap mode, ssid is: ${ssid}"
cat > ${conf_file} << EOF1
country=${country_code}
seems to work. Maybe you could include that in future releases, or let me know if i did something nasty.