Skip to content

Commit 2996a41

Browse files
authored
Merge pull request #93 from BlackFox-org/main
The great split and decent quick start for wfb-ng
2 parents a5c961e + 4cd68bc commit 2996a41

16 files changed

+180
-144
lines changed

astro.config.mjs

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,29 @@ export default defineConfig({
5656
{
5757
label: "FPV (First Person View)",
5858
collapsed: true,
59-
autogenerate: {
60-
collapsed: true,
61-
directory: "/use-cases/fpv",
62-
},
59+
items: [
60+
{
61+
label: "Net cards",
62+
collapsed: true,
63+
autogenerate: {
64+
directory: "/use-cases/fpv/net-cards",
65+
},
66+
},
67+
{
68+
label: "WFB-NG",
69+
collapsed: true,
70+
autogenerate: {
71+
directory: "/use-cases/fpv/wfb-ng",
72+
},
73+
},
74+
{
75+
label: "APFPV",
76+
collapsed: true,
77+
autogenerate: {
78+
directory: "/use-cases/fpv/apfpv",
79+
},
80+
},
81+
],
6382
badge: { text: "WIP", variant: "caution" },
6483
},
6584
{

src/content/docs/development/contribution-guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Use the following table to determine where to add your new page based on its con
3131
| **Section** | **Description** | **Directory** | **Sidebar Behavior** |
3232
|--------------------|--------------------------------------------------------------------------------------------|--------------------------------------|-----------------------------------|
3333
| **Getting Started** | Introductory content such as project overview, roadmap, and setup instructions. | `src/content/docs/getting-started/` | Manual configuration required |
34-
| **Use Cases** | Guides related to FPV, home automation, and video surveillance use cases. | `src/content/docs/use-cases/` | Autogenerate enabled |
34+
| **Use Cases** | Guides related to FPV, home automation, and video surveillance use cases. | `src/content/docs/use-cases/` | Autogenerate enabled only in subfolders(apfpv, wfb-ng, net-cards) |
3535
| **Hardware** | Documentation about OpenIPC hardware components and configurations. | `src/content/docs/hardware/` | Autogenerate enabled |
3636
| **Software** | Documentation about software features and installations. | `src/content/docs/software/` | Autogenerate enabled |
3737
| **Development** | Contributing guides, application projects, and development tools. | `src/content/docs/development/` | Manual configuration required |

src/content/docs/use-cases/fpv/-quick-start.md

Lines changed: 0 additions & 132 deletions
This file was deleted.
File renamed without changes.

src/content/docs/use-cases/fpv/cameras.md

Lines changed: 0 additions & 4 deletions
This file was deleted.
File renamed without changes.

src/content/docs/use-cases/fpv/Net cards/rtl8812au.mdx renamed to src/content/docs/use-cases/fpv/net-cards/rtl8812au.mdx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,17 @@ description: "RTL8812AU documentation page for OpenIPC wiki"
44
---
55
import ThemeImage from '/src/components/ThemeImage.astro'
66

7-
The RTL8812AU is an old, expensive, but proven WiFi chip that can be found in a lot of network cards. AU based NICs have exceptional community support so that 5Mhz, 10MHz, 20MHz and 40MHz can receive and transmit! So AU based equipment can achieve exceptional bitrates, as for example on 21-04-2025 52Mbps was achieved in total (36Mbps video). On this page you can find information about known WiFi adapters with this chip.
7+
The RTL8812AU is an old, expensive, but proven WiFi chip that can be found in a lot of network cards. AU based NICs have exceptional community support so 5Mhz, 10MHz, 20MHz and 40MHz injection/monitor modes can receive and transmit! So AU based equipment can achieve exceptional bitrates, as for example on 21-04-2025 52Mbps was achieved in total (36Mbps video)(WFB-NG). On this page you can find information about known WiFi adapters with this chip.
8+
9+
:::caution
10+
RTL8812AU driver reports a smoothed RSSI which reacts very slowly, so `hostapd` based APFPV firmware has jittery feed on that WiFi chip.
11+
:::
812

913
## BL-R8812AF1
1014
LB-LINK BL-R8812AF1 is small size, low power net card. It is very popular choice for toothpick builds. This net card can be found on EMAX Wyvern Link VTX Alpha 100mW.
15+
:::caution
16+
This net card can get expremely hot very quick, so it is better to make some-kind of radiator for it.
17+
:::
1118
![image](/images/bl-r8812af1-top.png)
1219
<ThemeImage
1320
lightSrc="/images/bl-r8812af1-bottom-light.png"

src/content/docs/use-cases/fpv/Net cards/rtl8812eu.mdx renamed to src/content/docs/use-cases/fpv/net-cards/rtl8812eu.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ description: "RTL8812EU documentation page for OpenIPC wiki"
55
import ThemeImage from '/src/components/ThemeImage.astro'
66

77
RTL8812EU is new, cheap, widely used WiFi chip. Which can be found on wide variety of WiFi adapters.
8-
This WiFi chip was released not a long ago, driver capabilities are limited for now, so 5MHz, 10MHz, 20MHz transmit modes are supported right now(40MHz only RX). On this page you can find information about known WiFi adapters with this chip.
9-
Please read general info about WiFi adapters here.
8+
This WiFi chip was released not a long ago, driver injection/monitor capabilities are limited for now, so 5MHz, 10MHz, 20MHz transmit modes are supported right now(40MHz only RX). It is superior choice for APFPV firmware. On this page you can find information about known WiFi adapters with this chip.
109
:::caution
1110
If you don't receive image after switching on 40MHz mode, please read this [article](/use-cases/fpv/unbrick-eu-bu/) to fix your issue.
1211
:::

0 commit comments

Comments
 (0)