
_voxl_wifi(){

	local OPTS=('factory getmode help softap softap5 station wizard disable-station disable-softap disable-all')

	COMPREPLY=()

	if [ "$COMP_CWORD" -eq 1 ]; then
		COMPREPLY=( $(compgen -W '${OPTS}' -- ${COMP_WORDS[COMP_CWORD]}) )
		return 0
	fi


}

complete -F _voxl_wifi voxl-wifi
