OpenIPC FPV ground station for Windows & Linux. Forked from fpv4win.
Note
Adaptive Link support is only for Linux.
Note
Only RTL8812AU Wi-Fi adapter is supported.
Note
No MAVLink support.
- (Windows) Download Zadig
- (Windows) Install the libusb driver for your adapter.
Go Options → List All DevicesScreenshot.cpp.
Select your adapter. Install the driver. Remember the USB ID, we will need it soon.
- (Linux) Go to
/lib/udev/rules.d
, create a new file named80-my8812au.rules
and addSUBSYSTEM=="usb", ATTRS{idVendor}=="0bda", ATTRS{idProduct}=="8812", MODE="0666"
in it. - (Linux) Call
sudo udevadm control --reload-rules
, then reboot (required). - Run Aviateur (on Linux, if you skip step 3 & 4, root privileges are needed to access the adapter).
- Select the adapter of the correct USB ID.
- Select your drone channel.
- Select your WFB-NG key.
- Start & Fly!
- If the application crashes at startup on Windows, install Microsoft Visual C++ Redistributable first.
Note
Currently, the glass-to-glass latency on Linux is much higher than that on Windows (~100 ms on Linux while ~70 ms on Windows). This difference may stem from some performance issue in libusb.
- GStreamer backend
- Ground side OSD
-
Install vcpkg somewhere else.
git clone https://github.com/microsoft/vcpkg.git cd vcpkg .\bootstrap-vcpkg.bat
-
Install dependencies.
.\vcpkg integrate install .\vcpkg install libusb ffmpeg libsodium opencv
-
Add VCPKG_ROOT to environment. (Change the value to your vcpkg path.)
-
Clone third-party library sources.
git submodule update --init --recursive
-
Open as a CMake project and build.
-
Install dependencies.
git submodule update --init --recursive sudo apt install libusb-1.0-0-dev ffmpeg libsodium-dev libopencv-dev xorg-dev libpcap-dev
-
Open as a CMake project and build.
On Windows
CMake Error at C:/Program Files/Microsoft Visual Studio/2022/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake:230 (message): ...
This is because the pre-installed vcpkg from Visual Studio installer overrides the PKG_ROOT environment variable.
To fix this, find set(CMAKE_TOOLCHAIN_FILE "$ENV{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake")
in CMakeLists.txt,
replace $ENV{VCPKG_ROOT}
with the vcpkg you cloned previously.