gpio_params.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2021 Gerson Fernando Budke
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
19 #ifndef GPIO_PARAMS_H
20 #define GPIO_PARAMS_H
21 
22 #include "board.h"
23 #include "saul/periph.h"
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
33 {
34  {
35  .name = "SW0",
36  .pin = BTN0_PIN,
37  .mode = BTN0_MODE,
38  .flags = SAUL_GPIO_INVERTED,
39  },
40  {
41  .name = "SW1",
42  .pin = BTN1_PIN,
43  .mode = BTN1_MODE,
44  .flags = SAUL_GPIO_INVERTED,
45  },
46  {
47  .name = "SW2",
48  .pin = BTN2_PIN,
49  .mode = BTN2_MODE,
50  .flags = SAUL_GPIO_INVERTED,
51  },
52  {
53  .name = "SW3",
54  .pin = BTN3_PIN,
55  .mode = BTN3_MODE,
56  .flags = SAUL_GPIO_INVERTED,
57  },
58  {
59  .name = "SW4",
60  .pin = BTN4_PIN,
61  .mode = BTN4_MODE,
62  .flags = SAUL_GPIO_INVERTED,
63  },
64  {
65  .name = "SW5",
66  .pin = BTN5_PIN,
67  .mode = BTN5_MODE,
68  .flags = SAUL_GPIO_INVERTED,
69  },
70  {
71  .name = "SW6",
72  .pin = BTN6_PIN,
73  .mode = BTN6_MODE,
74  .flags = SAUL_GPIO_INVERTED,
75  },
76  {
77  .name = "SW7",
78  .pin = BTN7_PIN,
79  .mode = BTN7_MODE,
80  .flags = SAUL_GPIO_INVERTED,
81  },
82  {
83  .name = "LED0",
84  .pin = LED0_PIN,
85  .mode = LED0_MODE,
86  .flags = SAUL_GPIO_INVERTED,
87  },
88  {
89  .name = "LED1",
90  .pin = LED1_PIN,
91  .mode = LED1_MODE,
92  .flags = SAUL_GPIO_INVERTED,
93  },
94  {
95  .name = "LED2",
96  .pin = LED2_PIN,
97  .mode = LED2_MODE,
98  .flags = SAUL_GPIO_INVERTED,
99  },
100  {
101  .name = "LED3",
102  .pin = LED3_PIN,
103  .mode = LED3_MODE,
104  .flags = SAUL_GPIO_INVERTED,
105  },
106  {
107  .name = "LED4",
108  .pin = LED4_PIN,
109  .mode = LED4_MODE,
110  .flags = SAUL_GPIO_INVERTED,
111  },
112  {
113  .name = "LED5",
114  .pin = LED5_PIN,
115  .mode = LED5_MODE,
116  .flags = SAUL_GPIO_INVERTED,
117  },
118  {
119  .name = "LED6",
120  .pin = LED6_PIN,
121  .mode = LED6_MODE,
122  .flags = SAUL_GPIO_INVERTED,
123  },
124  {
125  .name = "LED7",
126  .pin = LED7_PIN,
127  .mode = LED7_MODE,
128  .flags = SAUL_GPIO_INVERTED,
129  },
130 };
131 
132 #ifdef __cplusplus
133 }
134 #endif
135 
136 #endif /* GPIO_PARAMS_H */
#define BTN1_MODE
Button B mode.
Definition: board.h:48
#define BTN1_PIN
Button B pin.
Definition: board.h:47
#define LED1_PIN
TX LED yellow.
Definition: board.h:35
#define LED2_PIN
RX LED yellow.
Definition: board.h:36
#define BTN2_PIN
Button 2 pin
Definition: board.h:61
#define BTN2_MODE
Button 2 mode
Definition: board.h:62
static const saul_gpio_params_t saul_gpio_params[]
GPIO configuration.
Definition: gpio_params.h:32
Parameter definitions for mapping peripherals directly to SAUL.
@ SAUL_GPIO_INVERTED
pin is used as inverted
Definition: periph.h:43
Direct mapped GPIO configuration values.
Definition: periph.h:51
const char * name
name of the device connected to this pin
Definition: periph.h:52
Board specific definitions for the Zigduino board.