cpu/sam0_common: add missing MUX definitions

This adds the missing PINMUX modes to the enum.
This commit is contained in:
Benjamin Valentin 2022-01-07 13:03:11 +01:00
parent 7eef2bbd50
commit e0f28f81d0

View File

@ -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