summaryrefslogtreecommitdiff
path: root/usb-i2c-sl018/stepper.h
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@wirdorange.org>2013-02-05 23:37:16 +0000
committerOthmar Gsenger <otti@wirdorange.org>2013-02-05 23:37:16 +0000
commit82fc54a1ceb3473e7a79a02dbc65abc556cdf93b (patch)
treef12c0040b42dc4d7a8d608f12b2f4831cd2e85b2 /usb-i2c-sl018/stepper.h
parentadded basic stepper support (diff)
motor with timer working
git-svn-id: https://svn.spreadspace.org/avr/trunk@120 aa12f405-d877-488e-9caf-2d797e2a1cc7
Diffstat (limited to 'usb-i2c-sl018/stepper.h')
-rw-r--r--usb-i2c-sl018/stepper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usb-i2c-sl018/stepper.h b/usb-i2c-sl018/stepper.h
index 7cc5f3b..257f81b 100644
--- a/usb-i2c-sl018/stepper.h
+++ b/usb-i2c-sl018/stepper.h
@@ -26,9 +26,9 @@
typedef enum { dir_open = 0, dir_close = 1 } stepper_direction_t;
-void handle_step(void);
+//uint8_t handle_step(void);
void init_stepper(void);
void start_stepper(stepper_direction_t direction);
-void stop_stepper(void);
+//void stop_stepper(void);
#endif