cu-flight-controller 1.2.0

This is a basic quadcopter Flight Controller implemented end to end using Copper components
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate cu29 as bevy;

mod messages;

use cu29::prelude::*;
use cu29_export::run_cli;

// The simulator and deployed compute runtime use the same auto-flying graph.
gen_cumsgs!("compute_config.ron");

fn main() {
    run_cli::<CuStampedDataSet>().expect("Failed to run the compute export CLI");
}