blob: 8e27b789f4e0dbb487d02fd0c5c7fdaf2d3ae2e0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __STEPPER_H
#define __STEPPER_H
#include <stdint.h> // uint8_t
uint_fast8_t stepper_event(struct timer *t);
struct stepper *stepper_oid_lookup(uint8_t oid);
void stepper_stop(struct stepper *s);
#endif // stepper.h
|