Rust device driver crate for the MAX116xx 10-bit ADC devices
Go to file
Robin Müller c9b5f6a4e9
Rust/max116xx-10bit/pipeline/head This commit looks good Details
add Eq derives
2022-09-13 10:46:30 +02:00
.github added .github ci files 2021-12-12 23:47:47 +01:00
automation add two more toolchains in jenkinsfile 2021-12-14 14:13:45 +01:00
src add Eq derives 2022-09-13 10:46:30 +02:00
.gitignore init commit 2021-12-12 13:16:27 +01:00
CHANGELOG.md v0.2.1 2021-12-14 14:23:10 +01:00
Cargo.toml v0.2.1 2021-12-14 14:23:10 +01:00
LICENSE-APACHE added license files 2021-12-12 13:23:40 +01:00
NOTICE First basic device crate done 2021-12-12 13:41:59 +01:00
README.md v0.2.1 2021-12-14 14:23:10 +01:00

README.md

Crates.io build docs.rs

Rust Maxim 116xx 10-bit ADC device driver crate

This is a platform agnostic Rust driver for the MAX11618-MAX11621, MAX11624 and MAX11625 10-bit ADC devices which uses the embedded-hal traits.

This driver supports most required features but the CNVST pin support is still limited because the test development board did not have the pin connected. Pull requests to improve this are welcome.

Usage

To use this driver, import this crate and an embedded-hal implementation and then instantiate the appropriate device.

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 the example application here using a thin abstraction layer