Skip to content

Latest commit

 

History

History
executable file
·
67 lines (44 loc) · 2.05 KB

OPENIPC.md

File metadata and controls

executable file
·
67 lines (44 loc) · 2.05 KB

OpenIPC Project

OpenIPC is an open source operating system from the open community targeting for IP cameras

Support Targets

There are two source of camera support list:

OSD Program

There are two kinds of OSD in FPV camera firmware:

1. AirUnit OSD

AirUnit

$ msposd --master /dev/ttyS2 --baudrate 115200 --out 127.0.0.1:14560 --matrix 11 --ahi 1 -r 30 --osd

GroundStation

Just play RTP stream (UDP:5600) with H265 decoder.

2. GroundStation OSD

AirUnit

start msposd application send message to UPD:14560

$ msposd --master /dev/ttyS2 --baudrate 115200 --out 127.0.0.1:14560 --matrix 11 --ahi 1 -r 30

forward UDP:14560 to ground station UPD:14560

$ wfb_tx -p 17 -u 14560 -K /etc/drone.key -B 20 -M 1 -S 1 -L 1 -G long -k 1 -n 2 -T 0 -i 7669206 -f data wlan0

GroundStation

receive air unit msposd message send to UDP:14560

$ wfb_rx -p 17 -i 7669206 -u 14560 -K /etc/gs.key  wlan1

monitor UDP:14560 and draw info on ground station

$ msposd --master 127.0.0.1:14560  --osd -r 50 --ahi 1 --matrix 11 -v

Reference