— WV-OS · v4.2

The operating system for unmanned flight.

A modular autonomy runtime. Bring your airframe, sensors, and mission requirements — we provide the brains.

Platform terrain visualization

Architecture

WV-OS runs as a containerized service on the flight computer, exposing a stable C++ and Python API to your existing flight stack. Mission modules deploy over the air, signed and verified.

RUNTIME
C++ / Rust
PROTOCOL
MAVLink · ROS 2
TARGETS
Orin · Hailo · Coral
CERTIFICATION
DO-178C track
LICENSE
Per-airframe
DEPLOY
Signed OTA

— SAMPLE INTEGRATION

from wv_os import Aircraft, Mission, Perception

drone = Aircraft.connect("udp://192.168.1.42:14550")
drone.load(Perception.from_pretrained("wv-vision-l"))

with Mission("recon-grid-7") as m:
    m.search(area="kml://target.kml", classes=["vehicle", "person"])
    m.report(channel="ops")
    m.return_to_base(on="low_battery | mission_complete")

drone.execute(m)