Fantome is a low-SWaP, anti-tamper Virtual Machine. Deploy complex swarm logic, AI workflows, and MAVLink orchestration to the edge without exposing your intellectual property to reverse engineering.
Code compiled to Fantome (.fx) is cryptographically entangled and stripped of all readable strings via proprietary algorithms. Capturing the hardware yields zero actionable intelligence.
Why run heavy Linux and Python on a Companion Pi? The Fantome VM requires less than 32KB of RAM. Turn a $4 microcontroller into a secure, high-performance orchestration node.
Fantome's syntax enforces state-virality. Global variables are isolated by design, mathematically preventing accidental state mutations and eliminating catastrophic flight-logic bugs.
Meet the Fantome Core Module. A 5-gram companion computer pre-loaded with the Fantome VM. Connect it to any PX4, ArduPilot, or industrial drone via standard UART.
Load your encrypted .fx mission payloads via SD Card or Over-The-Air (OTA) swarm links. Bring secure, hardware-agnostic autonomy to any airframe in minutes.
Explore Hardware SpecsWrite your logic in human-readable Fantome Script (.fms), compile it with the stealth compiler, and deploy.
// drone_mission.fms
TARGET_ALT := 50.0;// constant
mission_state = "TAKEOFF"; // mutable
if (drone.readAlt() < TARGET_ALT) {
drone.setMotors(75.0, 75.0, 80.0);
} else {
mission_state = "LOITER";
mavlink.send_waypoint(home_x, home_y);
}