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
13
14
extern crate alloc;

mod messages;
#[cfg(not(target_arch = "wasm32"))]
#[path = "sim/rc_joystick.rs"]
mod rc_joystick;
mod sim_support;
mod tasks;

include!("sim.rs");

fn main() {
    run_bevymon();
}