summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-08-15 21:13:50 -0400
committerPete Johanson <peter@peterjohanson.com>2020-08-15 21:13:50 -0400
commitee5900686bdb921beccf87566cb1ba4977059f99 (patch)
tree934817a6296b6c3a147ab5f35dca225469aa52a9 /docs
parent7e1942867b0c7c19f6bd78e6f8a15227fbfc323b (diff)
Fix the active/pull down flags for the example.
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/dev-guide-new-shield.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/docs/dev-guide-new-shield.md b/docs/docs/dev-guide-new-shield.md
index 963a723..8556623 100644
--- a/docs/docs/dev-guide-new-shield.md
+++ b/docs/docs/dev-guide-new-shield.md
@@ -81,9 +81,9 @@ this might look something like:
;
row-gpios
- = <&pro_micro_a 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
- , <&pro_micro_a 2 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
- , <&pro_micro_a 3 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
+ = <&pro_micro_a 1 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
+ , <&pro_micro_a 2 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
+ , <&pro_micro_a 3 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
;
};
};