summaryrefslogtreecommitdiffstats
path: root/watch-library/watch/watch_gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'watch-library/watch/watch_gpio.c')
-rw-r--r--watch-library/watch/watch_gpio.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/watch-library/watch/watch_gpio.c b/watch-library/watch/watch_gpio.c
index 460a38df..a9bc139d 100644
--- a/watch-library/watch/watch_gpio.c
+++ b/watch-library/watch/watch_gpio.c
@@ -27,6 +27,12 @@
gpio_set_pin_function(pin, GPIO_PIN_FUNCTION_OFF);
}
+void watch_disable_digital_input(const uint8_t pin) {
+ gpio_set_pin_direction(pin, GPIO_DIRECTION_OFF);
+ gpio_set_pin_pull_mode(pin, GPIO_PULL_OFF);
+ gpio_set_pin_function(pin, GPIO_PIN_FUNCTION_OFF);
+}
+
void watch_enable_pull_up(const uint8_t pin) {
gpio_set_pin_pull_mode(pin, GPIO_PULL_UP);
}