1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! STSPIN220 Driver
//!
//! Platform-agnostic driver library for the STSPIN220 stepper motor driver.
//! This crate is a specialized facade for the [Step/Dir] library. Please
//! consider using Step/Dir directly, as it provides drivers for more stepper
//! motor drivers, as well as an interface to abstract over them.
//!
//! See [Step/Dir] for more documentation and usage examples.
//!
//! [Step/Dir]: https://crates.io/crates/step-dir

#![no_std]
#![deny(missing_docs)]

pub use step_dir::{drivers::stspin220::*, *};