You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-7Lines changed: 19 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,11 @@ OpenIPC FPV ground station for Windows & Linux. Forked from [fpv4win](https://gi
10
10
11
11

12
12
13
-
For now, only RTL8812AU Wi-Fi adapter is supported.
13
+
> [!NOTE]
14
+
> For now, only RTL8812AU Wi-Fi adapter is supported.
14
15
15
16
### Usage
17
+
16
18
1. (Only for Windows) Download [Zadig](https://zadig.akeo.ie/)
17
19
2. (Only for Windows) Install the libusb driver for your adapter.
18
20
Go *Options* → *List All Devices*.
@@ -27,22 +29,25 @@ For now, only RTL8812AU Wi-Fi adapter is supported.
27
29
28
30
### Common run issues
29
31
30
-
* If the application crashes at startup on Windows, try installing [Microsoft Visual C++ Redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-microsoft-visual-c-redistributable-version).
32
+
* If the application crashes at startup on Windows, install [Microsoft Visual C++ Redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-microsoft-visual-c-redistributable-version) first.
31
33
32
34
### Latency test
35
+
33
36

34
37
35
38
### TODOs
39
+
36
40
- Ground side OSD
37
41
38
42
### How to build on Windows
39
-
1. Install vcpkg.
43
+
44
+
1. Install vcpkg somewhere else.
40
45
```powershell
41
46
git clone https://github.com/microsoft/vcpkg.git
42
47
cd vcpkg
43
48
.\bootstrap-vcpkg.bat
44
49
```
45
-
50
+
46
51
2. Install dependencies.
47
52
```powershell
48
53
.\vcpkg integrate install
@@ -54,7 +59,6 @@ For now, only RTL8812AU Wi-Fi adapter is supported.
54
59
55
60
4. Clone third-party library source.
56
61
```powershell
57
-
cd aviateur
58
62
git submodule init
59
63
git submodule update
60
64
```
@@ -63,7 +67,14 @@ For now, only RTL8812AU Wi-Fi adapter is supported.
This is because the pre-installed vcpkg from Visual Studio installer overrides the PKG_ROOT environment variable.
77
-
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.
88
+
To fix this, find `set(CMAKE_TOOLCHAIN_FILE "$ENV{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake")` in CMakeLists.txt,
89
+
replace `$ENV{VCPKG_ROOT}` with the vcpkg you cloned previously.
0 commit comments