diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2023-01-13 10:02:47 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-01-23 20:04:03 -0500 |
commit | 4115ea128af3308c1a5af224fce83b12c2e97e1a (patch) | |
tree | a7fe1eb30b27f971fe5ce47099c8dff8585129f7 /config/printer-wanhao-duplicator-6-2016.cfg | |
parent | 2e8b54ae5f01e2c4897eec109cd8a0cb3c0e5c4a (diff) | |
download | kutter-4115ea128af3308c1a5af224fce83b12c2e97e1a.tar.gz kutter-4115ea128af3308c1a5af224fce83b12c2e97e1a.tar.xz kutter-4115ea128af3308c1a5af224fce83b12c2e97e1a.zip |
output_pin: Deprecate static_value parameter
Remove support for configuring "static" pins in output_pin module. A
"static" pin only saves a few bytes of memory in the micro-controller.
The savings does not justify the increased code complexity.
Deprecate the static_value parameter to warn users. In the interim, a
static_value parameter will set both value and shutdown_value
parameters.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/printer-wanhao-duplicator-6-2016.cfg')
-rw-r--r-- | config/printer-wanhao-duplicator-6-2016.cfg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/printer-wanhao-duplicator-6-2016.cfg b/config/printer-wanhao-duplicator-6-2016.cfg index b1d35fae..de8a3de8 100644 --- a/config/printer-wanhao-duplicator-6-2016.cfg +++ b/config/printer-wanhao-duplicator-6-2016.cfg @@ -86,7 +86,7 @@ pwm: True scale: 2.782 cycle_time: .000030 hardware_pwm: True -static_value: 1.2 +value: 1.2 [output_pin stepper_z_current] pin: PL4 @@ -94,7 +94,7 @@ pwm: True scale: 2.782 cycle_time: .000030 hardware_pwm: True -static_value: 1.2 +value: 1.2 [output_pin stepper_e_current] pin: PL3 @@ -102,7 +102,7 @@ pwm: True scale: 2.782 cycle_time: .000030 hardware_pwm: True -static_value: 1.0 +value: 1.0 [display] lcd_type: ssd1306 |