cu-flight-controller 1.0.0

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

mod messages;

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

gen_cumsgs!("copperconfig.ron");

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