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 /docs/Config_Changes.md | |
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 'docs/Config_Changes.md')
-rw-r--r-- | docs/Config_Changes.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/Config_Changes.md b/docs/Config_Changes.md index 2ceb868d..bd00e3d7 100644 --- a/docs/Config_Changes.md +++ b/docs/Config_Changes.md @@ -8,6 +8,10 @@ All dates in this document are approximate. ## Changes +20240123: The output_pin `static_value` parameter is deprecated. +Replace with `value` and `shutdown_value` parameters. The option will +be removed in the near future. + 20231216: The `[hall_filament_width_sensor]` is changed to trigger filament runout when the thickness of the filament exceeds `max_diameter`. The maximum diameter defaults to `default_nominal_filament_diameter + max_difference`. See |