From 926a582acf7d5e54d05cf3c848c4b56384032fa0 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Sun, 4 Aug 2024 19:09:50 -0600 Subject: [PATCH] use default '0' mode for input gpio --- src/quantimotor-v1/ao_quantimotor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quantimotor-v1/ao_quantimotor.c b/src/quantimotor-v1/ao_quantimotor.c index 33ba6940..2badefe9 100644 --- a/src/quantimotor-v1/ao_quantimotor.c +++ b/src/quantimotor-v1/ao_quantimotor.c @@ -69,7 +69,7 @@ main(void) /* set up the input we watch to sense SOM "health" */ /* choosing pull down so SOM has to actually assert readiness */ - ao_enable_input(HEALTH_PORT, HEALTH_PIN, AO_EXTI_MODE_PULL_DOWN); + ao_enable_input(HEALTH_PORT, HEALTH_PIN, 0); ao_adc_init(); -- 2.47.2