Crates.io | stepper-driver |
lib.rs | stepper-driver |
version | 0.1.0 |
source | src |
created_at | 2018-05-02 13:49:23.660755 |
updated_at | 2018-05-02 13:49:23.660755 |
description | A49xx and DRV88xx stepper motor driver. |
homepage | |
repository | https://github.com/dethoter/stepper-driver |
max_upload_size | |
id | 63431 |
size | 22,292 |
Stepper motor driver that supports A49xx and DRV88xx families of stepper drivers.
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_std]
extern crate panic_abort;
extern crate cortex_m;
extern crate embedded_hal;
extern crate tm4c123x_hal as hal;
extern crate stepper_rs;
use hal::delay::Delay;
use hal::gpio::GpioExt;
use hal::sysctl::SysctlExt;
fn main() {
let p = hal::Peripherals::take().unwrap();
let sysctl = p.SYSCTL.constrain();
let portc = p.GPIO_PORTC.split(&sysctl.power_control);
let clocks = sysctl.clock_setup.freeze();
let cp = cortex_m::Peripherals::take().unwrap();
let mut driver = stepper_rs::MotorDriver::a4988(
Delay::new(cp.SYST, &clocks),
portc.pc6.into_push_pull_output(),
portc.pc7.into_push_pull_output(),
200,
16,
100f32
);
loop {
driver.set_speed(100f32);
driver.set_direction(true);
driver.move_instant(600);
driver.set_direction(false);
driver.move_instant(600);
driver.set_speed(300f32);
driver.set_direction(true);
driver.move_smooth(1600, 150, 150);
driver.set_direction(false);
driver.move_smooth(1600, 150, 150);
}
}
hal::delay
into properly configured timer when
embedded-hal will get more
consistent CountDowm::Time
restrictions.Licensed at your option under either of