libgreat 0.2.2

Pure rust implementation of Great Scott Gadgets' libgreat communications protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg_attr(feature = "nightly", feature(error_in_core))]
#![cfg_attr(feature = "nightly", feature(panic_info_message))]
#![cfg_attr(not(test), no_std)]

pub mod error;
pub mod firmware;
pub mod gcp;

pub use error::GreatError;
pub use error::GreatResult;