
_voxl_wifi_legacy(){

	local OPTS=('help dump getmode enable-station enable-softap 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_legacy voxl-wifi-legacy
