Cross-platform OpenIPC FPV ground station. Forked from fpv4win.
Supports RTL8812AU Wi-Fi adapter only (for now).
-
Download Zadig
-
Install the libusb driver for your adapter. Go Options → List All Devices. Select your adapter. Install the driver. Remember the USB ID, we will need it soon.
-
Select the adapter with the previously obtained USB ID.
-
Select your drone channel.
-
Select your WFB key.
-
Start & Enjoy!
- Video stabilization using optical flow
- i18n
- Linux client
- Android client
-
Install vcpkg.
git clone https://github.com/microsoft/vcpkg.git cd vcpkg; .\bootstrap-vcpkg.bat
-
Install dependencies.
.\vcpkg integrate install .\vcpkg install libusb ffmpeg libsodium vcpkg-tool-ninja
-
Add VCPKG_ROOT() to environment. (Change the value to your vcpkg path.)
-
Clone third-party library source.
cd aviateur git submodule init git submodule update
-
Open as a CMake project and build.
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.