Vasily Evseenko
Vasily Evseenko
this is normal. It switch channel, but driver doesn't report it (driver bug, you can fill ticket to driver author)
@aepkolol Using bash is intended here because there are many bash-only features inside the script. You can install bash to the openwrt router using `opkg update && opkg install bash`
@aepkolol TP-Link EAP225 is ath10k (according to specs on openwrt page). Injection is currently supported by **ath9k** drivers only (rtl8812au/eu have not been seen on any routers). So you need...
@aepkolol You got working injection on MT7986AV, MT7976DA chipset? Is it possible to control tx power?
Could you show output of `wfb-cli gs` and `wfb-cli drone` before and after mavlink failure?
There is a problem with single speed of UART due to it async nature. It doesn't have a separate clock line and rely to internal oscillators of both side. Different...
What version of wfb-ng do you use? Becase latest wfb-ng doesn't have `virtualenv --python=...` in the Makefile. It now have `python3 -m virtualenv ...`
And it build successfully on ubuntu-22.04: https://github.com/svpcom/wfb-ng/actions/runs/11059494849
@StephenCarlson It seems that after installing Python 3.12 your python ecosystem became completely broken. Try to build in the clean environment (for example in docker)
@StephenCarlson wfb-ng has support for deb build using docker. For example you can run: `make deb_docker DOCKER_SRC_IMAGE=ubuntu:22.04` and ensure that in clean environment (docker image of ubuntu 22.04) it will...