Separate out the stepper stopping code from endstop.c into its own trsync.c code file. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
9 lines
139 B
C
9 lines
139 B
C
#ifndef __STEPPER_H
|
|
#define __STEPPER_H
|
|
|
|
#include <stdint.h> // uint8_t
|
|
|
|
uint_fast8_t stepper_event(struct timer *t);
|
|
|
|
#endif // stepper.h
|