From 67b326d97e6363906b9e8dca8b86130bece69d3a Mon Sep 17 00:00:00 2001
From: Dave Hylands <dhylands@gmail.com>
Date: Thu, 14 Feb 2019 12:37:30 -0800
Subject: [PATCH] stm32/extint: Remove unused (and incorrect) EXTI defines.

---
 ports/stm32/extint.h | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/ports/stm32/extint.h b/ports/stm32/extint.h
index abe959712..d275087c9 100644
--- a/ports/stm32/extint.h
+++ b/ports/stm32/extint.h
@@ -59,13 +59,6 @@
 
 #define EXTI_NUM_VECTORS        (PYB_EXTI_NUM_VECTORS)
 
-#define EXTI_MODE_INTERRUPT     (offsetof(EXTI_TypeDef, IMR))
-#define EXTI_MODE_EVENT         (offsetof(EXTI_TypeDef, EMR))
-
-#define EXTI_TRIGGER_RISING         (offsetof(EXTI_TypeDef, RTSR))
-#define EXTI_TRIGGER_FALLING        (offsetof(EXTI_TypeDef, FTSR))
-#define EXTI_TRIGGER_RISING_FALLING (EXTI_TRIGGER_RISING + EXTI_TRIGGER_FALLING)  // just different from RISING or FALLING
-
 void extint_init0(void);
 
 uint extint_register(mp_obj_t pin_obj, uint32_t mode, uint32_t pull, mp_obj_t callback_obj, bool override_callback_obj);
-- 
GitLab