diff options
author | Tom Dunn <tdunn@artofcontext.com> | 2023-10-10 23:38:17 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2023-10-19 13:13:57 -0400 |
commit | 0c521b601d11ce236a98b4e557a0ab0a6d136b1a (patch) | |
tree | 0c3fdca33f47cae492cded24cd427ea37399f307 /docs/Config_checks.md | |
parent | 593486fadc13d3d204762070ae915f3b8968a807 (diff) | |
download | kutter-0c521b601d11ce236a98b4e557a0ab0a6d136b1a.tar.gz kutter-0c521b601d11ce236a98b4e557a0ab0a6d136b1a.tar.xz kutter-0c521b601d11ce236a98b4e557a0ab0a6d136b1a.zip |
Config_checks: Missing ! in pin inversion example in Verify endstops
In the "Verify endstops" section there is an example of adding an
exclamation point to the pin definition to invert its logic. I
believe the intention in the example is to keep the hardware pull-up
^ and follow it with ! to invert the pin logic, but the ! is missing.
Signed-off-by: Tom Dunn <thomas.dunn@gmail.com>
Diffstat (limited to 'docs/Config_checks.md')
-rw-r--r-- | docs/Config_checks.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Config_checks.md b/docs/Config_checks.md index ab65678e..ba4a5015 100644 --- a/docs/Config_checks.md +++ b/docs/Config_checks.md @@ -67,7 +67,7 @@ The QUERY_ENDSTOPS command should report the endstop as "TRIGGERED". If the endstop appears inverted (it reports "open" when triggered and vice-versa) then add a "!" to the pin definition (for example, -"endstop_pin: ^PA2"), or remove the "!" if there is already one +"endstop_pin: ^!PA2"), or remove the "!" if there is already one present. If the endstop does not change at all then it generally indicates that |