This commit is contained in:
parent
3bf780a6df
commit
8b3e43f217
@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [unreleased]
|
||||
|
||||
## [v0.1.1]
|
||||
|
||||
- Added badges and some documentation and README tweaks
|
||||
|
||||
## [v0.1.0]
|
||||
|
||||
- Initial release
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "max116xx-10bit"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
||||
edition = "2021"
|
||||
description = "Driver crate for the MAX116xx 10-bit ADC devices"
|
||||
|
@ -26,4 +26,5 @@ The crate uses basic type-level support to prevent using the ADC in a wrong way.
|
||||
The type-level support defaults to an externally clocked device with no wake-up delay.
|
||||
|
||||
This crate was tested using the Vorago REB1 development board. You can find an example application
|
||||
[here](https://egit.irs.uni-stuttgart.de/rust/vorago-reb1).
|
||||
[here](https://egit.irs.uni-stuttgart.de/rust/vorago-reb1/src/branch/main/src/max11619.rs)
|
||||
and [here](https://egit.irs.uni-stuttgart.de/rust/vorago-reb1/src/branch/main/examples/max11619-adc.rs).
|
||||
|
@ -1,3 +1,10 @@
|
||||
//! The crate uses basic type-level support to prevent using the ADC in a wrong way.
|
||||
//! The type-level support defaults to an externally clocked device with no wake-up delay.
|
||||
//!
|
||||
//! ## Examples
|
||||
//!
|
||||
//! You can find an example application [here](https://egit.irs.uni-stuttgart.de/rust/vorago-reb1/src/branch/main/src/max11619.rs)
|
||||
//! and [here](https://egit.irs.uni-stuttgart.de/rust/vorago-reb1/src/branch/main/examples/max11619-adc.rs)
|
||||
#![no_std]
|
||||
use core::{marker::PhantomData, slice::IterMut};
|
||||
use embedded_hal::{
|
||||
|
Loading…
x
Reference in New Issue
Block a user