diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-11-08 10:39:32 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-11-08 10:39:32 -0500 |
commit | afecf7ce36d4d712413d8c90ac055baa51cb26bd (patch) | |
tree | c4e19f68b397932ad608bb862ced3ba1412ecf97 /config | |
parent | 5e6127869ab767dcc39642af09e08c79efc84888 (diff) | |
download | kutter-afecf7ce36d4d712413d8c90ac055baa51cb26bd.tar.gz kutter-afecf7ce36d4d712413d8c90ac055baa51cb26bd.tar.xz kutter-afecf7ce36d4d712413d8c90ac055baa51cb26bd.zip |
stepper: Default to a high direction pin meaning positive direction
Invert the default meaning of the stepper direction pin. Instead of
treating a low value as position motion, treat a high value as
positive motion. This matches what other firmwares do, and it matches
what common stepper motor drivers document.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/example.cfg | 6 | ||||
-rw-r--r-- | config/makergear-m2-2012.cfg | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/config/example.cfg b/config/example.cfg index ec383d75..a8f7aee4 100644 --- a/config/example.cfg +++ b/config/example.cfg @@ -19,8 +19,8 @@ [stepper_x] step_pin: ar29 # Step GPIO pin (triggered high) -dir_pin: ar28 -# Direction GPIO pin (low indicates positive direction) +dir_pin: !ar28 +# Direction GPIO pin (high indicates positive direction) enable_pin: !ar25 # Enable pin (default is enable high; use ! to indicate enable low) step_distance: .0225 @@ -86,7 +86,7 @@ position_max: 200 # stepper_x section [stepper_z] step_pin: ar23 -dir_pin: ar22 +dir_pin: !ar22 enable_pin: !ar25 step_distance: .005 max_velocity: 250 diff --git a/config/makergear-m2-2012.cfg b/config/makergear-m2-2012.cfg index 1db7ee1b..5634c580 100644 --- a/config/makergear-m2-2012.cfg +++ b/config/makergear-m2-2012.cfg @@ -5,7 +5,7 @@ [stepper_x] step_pin: PC0 -dir_pin: PL1 +dir_pin: !PL1 enable_pin: !PA7 step_distance: .0225 max_velocity: 500 @@ -20,7 +20,7 @@ position_max: 200 [stepper_y] step_pin: PC1 -dir_pin: !PL0 +dir_pin: PL0 enable_pin: !PA6 step_distance: .0225 max_velocity: 500 @@ -35,7 +35,7 @@ position_max: 250 [stepper_z] step_pin: PC2 -dir_pin: PL2 +dir_pin: !PL2 enable_pin: !PA5 step_distance: .005 max_velocity: 250 @@ -51,7 +51,7 @@ position_max: 200 [extruder] step_pin: PC3 -dir_pin: !PL6 +dir_pin: PL6 enable_pin: !PA4 step_distance: .004242 max_velocity: 200000 |