diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 13:48:48 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 14:20:15 -0500 |
commit | 69247d87fb5a4e5c8148018f06ed350451f7b51e (patch) | |
tree | d96773007f63a90771a5fca62244eec9b4af63b4 | |
parent | 03348fab4778cebb91d0772a7bb6ad7cd7562efe (diff) | |
download | kutter-69247d87fb5a4e5c8148018f06ed350451f7b51e.tar.gz kutter-69247d87fb5a4e5c8148018f06ed350451f7b51e.tar.xz kutter-69247d87fb5a4e5c8148018f06ed350451f7b51e.zip |
stepper: Wrap code to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | src/stepper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stepper.c b/src/stepper.c index a296914d..3e85910a 100644 --- a/src/stepper.c +++ b/src/stepper.c @@ -51,8 +51,8 @@ struct stepper { enum { POSITION_BIAS=0x40000000 }; -enum { SF_LAST_DIR=1<<0, SF_NEXT_DIR=1<<1, SF_INVERT_STEP=1<<2, SF_HAVE_ADD=1<<3, - SF_LAST_RESET=1<<4, SF_NO_NEXT_CHECK=1<<5 }; +enum { SF_LAST_DIR=1<<0, SF_NEXT_DIR=1<<1, SF_INVERT_STEP=1<<2, + SF_HAVE_ADD=1<<3, SF_LAST_RESET=1<<4, SF_NO_NEXT_CHECK=1<<5 }; // Setup a stepper for the next move in its queue static uint_fast8_t |