Wifi/Hotspot of Go1 is not turn on

Hotspot/WiFi of Go1 is not turning on automatic on system startup. After startup manually we need to turn off and turn on wifi then only wifi/hotspot is visible and able to connect

Can you please help to resolve this one

hostapd.conf file details are as follows

interface=wlan0
driver=nl80211
hw_mode=a
ieee80211n=1
ieee80211ac=1
ieee80211d=1
ieee80211h=1
require_ht=1
require_vht=1
wmm_enabled=1
country_code=US

vht_oper_chwidth=1
channel=165
vht_oper_centr_freq_seg0_idx=155
ht_capab=[HT40-][HT40+][SHORT-GI-40][DSSS_CCK-40]

wpa=2
wpa_key_mgmt=WPA-PSK
rsn_pairwise=CCMP
ssid=Q1WiFi
wpa_passphrase=password

Hi @dhananjay,

Is this the custom board?

If so a quick solution would be to add a cron job that would start the WiFi service when the controller is booted.

Cron Job Example

  • Make an executable file
touch wifi_startup.bash
sudo chmod +x wifi_startup.bash
  • Edit file and you bash commands for starting e.g.
#!/usr/bin/env bash

sleep 20s
sudo systemctl restart NetworkManager
  • Save file and run cron job
sudo crontab -e
  • Add a command to start wifi each time the board is rebooted
@reboot /home/pi/wifi_startup.bash
  • Save and now it should run each time