From 7e2c0ffa911dcbf4793b34c817747010894c2c15 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 12 Mar 2019 12:20:04 -0400 Subject: atsamd: Use enumerations for pin mappings Signed-off-by: Kevin O'Connor --- src/atsamd/gpio.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/atsamd/gpio.c b/src/atsamd/gpio.c index 2e26fa66..a83163a8 100644 --- a/src/atsamd/gpio.c +++ b/src/atsamd/gpio.c @@ -44,8 +44,14 @@ gpio_peripheral(uint32_t gpio, char ptype, int32_t pull_up) #if CONFIG_MACH_SAMD21 #define NUM_PORT 2 +DECL_ENUMERATION_RANGE("pin", "PA0", GPIO('A', 0), 32); +DECL_ENUMERATION_RANGE("pin", "PB0", GPIO('B', 0), 32); #elif CONFIG_MACH_SAMD51 #define NUM_PORT 4 +DECL_ENUMERATION_RANGE("pin", "PA0", GPIO('A', 0), 32); +DECL_ENUMERATION_RANGE("pin", "PB0", GPIO('B', 0), 32); +DECL_ENUMERATION_RANGE("pin", "PC0", GPIO('C', 0), 32); +DECL_ENUMERATION_RANGE("pin", "PD0", GPIO('D', 0), 32); #endif struct gpio_out -- cgit v1.2.3-70-g09d2