allegro_motor_drivers/
lib.rs

1//! Host-side drivers for Allegro Microsystems motor controller integrated circuits
2
3#![cfg_attr(not(test), no_std)]
4
5pub mod a4910;
6pub mod a4964;
7pub mod a496x;
8
9pub mod error;
10pub mod io;
11pub mod regs;