blackbox-logger 0.1.4

Betaflight compatible blackbox flight data recorder.
# `blackbox-logger` Rust Crate<br>![license]https://img.shields.io/badge/license-MIT-green [![License]https://img.shields.io/badge/License-Apache_2.0-blue.svg]https://opensource.org/licenses/Apache-2.0 ![open source]https://badgen.net/badge/open/source/blue?icon=github

Betaflight compatible blackbox flight data recorder.
That is it produces output that be viewed using the [Betaflight Blackbox Explorer](https://blackbox.betaflight.com/),
and can be processed by Nick's [Blackbox tools](https://github.com/cleanflight/blackbox-tools).

This Blackbox crate is a port (modification) of the Blackbox implementation by Nicholas Sherlock (aka thenickdude),
see <https://github.com/thenickdude/blackbox>.

The main changes are:

1. Code has been ported to Rust.
2. Dependencies (ie configs, features, sensors etc) have been removed so this library can be used on its own.

This crate is `no_std`, that it does not link to the standard library and so does not depend on an operating system
and uses no allocation. This means it is suitable for embedded system.

## Original implementation

I originally implemented this crate as a C++ library:
[Library-Blackbox](https://github.com/martinbudden/Library-Blackbox).

## License

Licensed under either of:

* Apache License, Version 2.0 ([LICENSE-APACHE]LICENSE-APACHE or <http://www.apache.org/licenses/LICENSE-2.0>)
* MIT license ([LICENSE-MIT]LICENSE-MIT or <http://opensource.org/licenses/MIT>)

at your option.