2016-05-25 18:37:40 +03:00
|
|
|
#ifndef __STEPPER_H
|
|
|
|
#define __STEPPER_H
|
|
|
|
|
|
|
|
#include <stdint.h> // uint8_t
|
|
|
|
|
2016-06-09 04:33:50 +03:00
|
|
|
uint_fast8_t stepper_event(struct timer *t);
|
2017-03-05 23:00:15 +03:00
|
|
|
struct stepper *stepper_oid_lookup(uint8_t oid);
|
2016-05-25 18:37:40 +03:00
|
|
|
void stepper_stop(struct stepper *s);
|
|
|
|
|
|
|
|
#endif // stepper.h
|