lite_default — onboard-lite reference stack¶
The compute-lite topology, unsplit, as a self-contained stack folder: everything a small vehicle runs on its own compute, with the heavy global layer left out entirely. It exists so compute-constrained vehicles can fly task-driven missions without paying for global mapping and planning they cannot host.
What it launches¶
The single entry point launch/stack.launch.xml composes:
- Interface (wrapped by design) plus Sensors, Perception, Local,
Behavior — all flat: module launch files with canonical defaults, the
same blocks as
full_default(LiDAR filter, stereo_image_proc + topic keepalive, takeoff/land task server, fixed-trajectory task server, GPU DROAN planner, trajectory controller, PID controller, safety monitor). - Cross-domain extras: the robot↔GCS DDS router (the shared
autonomy_bringup/config/dds_router.yamlallowlist) and the gossip coordination layer.
Deliberately absent: the global layer (vdb_mapping, random_walk) and the logging layer.
When to use it¶
- Compute-constrained vehicles (VOXL, Jetson lite) flying task-driven missions (takeoff, land, fixed trajectory, direct navigate goals) with no onboard global planning.
- As the onboard half reference when authoring a split stack — the
lite_offload_globalsplit stack'sonboard.launch.xmlis this topology paired with an offboard global half and an explicitbridge.yaml.
How to run¶
Verify the topology with the wiring snapshot test:
The shared per-robot preamble (ROBOT_NAME namespace, use_sim_time,
robot_state_publisher, world→map static TF) runs in
autonomy_bringup/launch/robot.launch.xml, which dispatches to this stack
when AIRSTACK_STACK_DIR is set.
Known limits¶
- No global planner:
global_planhas no publisher in this stack. DROAN's navigate task still works with direct goals; exploration-style missions needfull_defaultor thelite_offload_globalsplit. - All layers are flattened in
launch/stack.launch.xml(same layout asfull_default); the interface stays a wrapped include by design, so read wiring.md for the observed MAVROS wiring. modules.repospins no external modules yet; every package is trunk-resident.docker-compose.yamlis a stub — per-stack image composition arrives with the first module pins; trunk compose profiles provide all services.
wiring.md¶
This stack's observed wiring diagram is committed at wiring.md;
CI drift-checks the running graph against it. Regenerate via
airstack test -m wiring --stack lite_default.