From 991fbd01beddc68ddca03eedeee2fb7ae41f64ab Mon Sep 17 00:00:00 2001 From: Alexandru Gagniuc Date: Thu, 16 May 2013 02:18:09 -0500 Subject: [PATCH] lm4f: Add all GPIO ports to memorymap.h The base addresses for GPIO ports J through Q were missing. Add them. Signed-off-by: Alexandru Gagniuc --- include/libopencm3/lm4f/memorymap.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/libopencm3/lm4f/memorymap.h b/include/libopencm3/lm4f/memorymap.h index 0673530d..12b05a21 100644 --- a/include/libopencm3/lm4f/memorymap.h +++ b/include/libopencm3/lm4f/memorymap.h @@ -32,6 +32,7 @@ #define GPIOF_APB_BASE (0x40025000) #define GPIOG_APB_BASE (0x40026000) #define GPIOH_APB_BASE (0x40027000) +#define GPIOJ_APB_BASE (0x4003D000) #define GPIOA_BASE (0x40058000) #define GPIOB_BASE (0x40059000) @@ -41,6 +42,13 @@ #define GPIOF_BASE (0x4005D000) #define GPIOG_BASE (0x4005E000) #define GPIOH_BASE (0x4005F000) +#define GPIOJ_BASE (0x40060000) +#define GPIOK_BASE (0x40061000) +#define GPIOL_BASE (0x40062000) +#define GPIOM_BASE (0x40063000) +#define GPION_BASE (0x40064000) +#define GPIOP_BASE (0x40065000) +#define GPIOQ_BASE (0x40066000) #define UART0_BASE (0x4000C000) #define UART1_BASE (0x4000D000)