From 14790172e02d4e1624c35797f87ffd94345d54ff Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Fri, 20 Dec 2013 23:00:43 -0800 Subject: [PATCH] altos: lpc exti setup was incorrectly testing mode Check for NOCONFIGURE bit was missing parens Signed-off-by: Keith Packard --- src/lpc/ao_exti_lpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lpc/ao_exti_lpc.c b/src/lpc/ao_exti_lpc.c index 588cf58c..941aa965 100644 --- a/src/lpc/ao_exti_lpc.c +++ b/src/lpc/ao_exti_lpc.c @@ -91,7 +91,7 @@ ao_exti_setup (uint8_t port, uint8_t pin, uint8_t mode, void (*callback)(void)) if (pint == LPC_NUM_PINT) ao_panic(AO_PANIC_EXTI); - if (!mode & AO_EXTI_PIN_NOCONFIGURE) + if (!(mode & AO_EXTI_PIN_NOCONFIGURE)) ao_enable_input(port, pin, mode); ao_arch_block_interrupts(); -- 2.30.2