cu-flight-controller 1.0.0

This is a basic quadcopter Flight Controller implemented end to end using Copper components
Documentation
#[cfg(all(feature = "memmon", not(feature = "firmware")))]
pub type FlightMonitor = cu_memmon::CuMemMon;

#[cfg(all(
    feature = "bevymon",
    not(feature = "memmon"),
    not(feature = "firmware")
))]
pub type FlightMonitor = cu_bevymon::CuBevyMon;

#[cfg(all(
    feature = "sim",
    not(feature = "memmon"),
    not(feature = "bevymon"),
    not(feature = "firmware")
))]
pub type FlightMonitor = cu_consolemon::CuConsoleMon;

#[cfg(any(
    feature = "firmware",
    all(
        not(feature = "sim"),
        not(feature = "bevymon"),
        not(feature = "memmon")
    )
))]
pub type FlightMonitor = cu_logmon::CuLogMon;