
_voxl-send-esc-tone-cmd(){
	local OPTS=('--help --freq --duration --power ')
	COMPREPLY=()
	if [ "$COMP_CWORD" -eq 1 ]; then
		COMPREPLY=( $(compgen -W '${OPTS}' -- ${COMP_WORDS[COMP_CWORD]}) )
		return 0
	fi
}

complete -F _voxl-send-esc-tone-cmd voxl-send-esc-tone-cmd
