Update mavfwd note

pull/415/head
Igor Zalatov 2024-09-29 23:40:05 +03:00
parent 88146b4788
commit 46a5795cb1
3 changed files with 23 additions and 5 deletions

View File

@ -63,6 +63,7 @@ OpenIPC Wiki
- [A selection of OpenIPC videos on YouTube](en/fpv-youtube.md)
- [RunCam WiFiLink based on OpenIPC](en/fpv-runcam-wifilink-openipc.md)
- [Radxa based groundstation](en/fpv-radxa.md)
- [The mavfwd tool](en/fpv-mavfwd.md)
### Troubleshooting

View File

@ -4,11 +4,6 @@
Selecting hardware to complete OpenIPC FPV kits
-----------------------------------------------
<p align="center">
<img src="https://github.com/OpenIPC/wiki/blob/master/images/fpv-logo.jpg?raw=true" alt="Logo"/>
</p>
### FPV kit 1
- IPCam board GK7205V200 + IMX307

22
en/fpv-mavfwd.md 100644
View File

@ -0,0 +1,22 @@
# OpenIPC Wiki
[Table of Content](../README.md)
OpenIPC FPV - mavfwd tool
-------------------------
The idea is to use telemetry ports for a remote setup:
```
echo cli -s .video0.fps 120 | nc -uq0 localhost 14650
```
Update drone key:
```
file="echo $(cat gs.key | base64) | base64 -d > /etc/drone.key"
echo $file | nc -uq0 localhost 14650
```
Update configuration:
```
file="echo $(cat wfb.conf | base64) | base64 -d > /etc/wfb.conf"
echo $file | nc -uq0 localhost 14650
```