Buildbotics CNC Controller Firmware Changelog
==============================================
+## v0.3.25
+ - Error on home if max-soft-limit <= min-soft-limit + 1. #139
+
## v0.3.24
- Added unhome button on axis position popup.
- Ignore soft limits of max <= min.
if mode == 'switch-max' and not int(self.get(axis + '_xs')):
return 'Configured for max switch but switch is disabled'
+ softMin = int(self.get(axis + '_tn'))
+ softMax = int(self.get(axis + '_tm'))
+ if softMax <= softMin + 1:
+ return 'max-soft-limit must be at least 1mm greater ' \
+ 'than min-soft-limit'
+
def motor_enabled(self, motor):
return bool(int(self.vars.get('%dpm' % motor, 0)))