From e0f28f81d0ee2f360b070a38ee3b0c8f2ddf7f26 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Fri, 7 Jan 2022 13:03:11 +0100 Subject: [PATCH] cpu/sam0_common: add missing MUX definitions This adds the missing PINMUX modes to the enum. --- cpu/sam0_common/include/periph_cpu_common.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cpu/sam0_common/include/periph_cpu_common.h b/cpu/sam0_common/include/periph_cpu_common.h index 6138e18002..df221f35eb 100644 --- a/cpu/sam0_common/include/periph_cpu_common.h +++ b/cpu/sam0_common/include/periph_cpu_common.h @@ -147,7 +147,12 @@ typedef enum { GPIO_MUX_F = 0x5, /**< select peripheral function F */ GPIO_MUX_G = 0x6, /**< select peripheral function G */ GPIO_MUX_H = 0x7, /**< select peripheral function H */ + GPIO_MUX_I = 0x8, /**< select peripheral function I */ + GPIO_MUX_J = 0x9, /**< select peripheral function J */ + GPIO_MUX_K = 0xa, /**< select peripheral function K */ GPIO_MUX_L = 0xb, /**< select peripheral function L */ + GPIO_MUX_M = 0xc, /**< select peripheral function M */ + GPIO_MUX_N = 0xd, /**< select peripheral function N */ } gpio_mux_t; #endif