bmi2 0.1.2

embedded-hal driver for the bmi270/260 IMU
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]

#[macro_use]
extern crate fixedvec;

mod registers;
pub mod config;

pub mod interface;
pub use interface::I2cAddr;
pub mod types;

pub mod bmi2;
pub use bmi2::Bmi2;