1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #16265 from dylad/pr/sam0/doc_update

cpu/sam0: correct periph_cpu_common.h documentation
This commit is contained in:
benpicco 2021-04-01 12:57:28 +02:00 committed by GitHub
commit 156c08854d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -147,7 +147,7 @@ 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_L = 0xb,
GPIO_MUX_L = 0xb, /**< select peripheral function L */
} gpio_mux_t;
#endif
@ -332,9 +332,9 @@ typedef struct {
*/
typedef enum {
SPI_PAD_MISO_0 = 0x0, /**< use pad 0 for MISO line */
SPI_PAD_MISO_1 = 0x1, /**< use pad 0 for MISO line */
SPI_PAD_MISO_2 = 0x2, /**< use pad 0 for MISO line */
SPI_PAD_MISO_3 = 0x3, /**< use pad 0 for MISO line */
SPI_PAD_MISO_1 = 0x1, /**< use pad 1 for MISO line */
SPI_PAD_MISO_2 = 0x2, /**< use pad 2 for MISO line */
SPI_PAD_MISO_3 = 0x3, /**< use pad 3 for MISO line */
} spi_misopad_t;
/**