Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

treewide: move closing part of header guard to end of file #20905

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion boards/acd52832/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/acd52832/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
2 changes: 1 addition & 1 deletion boards/acd52832/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,5 @@ static const i2c_conf_t i2c_config[] = {
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/adafruit-clue/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@
#define ILI9341_PARAM_RGB (1) /**< RGB configuration */
#define ILI9341_PARAM_INVERTED (1) /**< Inversion configuration */
#define ILI9341_PARAM_ROTATION (ILI9341_ROTATION_VERT) /**< Rotation mode */
#define ILI9341_PARAM_OFFSET_X (80) /**< Vertical rotation requires a 80 pixel offset */

Check warning on line 111 in boards/adafruit-clue/include/board.h

View workflow job for this annotation

GitHub Actions / static-tests

line is longer than 100 characters
/** @} */

#ifdef __cplusplus
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/adafruit-clue/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
2 changes: 1 addition & 1 deletion boards/adafruit-clue/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,5 @@ static const spi_conf_t spi_config[] = {
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,5 @@ extern "C" {
}
#endif

#endif /* ARDUINO_IOMAP_H */
/** @} */
#endif /* ARDUINO_IOMAP_H */
2 changes: 1 addition & 1 deletion boards/adafruit-grand-central-m4-express/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
Original file line number Diff line number Diff line change
Expand Up @@ -338,5 +338,5 @@ static const uart_conf_t uart_config[] = {
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/adafruit-itsybitsy-m4/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/adafruit-itsybitsy-m4/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here specifically the @{ and the @} would now be unbalanced, as one of them is within and the other outside of the part covered by the include guard. I'm nit sure if I am just pedantic, or if this really could cause issues.

I think we wouod be better off with #pragma once.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, as mentioned in the initial message, that's the case everywhere.

I think we wouod be better off with #pragma once.

I tend to agree. Let's maybe discuss #pragma once and the required coding convention changes next friday (I've already added it to the agenda).

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I second this. This unbalance was the first thing to come to my mind, upon opening this PR.

Also, I would be in support of a move to #pragma once. I moved to it years ago. It is just one less thing to think about with each new header. Reduction of cognitive load is always nice. And no worries of the include guard name colliding if you have headers of the same name in different locations, or when files get renamed, on top of all the other benefits.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We discussed the question of C language extensions in RIOT during the weekly today, and postponed it to the VMA: https://forum.riot-os.org/t/weekly-coordination-call-friday-at-10am-cet/3068/363

2 changes: 1 addition & 1 deletion boards/adafruit-itsybitsy-m4/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,5 +268,5 @@ static const adc_conf_chan_t adc_channels[] = {
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/adafruit-itsybitsy-nrf52/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/adafruit-itsybitsy-nrf52/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
2 changes: 1 addition & 1 deletion boards/adafruit-itsybitsy-nrf52/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ static const i2c_conf_t i2c_config[] = {
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/adafruit-pybadge/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
#define BACKLIGHT_PIN GPIO_PIN(PA, 1) /**< Backlight pin */
#define BACKLIGHT_PORT PORT->Group[PA] /**< Backlight pin port */
#define BACKLIGHT_MASK (1 << 1) /**< Backlight pin mask */
#define BACKLIGHT_ON (BACKLIGHT_PORT.OUTSET.reg = BACKLIGHT_MASK) /**< Turn backlight on */

Check warning on line 61 in boards/adafruit-pybadge/include/board.h

View workflow job for this annotation

GitHub Actions / static-tests

line is longer than 100 characters
#define BACKLIGHT_OFF (BACKLIGHT_PORT.OUTCLR.reg = BACKLIGHT_MASK) /**< Turn backlight off */

Check warning on line 62 in boards/adafruit-pybadge/include/board.h

View workflow job for this annotation

GitHub Actions / static-tests

line is longer than 100 characters
/** @} */

/**
Expand All @@ -72,7 +72,7 @@
#define ST77XX_PARAM_DCX GPIO_PIN(PB, 5) /**< DCX pin */
#define ST77XX_PARAM_RST GPIO_PIN(PA, 0) /**< Reset pin */
#define ST77XX_PARAM_NUM_LINES (160U) /**< Number of screen lines */
#define ST77XX_PARAM_RGB_CHANNELS (128U) /**< Number of screen rgb channel (height) */

Check warning on line 75 in boards/adafruit-pybadge/include/board.h

View workflow job for this annotation

GitHub Actions / static-tests

line is longer than 100 characters
#define ST77XX_PARAM_RGB (1) /**< RGB configuration */
#define ST77XX_PARAM_INVERTED (0) /**< Inversion configuration */
#define ST77XX_PARAM_ROTATION ST77XX_ROTATION_90 /**< Rotation mode */
Expand All @@ -84,7 +84,7 @@
* @name Neopixel LEDs (not supported yet)
* @{
*/
#define WS281X_PARAM_PIN (GPIO_PIN(PA, 15)) /**< GPIO pin connected to the data pin of the first LED */

Check warning on line 87 in boards/adafruit-pybadge/include/board.h

View workflow job for this annotation

GitHub Actions / static-tests

line is longer than 100 characters
#define WS281X_PARAM_NUMOF (5U) /**< Number of LEDs chained */
/** @} */

Expand Down Expand Up @@ -115,5 +115,5 @@
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/adafruit-pybadge/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
2 changes: 1 addition & 1 deletion boards/adafruit-pybadge/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -300,5 +300,5 @@ static const adc_conf_chan_t adc_channels[] = {
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/airfy-beacon/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
extern "C" {}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/airfy-beacon/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,5 @@ static const adc_conf_t adc_config[] = {3, 4, 5, 6};
} /* end extern "C" */
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/alientek-pandora/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ extern "C" {

#include "stm32_leds.h"

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/alientek-pandora/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
2 changes: 1 addition & 1 deletion boards/alientek-pandora/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,5 @@ static const uart_conf_t uart_config[] = {
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/arduino-duemilanove/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-leonardo/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-mega2560/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#ifndef BOARD_H
#define BOARD_H


Check warning on line 22 in boards/arduino-mega2560/include/board.h

View workflow job for this annotation

GitHub Actions / static-tests

too many consecutive empty lines
#ifdef __cplusplus
extern "C" {
#endif
Expand All @@ -38,5 +38,5 @@
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-mkr1000/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-mkrfox1200/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-mkrwan1300/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-mkrwan1300/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
static const uart_conf_t uart_config[] = {
{
.dev = &SERCOM5->USART,
.rx_pin = GPIO_PIN(PB,23), /* ARDUINO_PIN_13, RX Pin */

Check warning on line 41 in boards/arduino-mkrwan1300/include/periph_conf.h

View workflow job for this annotation

GitHub Actions / static-tests

comma should be followed by whitespace
.tx_pin = GPIO_PIN(PB,22), /* ARDUINO_PIN_14, TX Pin */

Check warning on line 42 in boards/arduino-mkrwan1300/include/periph_conf.h

View workflow job for this annotation

GitHub Actions / static-tests

comma should be followed by whitespace
#ifdef MODULE_PERIPH_UART_HW_FC
.rts_pin = GPIO_UNDEF,
.cts_pin = GPIO_UNDEF,
Expand All @@ -52,8 +52,8 @@
},
{ /* LoRa module */
.dev = &SERCOM4->USART,
.rx_pin = GPIO_PIN(PA,15),

Check warning on line 55 in boards/arduino-mkrwan1300/include/periph_conf.h

View workflow job for this annotation

GitHub Actions / static-tests

comma should be followed by whitespace
.tx_pin = GPIO_PIN(PA,12),

Check warning on line 56 in boards/arduino-mkrwan1300/include/periph_conf.h

View workflow job for this annotation

GitHub Actions / static-tests

comma should be followed by whitespace
#ifdef MODULE_PERIPH_UART_HW_FC
.rts_pin = GPIO_UNDEF,
.cts_pin = GPIO_UNDEF,
Expand Down Expand Up @@ -99,5 +99,5 @@
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/arduino-mkrzero/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-nano-33-ble-sense/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-nano-33-ble-sense/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
2 changes: 1 addition & 1 deletion boards/arduino-nano-33-ble-sense/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,5 @@ extern "C"
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/arduino-nano-33-ble/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-nano-33-ble/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
2 changes: 1 addition & 1 deletion boards/arduino-nano-33-ble/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,5 @@ static const spi_conf_t spi_config[] = {
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/arduino-nano-33-iot/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-nano-33-iot/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
2 changes: 1 addition & 1 deletion boards/arduino-nano-33-iot/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -285,5 +285,5 @@ static const sam0_common_usb_config_t sam_usbdev_config[] = {
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/arduino-nano/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/arduino-uno/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/atmega1284p/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/atmega1284p/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ extern "C" {

#include "periph_conf_atmega_common.h"

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/atmega256rfr2-xpro/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/atmega256rfr2-xpro/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
2 changes: 1 addition & 1 deletion boards/atmega256rfr2-xpro/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ extern "C" {
}
#endif

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/atmega328p-xplained-mini/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/atmega328p-xplained-mini/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
2 changes: 1 addition & 1 deletion boards/atmega328p-xplained-mini/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ extern "C" {

#include "periph_conf_atmega_common.h"

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/atmega328p/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/atmega328p/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ extern "C" {

#include "periph_conf_atmega_common.h"

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/atmega8/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/atmega8/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ extern "C" {

#include "periph_conf_atmega_common.h"

#endif /* PERIPH_CONF_H */
/** @} */
#endif /* PERIPH_CONF_H */
2 changes: 1 addition & 1 deletion boards/atxmega-a1-xplained/include/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,5 +182,5 @@ extern "C" {
}
#endif

#endif /* BOARD_H */
/** @} */
#endif /* BOARD_H */
2 changes: 1 addition & 1 deletion boards/atxmega-a1-xplained/include/gpio_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,5 @@ static const saul_gpio_params_t saul_gpio_params[] =
}
#endif

#endif /* GPIO_PARAMS_H */
/** @} */
#endif /* GPIO_PARAMS_H */
Loading
Loading