diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-01-18 10:07:57 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-01-22 09:07:12 -0500 |
commit | eb7842c221912009e539b50fdd0dde6a050022b4 (patch) | |
tree | b646220cf10f2b558d3890063f3d4b808787178f /src/atsam/gpio.c | |
parent | 7327394c50cc52ba2363959b0647370860f18d9f (diff) | |
download | kutter-eb7842c221912009e539b50fdd0dde6a050022b4.tar.gz kutter-eb7842c221912009e539b50fdd0dde6a050022b4.tar.xz kutter-eb7842c221912009e539b50fdd0dde6a050022b4.zip |
atsam: Add support for the SAM3X8C micro-controller
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/atsam/gpio.c')
-rw-r--r-- | src/atsam/gpio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/atsam/gpio.c b/src/atsam/gpio.c index 7de11ab6..5308e546 100644 --- a/src/atsam/gpio.c +++ b/src/atsam/gpio.c @@ -14,6 +14,8 @@ static Pio * const digital_regs[] = { #if CONFIG_MACH_SAM3X8E PIOA, PIOB, PIOC, PIOD +#elif CONFIG_MACH_SAM3X8C + PIOA, PIOB #elif CONFIG_MACH_SAM4S8C PIOA, PIOB, PIOC #elif CONFIG_MACH_SAM4E8E |