summaryrefslogtreecommitdiff
path: root/usb-i2c-sl018/stepper.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2013-02-07 05:21:24 +0000
committerChristian Pointner <equinox@spreadspace.org>2013-02-07 05:21:24 +0000
commit2ecef8fb8e925eb2942db3f7e0865fca553b7465 (patch)
tree018a3c2fdea026dca11da01f3688d03169b9e3e9 /usb-i2c-sl018/stepper.h
parentnaming convention for heartbeat (diff)
naming convention for stepper
git-svn-id: https://svn.spreadspace.org/avr/trunk@179 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 531bf9e..df8d38d 100644
--- a/usb-i2c-sl018/stepper.h
+++ b/usb-i2c-sl018/stepper.h
@@ -26,7 +26,7 @@
#include <stdint.h>
typedef enum { dir_open = 0, dir_close = 1 } stepper_direction_t;
-void init_stepper(void);
-uint8_t start_stepper(stepper_direction_t direction);
+void stepper_init(void);
+uint8_t stepper_start(stepper_direction_t direction);
#endif