diff options
author | John Klug <john.klug@multitech.com> | 2020-10-02 17:18:21 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2020-10-02 17:18:21 -0500 |
commit | a2c16e38ef43759fd4eb1e5d5eccbbad2f63c20c (patch) | |
tree | 9ce333bf161d07c5689c19ff080d590270614490 | |
parent | 61cbfaa050906f978151679f18a8effeedb22499 (diff) | |
download | mtac-a2c16e38ef43759fd4eb1e5d5eccbbad2f63c20c.tar.gz mtac-a2c16e38ef43759fd4eb1e5d5eccbbad2f63c20c.tar.bz2 mtac-a2c16e38ef43759fd4eb1e5d5eccbbad2f63c20c.zip |
Add NINT* Pins for GPIOB module
-rw-r--r-- | machine/sam9g25_gpio.h | 6 | ||||
-rw-r--r-- | machine/ti43x_gpio.h | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/machine/sam9g25_gpio.h b/machine/sam9g25_gpio.h index 4e0132e..3848576 100644 --- a/machine/sam9g25_gpio.h +++ b/machine/sam9g25_gpio.h @@ -11,6 +11,8 @@ #define M_AP1_GPIO3 AT91_PIN_PC8 #define M_AP1_GPIO4 AT91_PIN_PC9 #define M_AP1_NRESET AT91_PIN_PB12 +#define M_AP1_NINT1 AT91_PIN_PB14 +#define M_AP1_NINT2 AT91_PIN_PB15 // gpio pins for Accessory Card 2 #define M_AP2_GPIO1 AT91_PIN_PC20 @@ -18,4 +20,6 @@ #define M_AP2_GPIO3 AT91_PIN_PC22 #define M_AP2_GPIO4 AT91_PIN_PC23 #define M_AP2_NRESET AT91_PIN_PB13 -#endif /* SAM9G25_MFSER_GPIO_H */
\ No newline at end of file +#define M_AP2_NINT1 AT91_PIN_PB17 +#define M_AP2_NINT2 AT91_PIN_PB18 +#endif /* SAM9G25_MFSER_GPIO_H */ diff --git a/machine/ti43x_gpio.h b/machine/ti43x_gpio.h index 842aea0..f51d3ec 100644 --- a/machine/ti43x_gpio.h +++ b/machine/ti43x_gpio.h @@ -11,7 +11,8 @@ #define M_AP1_GPIO3 OMAP_GPIO(0,23) #define M_AP1_GPIO4 OMAP_GPIO(0,22) #define M_AP1_NRESET OMAP_GPIO(1,1) - +#define M_AP1_NINT1 OMAP_GPIO(2,4) +#define M_AP1_NINT2 OMAP_GPIO(2,5) // gpio pins for Accessory Card 2 #define M_AP2_GPIO1 OMAP_GPIO(3,19) @@ -19,4 +20,6 @@ #define M_AP2_GPIO3 OMAP_GPIO(3,20) #define M_AP2_GPIO4 OMAP_GPIO(0,19) #define M_AP2_NRESET OMAP_GPIO(5,29) -#endif /* SAM9G25_MFSER_GPIO_H */
\ No newline at end of file +#define M_AP2_NINT1 OMAP_GPIO(3,17) +#define M_AP1_NINT2 OMAP_GPIO(3,18) +#endif /* SAM9G25_MFSER_GPIO_H */ |