blackbox-logger 0.1.4

Betaflight compatible blackbox flight data recorder.
1
2
3
4
5
6
pub mod sd_card;

#[allow(async_fn_in_trait)]
pub trait SdStorage {
    async fn write_all(&mut self, data: &[u8]) -> Result<(), ()>;
}