diff --git a/boards/common/esp32/include/board_common.h b/boards/common/esp32/include/board_common.h index 029a352feb..9d1f155262 100644 --- a/boards/common/esp32/include/board_common.h +++ b/boards/common/esp32/include/board_common.h @@ -129,6 +129,15 @@ extern "C" { /** Pointer to the default MTD drive structure */ extern mtd_dev_t *mtd0; +/** + * @brief MTD offset for SD Card interfaces + * + * MTD_1 is used for SD Card. + */ +#ifndef CONFIG_SDCARD_GENERIC_MTD_OFFSET +#define CONFIG_SDCARD_GENERIC_MTD_OFFSET 1 +#endif + /** @} */ #endif /* MODULE_MTD || DOXYGEN */ diff --git a/boards/common/esp32c3/include/board_common.h b/boards/common/esp32c3/include/board_common.h index 3b01022bba..79a6565878 100644 --- a/boards/common/esp32c3/include/board_common.h +++ b/boards/common/esp32c3/include/board_common.h @@ -110,6 +110,15 @@ extern "C" { /** Pointer to the default MTD drive structure */ extern mtd_dev_t *mtd0; +/** + * @brief MTD offset for SD Card interfaces + * + * MTD_1 is used for SD Card. + */ +#ifndef CONFIG_SDCARD_GENERIC_MTD_OFFSET +#define CONFIG_SDCARD_GENERIC_MTD_OFFSET 1 +#endif + /** @} */ #endif /* MODULE_MTD || DOXYGEN */ diff --git a/boards/common/esp32s2/include/board_common.h b/boards/common/esp32s2/include/board_common.h index 936a3e512c..ba675d2ad8 100644 --- a/boards/common/esp32s2/include/board_common.h +++ b/boards/common/esp32s2/include/board_common.h @@ -110,6 +110,15 @@ extern "C" { /** Pointer to the default MTD drive structure */ extern mtd_dev_t *mtd0; +/** + * @brief MTD offset for SD Card interfaces + * + * MTD_1 is used for SD Card. + */ +#ifndef CONFIG_SDCARD_GENERIC_MTD_OFFSET +#define CONFIG_SDCARD_GENERIC_MTD_OFFSET 1 +#endif + /** @} */ #endif /* MODULE_MTD || DOXYGEN */ diff --git a/boards/common/esp32s3/include/board_common.h b/boards/common/esp32s3/include/board_common.h index 3e9411ab57..92ccbd1c43 100644 --- a/boards/common/esp32s3/include/board_common.h +++ b/boards/common/esp32s3/include/board_common.h @@ -110,6 +110,15 @@ extern "C" { /** Pointer to the default MTD drive structure */ extern mtd_dev_t *mtd0; +/** + * @brief MTD offset for SD Card interfaces + * + * MTD_1 is used for SD Card. + */ +#ifndef CONFIG_SDCARD_GENERIC_MTD_OFFSET +#define CONFIG_SDCARD_GENERIC_MTD_OFFSET 1 +#endif + /** @} */ #endif /* MODULE_MTD || DOXYGEN */ diff --git a/boards/common/esp8266/include/board_common.h b/boards/common/esp8266/include/board_common.h index f57bf4b1ba..84392a82f8 100644 --- a/boards/common/esp8266/include/board_common.h +++ b/boards/common/esp8266/include/board_common.h @@ -95,6 +95,15 @@ extern "C" { /** Pointer to the default MTD device structure */ extern mtd_dev_t *mtd0; +/** + * @brief MTD offset for SD Card interfaces + * + * MTD_1 is used for SD Card. + */ +#ifndef CONFIG_SDCARD_GENERIC_MTD_OFFSET +#define CONFIG_SDCARD_GENERIC_MTD_OFFSET 1 +#endif + /** @} */ #endif /* defined(MODULE_MTD) || defined(DOXYGEN) */ diff --git a/boards/esp32-wemos-lolin-d32-pro/Kconfig b/boards/esp32-wemos-lolin-d32-pro/Kconfig index d7d2e46437..cb3aca4f15 100644 --- a/boards/esp32-wemos-lolin-d32-pro/Kconfig +++ b/boards/esp32-wemos-lolin-d32-pro/Kconfig @@ -18,5 +18,9 @@ config BOARD_ESP32_WEMOS_LOLIN_D32_PRO select HAS_PERIPH_I2C select HAS_PERIPH_PWM select HAS_PERIPH_SPI + select HAS_SDCARD_SPI + + select HAVE_MTD_SDCARD_DEFAULT + select MODULE_FATFS_VFS if MODULE_VFS_DEFAULT source "$(RIOTBOARD)/common/esp32/Kconfig" diff --git a/boards/esp32-wemos-lolin-d32-pro/Makefile.dep b/boards/esp32-wemos-lolin-d32-pro/Makefile.dep index 29d6c99ba8..0dfe0effb0 100644 --- a/boards/esp32-wemos-lolin-d32-pro/Makefile.dep +++ b/boards/esp32-wemos-lolin-d32-pro/Makefile.dep @@ -1 +1,11 @@ +ifneq (,$(filter mtd,$(USEMODULE))) + USEMODULE += mtd_sdcard_default +endif + +# default to using fatfs on SD card +ifneq (,$(filter vfs_default,$(USEMODULE))) + USEMODULE += fatfs_vfs + USEMODULE += mtd +endif + include $(RIOTBOARD)/common/esp32/Makefile.dep diff --git a/boards/esp32-wemos-lolin-d32-pro/Makefile.features b/boards/esp32-wemos-lolin-d32-pro/Makefile.features index 34ad97fa54..650bddbd9a 100644 --- a/boards/esp32-wemos-lolin-d32-pro/Makefile.features +++ b/boards/esp32-wemos-lolin-d32-pro/Makefile.features @@ -9,5 +9,6 @@ FEATURES_PROVIDED += periph_dac FEATURES_PROVIDED += periph_i2c FEATURES_PROVIDED += periph_pwm FEATURES_PROVIDED += periph_spi +FEATURES_PROVIDED += sdcard_spi FEATURES_PROVIDED += arduino diff --git a/boards/esp32-wrover-kit/Kconfig b/boards/esp32-wrover-kit/Kconfig index 2fbb3a3163..de160dff49 100644 --- a/boards/esp32-wrover-kit/Kconfig +++ b/boards/esp32-wrover-kit/Kconfig @@ -22,5 +22,7 @@ config BOARD_ESP32_WROVER_KIT select HAS_SDCARD_SPI select HAVE_ILI9341 + select HAVE_MTD_SDCARD_DEFAULT + select MODULE_FATFS_VFS if MODULE_VFS_DEFAULT source "$(RIOTBOARD)/common/esp32/Kconfig" diff --git a/boards/esp32-wrover-kit/Makefile.dep b/boards/esp32-wrover-kit/Makefile.dep index c79cb6fdc2..11982c736c 100644 --- a/boards/esp32-wrover-kit/Makefile.dep +++ b/boards/esp32-wrover-kit/Makefile.dep @@ -5,4 +5,14 @@ endif # Sets up configuration for openocd USEMODULE += esp_jtag +ifneq (,$(filter mtd,$(USEMODULE))) + USEMODULE += mtd_sdcard_default +endif + +# default to using fatfs on SD card +ifneq (,$(filter vfs_default,$(USEMODULE))) + USEMODULE += fatfs_vfs + USEMODULE += mtd +endif + include $(RIOTBOARD)/common/esp32/Makefile.dep diff --git a/boards/seeedstudio-gd32/doc.txt b/boards/seeedstudio-gd32/doc.txt index 473987fcdf..d55b1dcc8a 100644 --- a/boards/seeedstudio-gd32/doc.txt +++ b/boards/seeedstudio-gd32/doc.txt @@ -38,7 +38,7 @@ on-board components: | RTC | 1 x 32-bit counter, 20-bit prescaler | yes | | WDT | 2 x 12-bit counter, 3-bit prescaler | yes | | ADC | 2 x 12-bit units, 16 channels @ 1 Msps | yes | -| DAC | 2 x 12-bit channel | no | +| DAC | 2 x 12-bit channel | yes | | UART | 2 | yes | | USART | 3 | yes | | SPI | 3 | yes | diff --git a/boards/sipeed-longan-nano/Kconfig b/boards/sipeed-longan-nano/Kconfig index c4bae61e5d..0dc33db387 100644 --- a/boards/sipeed-longan-nano/Kconfig +++ b/boards/sipeed-longan-nano/Kconfig @@ -15,6 +15,7 @@ config BOARD_SIPEED_LONGAN_NANO select BOARD_HAS_HXTAL select BOARD_HAS_LXTAL select HAS_PERIPH_ADC + select HAS_PERIPH_DAC select HAS_PERIPH_I2C select HAS_PERIPH_PWM select HAS_PERIPH_SPI diff --git a/boards/sipeed-longan-nano/Makefile.features b/boards/sipeed-longan-nano/Makefile.features index 0fc04f3271..739cdd9de0 100644 --- a/boards/sipeed-longan-nano/Makefile.features +++ b/boards/sipeed-longan-nano/Makefile.features @@ -2,6 +2,7 @@ CPU_MODEL = gd32vf103cbt6 # Put defined MCU peripherals here (in alphabetical order) FEATURES_PROVIDED += periph_adc +FEATURES_PROVIDED += periph_dac FEATURES_PROVIDED += periph_i2c FEATURES_PROVIDED += periph_pwm FEATURES_PROVIDED += periph_spi diff --git a/boards/sipeed-longan-nano/doc.txt b/boards/sipeed-longan-nano/doc.txt index 0614e4d65e..01d87b335e 100644 --- a/boards/sipeed-longan-nano/doc.txt +++ b/boards/sipeed-longan-nano/doc.txt @@ -32,7 +32,7 @@ on-board components: | RTC | 1 x 32-bit counter, 20-bit prescaler | yes | | WDT | 2 x 12-bit counter, 3-bit prescaler | yes | | ADC | 2 x 12-bit units, 16 channels @ 1 Msps | yes | -| DAC | 2 x 12-bit channel | no | +| DAC | 2 x 12-bit channel | yes | | UART | - | yes | | USART | 3 | yes | | SPI | 3 | yes | diff --git a/boards/sipeed-longan-nano/include/periph_conf.h b/boards/sipeed-longan-nano/include/periph_conf.h index 6ae57edeb8..d1fd7780fc 100644 --- a/boards/sipeed-longan-nano/include/periph_conf.h +++ b/boards/sipeed-longan-nano/include/periph_conf.h @@ -77,6 +77,20 @@ static const adc_conf_t adc_config[] = { #define ADC_NUMOF ARRAY_SIZE(adc_config) /** @} */ +/** + * @name DAC configuration + * @{ + */ +static const dac_conf_t dac_config[] = { +#if !CONFIG_SIPEED_LONGAN_NANO_WITH_TFT + { .pin = GPIO_PIN(PORT_A, 4), .chan = 0 }, + { .pin = GPIO_PIN(PORT_A, 5), .chan = 1 }, +}; +#endif /* !CONFIG_SIPEED_LONGAN_NANO_WITH_TFT */ + +#define DAC_NUMOF ARRAY_SIZE(dac_config) +/** @} */ + /** * @name PWM configuration * @{ diff --git a/cpu/gd32v/include/periph_cpu.h b/cpu/gd32v/include/periph_cpu.h index fd353c8476..1c582ac1ae 100644 --- a/cpu/gd32v/include/periph_cpu.h +++ b/cpu/gd32v/include/periph_cpu.h @@ -197,6 +197,19 @@ typedef struct { uint8_t chan; /**< CPU ADC channel connected to the pin */ } adc_conf_t; +/** + * @brief GD32V DAC has 2 channels + */ +#define DAC_CHANNEL_NUMOF (2) + +/** + * @brief DAC line configuration data + */ +typedef struct { + gpio_t pin; /**< pin connected to the line */ + uint8_t chan; /**< DAC device used for this line */ +} dac_conf_t; + /** * @brief GD32V timers have 4 capture-compare channels */ diff --git a/cpu/gd32v/periph/dac.c b/cpu/gd32v/periph/dac.c new file mode 100644 index 0000000000..fa73ccdf05 --- /dev/null +++ b/cpu/gd32v/periph/dac.c @@ -0,0 +1,78 @@ +/* + * Copyright (C) 2023 Gunar Schorcht + * + * This file is subject to the terms and conditions of the GNU Lesser + * General Public License v2.1. See the file LICENSE in the top level + * directory for more details. + */ + +/** + * @ingroup cpu_gd32v + * @ingroup drivers_periph_dac + * @{ + * + * @file + * @brief Low-level DAC driver implementation for GD32VF103 + * + * @author Gunar Schorcht + * + * @} + */ + +#include "assert.h" +#include "cpu.h" +#include "periph/dac.h" + +#define DAC_CTL_DENX_MASK (DAC_CTL_DEN0_Msk | DAC_CTL_DEN1_Msk) + +int8_t dac_init(dac_t line) +{ + assert(line < DAC_NUMOF); + + gpio_init_analog(dac_config[line].pin); + + dac_poweron(line); + dac_set(line, 0); + + return DAC_OK; +} + +void dac_set(dac_t line, uint16_t value) +{ + assert(line < DAC_NUMOF); + assert(dac_config[line].chan < DAC_CHANNEL_NUMOF); + + /* set the upper 12 bit of the left aligned DAC data holding register */ + if (dac_config[line].chan) { + DAC->DAC1_L12DH = value & 0xfff0; + } + else { + DAC->DAC0_L12DH = value & 0xfff0; + } +} + +void dac_poweron(dac_t line) +{ + assert(line < DAC_NUMOF); + assert(dac_config[line].chan < DAC_CHANNEL_NUMOF); + + /* enable the DAC clock */ + periph_clk_en(APB1, RCU_APB1EN_DACEN_Msk); + + /* enable the DAC channel */ + DAC->CTL |= (dac_config[line].chan) ? DAC_CTL_DEN1_Msk : DAC_CTL_DEN0_Msk; +} + +void dac_poweroff(dac_t line) +{ + assert(line < DAC_NUMOF); + assert(dac_config[line].chan < DAC_CHANNEL_NUMOF); + + /* disable the DAC channel */ + DAC->CTL &= ~((dac_config[line].chan) ? DAC_CTL_DEN1_Msk : DAC_CTL_DEN0_Msk); + + if ((DAC->CTL & DAC_CTL_DENX_MASK) == 0) { + /* disable the DAC clock only if both channels are disabled */ + periph_clk_dis(APB1, RCU_APB1EN_DACEN_Msk); + } +} diff --git a/dist/tools/doccheck/check.sh b/dist/tools/doccheck/check.sh index a2c9a95056..179983907d 100755 --- a/dist/tools/doccheck/check.sh +++ b/dist/tools/doccheck/check.sh @@ -12,6 +12,7 @@ # shellcheck disable=SC2164 SCRIPTDIR="$(cd "$(dirname "$0")"; pwd)" RIOTBASE="$(cd "${SCRIPTDIR}"/../../..; pwd)" +EXCLUDE_SIMPLE_FILE="${SCRIPTDIR}/exclude_simple" EXCLUDE_PATTERN_FILE="${SCRIPTDIR}/exclude_patterns" GENERIC_EXCLUDE_PATTERN_FILE="${SCRIPTDIR}/generic_exclude_patterns" @@ -32,8 +33,8 @@ else CWARN= CRESET= fi - -DOXY_OUTPUT=$(make -C "${RIOTBASE}" doc 2>&1 | grep -Evf "${EXCLUDE_PATTERN_FILE}" -f"${GENERIC_EXCLUDE_PATTERN_FILE}") +DOXY_OUTPUT=$(make -C "${RIOTBASE}" doc 2>&1| grep -Fvf "${EXCLUDE_SIMPLE_FILE}" ) +DOXY_OUTPUT=$(echo "${DOXY_OUTPUT}" | grep -Evf "${EXCLUDE_PATTERN_FILE}" | grep -Evf "${GENERIC_EXCLUDE_PATTERN_FILE}") DOXY_ERRCODE=$? RESULT=0 diff --git a/dist/tools/doccheck/exclude_patterns b/dist/tools/doccheck/exclude_patterns index 4734f0f146..025933ded1 100644 --- a/dist/tools/doccheck/exclude_patterns +++ b/dist/tools/doccheck/exclude_patterns @@ -1,12517 +1,3 @@ -boards/acd52832/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/acd52832/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/acd52832/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/acd52832/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/acd52832/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/acd52832/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/acd52832/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/acd52832/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/acd52832/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/board\.h:[0-9]+: warning: Member APA102_PARAM_CLK_PIN \(macro definition\) of file board\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/board\.h:[0-9]+: warning: Member APA102_PARAM_DATA_PIN \(macro definition\) of file board\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/board\.h:[0-9]+: warning: Member APA102_PARAM_LED_NUMOF \(macro definition\) of file board\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/board\.h:[0-9]+: warning: Member MTD_0 \(macro definition\) of file board\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/board\.h:[0-9]+: warning: Member mtd0 \(variable\) of file board\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member DAC_CLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member DAC_VREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member EXTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-m4/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-nrf52/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-nrf52/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-nrf52/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-nrf52/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-nrf52/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-nrf52/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-itsybitsy-nrf52/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/airfy-beacon/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/airfy-beacon/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/airfy-beacon/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/airfy-beacon/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/airfy-beacon/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/airfy-beacon/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/airfy-beacon/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/airfy-beacon/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/airfy-beacon/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-mkr1000/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_CHIP_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkr1000/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_IRQ_PIN \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkr1000/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_RESET_PIN \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkr1000/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkr1000/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_SSN_PIN \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkr1000/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_WAKE_PIN \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkr1000/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrfox1200/include/board\.h:[0-9]+: warning: Member ATA8520E_PARAM_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrfox1200/include/board\.h:[0-9]+: warning: Member ATA8520E_PARAM_INT_PIN \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrfox1200/include/board\.h:[0-9]+: warning: Member ATA8520E_PARAM_POWER_PIN \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrfox1200/include/board\.h:[0-9]+: warning: Member ATA8520E_PARAM_RESET_PIN \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrfox1200/include/board\.h:[0-9]+: warning: Member ATA8520E_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrfox1200/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrwan1300/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrwan1300/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-mkrwan1300/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-mkrwan1300/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-mkrwan1300/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-mkrwan1300/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-mkrwan1300/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-mkrzero/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrzero/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CLK \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrzero/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrzero/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MISO \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrzero/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MOSI \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrzero/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_POWER \(macro definition\) of file board\.h is not documented\. -boards/arduino-mkrzero/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/arduino-nano-33-ble/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-ble/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-ble/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-ble/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-ble/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-ble/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-ble/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member PWM_1_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan1_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-nano-33-iot/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atmega1284p/include/board\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of file board\.h is not documented\. -boards/atmega1284p/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/atmega256rfr2-xpro/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SET \(macro definition\) of file board\.h is not documented\. -boards/atmega256rfr2-xpro/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SLEEP \(macro definition\) of file board\.h is not documented\. -boards/atmega328p/include/board\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of file board\.h is not documented\. -boards/atmega328p/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/atmega328p-xplained-mini/include/board\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of file board\.h is not documented\. -boards/atmega328p-xplained-mini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/atxmega-a1-xplained/include/board\.h:[0-9]+: warning: Member LED_PORT_MASK \(macro definition\) of file board\.h is not documented\. -boards/atxmega-a1-xplained/include/board\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of file board\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRA \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRB \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRC \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRD \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_0_DRE_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_0_RXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_0_TXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_1_DRE_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_1_RXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_1_TXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_2_DRE_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_2_RXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_2_TXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member ebi_config \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a1-xplained/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/atxmega-a1u-xpro/include/board\.h:[0-9]+: warning: Member LED_PORT_MASK \(macro definition\) of file board\.h is not documented\. -boards/atxmega-a1u-xpro/include/board\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of file board\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRA \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRB \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRC \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRD \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_DRE_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_RXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_TXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member ebi_config \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a1u-xpro/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/atxmega-a3bu-xplained/include/board\.h:[0-9]+: warning: Member LED_PORT_MASK \(macro definition\) of file board\.h is not documented\. -boards/atxmega-a3bu-xplained/include/board\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of file board\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRA \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRB \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRC \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISRD \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_0_DRE_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_0_RXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_0_TXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_1_DRE_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_1_RXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_1_TXC_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/atxmega-a3bu-xplained/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/avr-rss2/include/board\.h:[0-9]+: warning: Member AT24MAC_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/avr-rss2/include/board\.h:[0-9]+: warning: Member AT24MAC_PARAM_TYPE \(macro definition\) of file board\.h is not documented\. -boards/avr-rss2/include/board\.h:[0-9]+: warning: Member BOOTLOADER_CLEARS_WATCHDOG_AND_PASSES_MCUSR \(macro definition\) of file board\.h is not documented\. -boards/avr-rss2/include/board\.h:[0-9]+: warning: Member CPU_ATMEGA_CLK_SCALE_INIT \(macro definition\) of file board\.h is not documented\. -boards/avr-rss2/include/board\.h:[0-9]+: warning: Member DS18_PARAM_PIN \(macro definition\) of file board\.h is not documented\. -boards/avr-rss2/include/board\.h:[0-9]+: warning: Member DS18_PARAM_PULL \(macro definition\) of file board\.h is not documented\. -boards/avr-rss2/include/board\.h:[0-9]+: warning: Member LED_PANIC \(macro definition\) of file board\.h is not documented\. -boards/avr-rss2/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/avr-rss2/include/board\.h:[0-9]+: warning: Member LED_PORT_DDR \(macro definition\) of file board\.h is not documented\. -boards/avr-rss2/include/board\.h:[0-9]+: warning: Member MODULE_ATMEGA_PCINT0 \(macro definition\) of file board\.h is not documented\. -boards/avr-rss2/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_FUNC \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/avr-rss2/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_INDEX \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/avr-rss2/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_TYPE \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/avr-rss2/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/avsextrem/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/avsextrem/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/avsextrem/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/avsextrem/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/avsextrem/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/avsextrem/include/periph_conf\.h:[0-9]+: warning: Member XTAL_HZ \(macro definition\) of file periph_conf\.h is not documented\. -boards/avsextrem/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/avsextrem/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/board\.h:[0-9]+: warning: Member RADIO_TCXO_VCC_PIN \(macro definition\) of file board\.h is not documented\. -boards/b-l072z-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of file board\.h is not documented\. -boards/b-l072z-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of file board\.h is not documented\. -boards/b-l072z-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of file board\.h is not documented\. -boards/b-l072z-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of file board\.h is not documented\. -boards/b-l072z-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/b-l072z-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/b-l072z-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of file board\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member DMA_SHARED_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member DMA_SHARED_ISR_0_STREAMS \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member DMA_SHARED_ISR_1 \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member DMA_SHARED_ISR_1_STREAMS \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-l072z-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/board\.h:[0-9]+: warning: Member HTS221_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/b-l475e-iot01a/include/board\.h:[0-9]+: warning: Member LIS3MDL_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/b-l475e-iot01a/include/board\.h:[0-9]+: warning: Member LPSXXX_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/b-l475e-iot01a/include/board\.h:[0-9]+: warning: Member LSM6DSL_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/b-l475e-iot01a/include/board\.h:[0-9]+: warning: Member LSM6DSL_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member DMA_4_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member DMA_5_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member DMA_6_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-l475e-iot01a/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_PASELECT \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member TCXO_PWR_PIN \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member TX_OUTPUT_SEL_PIN \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/board\.h:[0-9]+: warning: Member TX_SWITCH_PWR_PIN \(macro definition\) of group boards_bastwan is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member EXTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member INTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bastwan/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/bluepill-stm32f030c8/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_COL1 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_COL2 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_COL3 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_COL4 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_COL5 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_COL6 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_COL7 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_COL8 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_COL9 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_ROW1 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_ROW2 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/board\.h:[0-9]+: warning: Member MINI_LED_ROW3 \(macro definition\) of file board\.h is not documented\. -boards/calliope-mini/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/calliope-mini/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/calliope-mini/include/periph_conf\.h:[0-9]+: warning: Member PWM_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/calliope-mini/include/periph_conf\.h:[0-9]+: warning: Member PWM_TIMER \(macro definition\) of file periph_conf\.h is not documented\. -boards/calliope-mini/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/calliope-mini/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/calliope-mini/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/calliope-mini/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc1312-launchpad/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1312-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1312-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_SCL_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1312-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_SDA_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1312-launchpad/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1312-launchpad/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1312-launchpad/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc1312-launchpad/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc1350-launchpad/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1350-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1350-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_SCL_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1350-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_SDA_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1350-launchpad/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1350-launchpad/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1350-launchpad/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc1350-launchpad/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc1352-launchpad/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_SCL_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_SDA_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352-launchpad/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352-launchpad/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352-launchpad/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc1352-launchpad/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc1352p-launchpad/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352p-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352p-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_SCL_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352p-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_SDA_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352p-launchpad/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352p-launchpad/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc1352p-launchpad/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc1352p-launchpad/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/board\.h:[0-9]+: warning: Member CCA_BACKDOOR_ENABLE \(macro definition\) of file board\.h is not documented\. -boards/cc2538dk/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/cc2538dk/include/board\.h:[0-9]+: warning: Member UPDATE_CCA \(macro definition\) of file board\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member I2C_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member SOC_ADC_ADCCON3_EREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc2538dk/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc2650-launchpad/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_SCL_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650-launchpad/include/periph_conf\.h:[0-9]+: warning: Member I2C_SDA_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650-launchpad/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650-launchpad/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650-launchpad/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc2650-launchpad/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc2650stk/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650stk/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650stk/include/periph_conf\.h:[0-9]+: warning: Member I2C_SCL_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650stk/include/periph_conf\.h:[0-9]+: warning: Member I2C_SDA_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650stk/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650stk/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/cc2650stk/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/cc2650stk/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-atmega/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-atmega/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-atmega/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-atmega/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-atmega/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-atmega/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-atmega/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-atmega/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_DAC0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_DAC1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_14 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_15 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_16 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_17 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_18 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_19 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_20 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_21 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_22 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_23 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_24 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_25 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_26 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_27 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_28 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_29 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_30 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_31 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_32 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_33 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_34 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_35 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_36 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_37 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_38 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_39 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_40 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_41 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_42 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_43 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_44 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_45 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_46 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_47 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_48 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_49 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_50 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_51 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_52 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_53 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_54 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_55 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_56 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_57 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_58 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_59 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_60 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_61 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_62 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_63 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_64 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_65 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_66 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_67 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_68 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_69 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_70 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_71 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_72 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_73 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_74 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_75 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_76 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_77 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_78 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-due/include/board\.h:[0-9]+: warning: Member W5100_PARAM_CS \(macro definition\) of group boards_common_arduino_due is not documented\. -boards/common/arduino-due/include/board\.h:[0-9]+: warning: Member W5100_PARAM_EVT \(macro definition\) of group boards_common_arduino_due is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_EXT_OSC \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_FWS \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_SCLK_XTAL \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member PWM_CHAN_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member UART_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-due/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CLK \(macro definition\) of file sdcard_spi_params\.h is not documented\. -boards/common/arduino-due/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CS \(macro definition\) of file sdcard_spi_params\.h is not documented\. -boards/common/arduino-due/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MISO \(macro definition\) of file sdcard_spi_params\.h is not documented\. -boards/common/arduino-due/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MOSI \(macro definition\) of file sdcard_spi_params\.h is not documented\. -boards/common/arduino-due/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_POWER \(macro definition\) of file sdcard_spi_params\.h is not documented\. -boards/common/arduino-due/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_SPI \(macro definition\) of file sdcard_spi_params\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_14 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-mkr/include/periph_conf_common\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/arduino-zero/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of group boards_common_arduino_zero is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member PWM_1_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member RTT_MIN_OFFSET \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan1_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-zero/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/atmega/include/periph_conf_atmega_common\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf_atmega_common\.h is not documented\. -boards/common/atxmega/include/periph_conf_common\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member DMA_4_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member QDEC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member TIMER_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member qdec_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/blxxxpill/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/cc2538/include/cfg_clk_default\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file cfg_clk_default\.h is not documented\. -boards/common/cc2538/include/cfg_clk_default\.h:[0-9]+: warning: Member CLOCK_IO \(macro definition\) of file cfg_clk_default\.h is not documented\. -boards/common/cc2538/include/cfg_clk_default\.h:[0-9]+: warning: Member CLOCK_OSC \(macro definition\) of file cfg_clk_default\.h is not documented\. -boards/common/cc2538/include/cfg_clk_default\.h:[0-9]+: warning: Member CLOCK_OSC32K \(macro definition\) of file cfg_clk_default\.h is not documented\. -boards/common/cc2538/include/cfg_clk_default\.h:[0-9]+: warning: Member SYS_CTRL_OSC32K_USE_XTAL \(macro definition\) of file cfg_clk_default\.h is not documented\. -boards/common/cc2538/include/cfg_clk_default\.h:[0-9]+: warning: Member SYS_CTRL_OSC_USE_XTAL \(macro definition\) of file cfg_clk_default\.h is not documented\. -boards/common/cc2538/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_IRQ_PRIO \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/cc2538/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/cc2538/include/cfg_timer_default\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file cfg_timer_default\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/board\.h:[0-9]+: warning: Member LED_MASK \(macro definition\) of file board\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HFCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/e104-bt50xxa-tb/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/esp32/include/board_common\.h:[0-9]+: warning: Member ESP32_XTAL_FREQ \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp32/include/board_common\.h:[0-9]+: warning: Member SPIFFS_ALIGNED_OBJECT_INDEX_TABLES \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp32/include/board_common\.h:[0-9]+: warning: Member SPIFFS_CACHE \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp32/include/board_common\.h:[0-9]+: warning: Member SPIFFS_HAL_CALLBACK_EXTRA \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp32/include/board_common\.h:[0-9]+: warning: Member SPIFFS_READ_ONLY \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp32/include/board_common\.h:[0-9]+: warning: Member SPIFFS_SINGLETON \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp8266/include/board_common\.h:[0-9]+: warning: Member SPIFFS_ALIGNED_OBJECT_INDEX_TABLES \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp8266/include/board_common\.h:[0-9]+: warning: Member SPIFFS_CACHE \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp8266/include/board_common\.h:[0-9]+: warning: Member SPIFFS_HAL_CALLBACK_EXTRA \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp8266/include/board_common\.h:[0-9]+: warning: Member SPIFFS_READ_ONLY \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp8266/include/board_common\.h:[0-9]+: warning: Member SPIFFS_SINGLETON \(macro definition\) of file board_common\.h is not documented\. -boards/common/esp8266/include/periph_conf_common\.h:[0-9]+: warning: Member BIT\(X\) \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_DEV \(macro definition\) of group boards_common_iotlab is not documented\. -boards/common/iotlab/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_MIN \(macro definition\) of group boards_common_iotlab is not documented\. -boards/common/iotlab/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_TYPE \(macro definition\) of group boards_common_iotlab is not documented\. -boards/common/iotlab/include/board_common\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of group boards_common_iotlab is not documented\. -boards/common/iotlab/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_delayTx \(macro definition\) of file openwsn_defs\.h is not documented\. -boards/common/iotlab/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxRxAckPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -boards/common/iotlab/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxRxDataPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -boards/common/iotlab/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxTxAckPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -boards/common/iotlab/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxTxDataPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/iotlab/include/periph_conf_common\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/cfg_i2c_default\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file cfg_i2c_default\.h is not documented\. -boards/common/kw41z/include/cfg_i2c_default\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file cfg_i2c_default\.h is not documented\. -boards/common/kw41z/include/cfg_i2c_default\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file cfg_i2c_default\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member CLOCK_BUSCLOCK \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member CLOCK_MCGIRCLK \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member CLOCK_RADIOXTAL \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member KINETIS_TRNG \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member LPTMR_CONFIG \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member LPTMR_ISR_0 \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member LPTMR_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member LPUART_0_ISR \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member LPUART_0_SRC \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member PIT_BASECLOCK \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member PIT_CONFIG \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member PIT_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member clock_config \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member spi_clk_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/kw41z/include/periph_conf_common\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/msb-430/include/board_common\.h:[0-9]+: warning: Member LED_OUT_REG \(macro definition\) of group boards_common_msb-430 is not documented\. -boards/common/nrf51/include/cfg_clock_16_0\.h:[0-9]+: warning: Member CLOCK_HFCLK \(macro definition\) of file cfg_clock_16_0\.h is not documented\. -boards/common/nrf51/include/cfg_clock_16_0\.h:[0-9]+: warning: Member CLOCK_LFCLK \(macro definition\) of file cfg_clock_16_0\.h is not documented\. -boards/common/nrf51/include/cfg_clock_16_1\.h:[0-9]+: warning: Member CLOCK_HFCLK \(macro definition\) of file cfg_clock_16_1\.h is not documented\. -boards/common/nrf51/include/cfg_clock_16_1\.h:[0-9]+: warning: Member CLOCK_LFCLK \(macro definition\) of file cfg_clock_16_1\.h is not documented\. -boards/common/nrf51/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf51/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_DEV \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf51/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf51/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf51/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf51/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf51/include/cfg_timer_012\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file cfg_timer_012\.h is not documented\. -boards/common/nrf51/include/cfg_timer_012\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file cfg_timer_012\.h is not documented\. -boards/common/nrf51/include/cfg_timer_012\.h:[0-9]+: warning: Member TIMER_2_ISR \(macro definition\) of file cfg_timer_012\.h is not documented\. -boards/common/nrf51/include/cfg_timer_012\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file cfg_timer_012\.h is not documented\. -boards/common/nrf51/include/cfg_timer_012\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file cfg_timer_012\.h is not documented\. -boards/common/nrf51/include/cfg_timer_01\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file cfg_timer_01\.h is not documented\. -boards/common/nrf51/include/cfg_timer_01\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file cfg_timer_01\.h is not documented\. -boards/common/nrf51/include/cfg_timer_01\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file cfg_timer_01\.h is not documented\. -boards/common/nrf51/include/cfg_timer_01\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file cfg_timer_01\.h is not documented\. -boards/common/nrf52/include/cfg_clock_32_0\.h:[0-9]+: warning: Member CLOCK_HFCLK \(macro definition\) of file cfg_clock_32_0\.h is not documented\. -boards/common/nrf52/include/cfg_clock_32_0\.h:[0-9]+: warning: Member CLOCK_LFCLK \(macro definition\) of file cfg_clock_32_0\.h is not documented\. -boards/common/nrf52/include/cfg_clock_32_1\.h:[0-9]+: warning: Member CLOCK_HFCLK \(macro definition\) of file cfg_clock_32_1\.h is not documented\. -boards/common/nrf52/include/cfg_clock_32_1\.h:[0-9]+: warning: Member CLOCK_LFCLK \(macro definition\) of file cfg_clock_32_1\.h is not documented\. -boards/common/nrf52/include/cfg_i2c_default\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file cfg_i2c_default\.h is not documented\. -boards/common/nrf52/include/cfg_i2c_default\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file cfg_i2c_default\.h is not documented\. -boards/common/nrf52/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf52/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_DEV \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf52/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf52/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf52/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf52/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/nrf52/include/cfg_spi_default\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file cfg_spi_default\.h is not documented\. -boards/common/nrf52/include/cfg_spi_default\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file cfg_spi_default\.h is not documented\. -boards/common/nrf52/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/nrf52/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/nrf52/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_2_ISR \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/nrf52/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_3_ISR \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/nrf52/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/nrf52/include/cfg_timer_default\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file cfg_timer_default\.h is not documented\. -boards/common/nrf52xxxdk/include/periph_conf_common\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of group boards_common_nrf52xxxdk is not documented\. -boards/common/nrf52xxxdk/include/periph_conf_common\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of group boards_common_nrf52xxxdk is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_14 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_15 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo144/include/board\.h:[0-9]+: warning: Member PERIPH_INIT_LED0 \(macro definition\) of group boards_common_nucleo144 is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo32/include/gpio_params\.h:[0-9]+: warning: Member SAUL_GPIO_NUMOF \(macro definition\) of file gpio_params\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_14 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_15 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/nucleo64/include/board\.h:[0-9]+: warning: Member MOTOR_DRIVER_NUMOF \(macro definition\) of group boards_common_nucleo64 is not documented\. -boards/common/nucleo64/include/board\.h:[0-9]+: warning: Member motor_driver_config\[\] \(variable\) of group boards_common_nucleo64 is not documented\. -boards/common/nucleo64/include/board\.h:[0-9]+: warning: Member MRF24J40_PARAMS \(macro definition\) of group boards_common_nucleo64 is not documented\. -boards/common/nucleo64/include/board\.h:[0-9]+: warning: Member MRF24J40_PARAM_CS \(macro definition\) of group boards_common_nucleo64 is not documented\. -boards/common/nucleo64/include/board\.h:[0-9]+: warning: Member MRF24J40_PARAM_INT \(macro definition\) of group boards_common_nucleo64 is not documented\. -boards/common/nucleo64/include/board\.h:[0-9]+: warning: Member MRF24J40_PARAM_RESET \(macro definition\) of group boards_common_nucleo64 is not documented\. -boards/common/nucleo64/include/board\.h:[0-9]+: warning: Member MRF24J40_PARAM_SPI \(macro definition\) of group boards_common_nucleo64 is not documented\. -boards/common/nucleo64/include/board\.h:[0-9]+: warning: Member MRF24J40_PARAM_SPI_CLK \(macro definition\) of group boards_common_nucleo64 is not documented\. -boards/common/particle-mesh/include/board\.h:[0-9]+: warning: Member LED_MASK \(macro definition\) of file board\.h is not documented\. -boards/common/particle-mesh/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/common/particle-mesh/include/periph_conf_common\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/particle-mesh/include/periph_conf_common\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf_common\.h is not documented\. -boards/common/particle-mesh/include/periph_conf_common\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/particle-mesh/include/periph_conf_common\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf_common\.h is not documented\. -boards/common/particle-mesh/include/pwm_params\.h:[0-9]+: warning: Member SAUL_PWM_NO_DIMMER \(macro definition\) of file pwm_params\.h is not documented\. -boards/common/particle-mesh/include/pwm_params\.h:[0-9]+: warning: Member saul_pwm_rgb_params\[\] \(variable\) of file pwm_params\.h is not documented\. -boards/common/remote/include/board_common\.h:[0-9]+: warning: Member CCA_BACKDOOR_ENABLE \(macro definition\) of group boards_common_remote is not documented\. -boards/common/remote/include/board_common\.h:[0-9]+: warning: Member LED_ALL_OFF \(macro definition\) of group boards_common_remote is not documented\. -boards/common/remote/include/board_common\.h:[0-9]+: warning: Member LED_ALL_ON \(macro definition\) of group boards_common_remote is not documented\. -boards/common/remote/include/board_common\.h:[0-9]+: warning: Member UPDATE_CCA \(macro definition\) of group boards_common_remote is not documented\. -boards/common/remote/include/cfg_adc_default\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file cfg_adc_default\.h is not documented\. -boards/common/remote/include/cfg_adc_default\.h:[0-9]+: warning: Member SOC_ADC_ADCCON3_EREF \(macro definition\) of file cfg_adc_default\.h is not documented\. -boards/common/remote/include/cfg_adc_default\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file cfg_adc_default\.h is not documented\. -boards/common/remote/include/cfg_i2c_default\.h:[0-9]+: warning: Member I2C_IRQ_PRIO \(macro definition\) of file cfg_i2c_default\.h is not documented\. -boards/common/remote/include/cfg_i2c_default\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file cfg_i2c_default\.h is not documented\. -boards/common/remote/include/cfg_i2c_default\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file cfg_i2c_default\.h is not documented\. -boards/common/remote/include/cfg_spi_default\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file cfg_spi_default\.h is not documented\. -boards/common/remote/include/cfg_spi_default\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file cfg_spi_default\.h is not documented\. -boards/common/remote/include/cfg_uart_default\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file cfg_uart_default\.h is not documented\. -boards/common/remote/include/cfg_uart_default\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file cfg_uart_default\.h is not documented\. -boards/common/remote/include/cfg_uart_default\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file cfg_uart_default\.h is not documented\. -boards/common/remote/include/cfg_uart_default\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file cfg_uart_default\.h is not documented\. -boards/common/remote/include/fancy_leds\.h:[0-9]+: warning: Member LED_FADE\(led\) \(macro definition\) of file fancy_leds\.h is not documented\. -boards/common/remote/include/fancy_leds\.h:[0-9]+: warning: Member LED_FADE_EXPAND\(led\) \(macro definition\) of file fancy_leds\.h is not documented\. -boards/common/remote/include/fancy_leds\.h:[0-9]+: warning: Member LED_RAINBOW\(\) \(macro definition\) of file fancy_leds\.h is not documented\. -boards/common/saml1x/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of group boards_common_saml1x is not documented\. -boards/common/saml1x/include/board\.h:[0-9]+: warning: Member _PORT \(macro definition\) of group boards_common_saml1x is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member DAC_CLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member DAC_VREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member EXTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member PWM_1_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/saml1x/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/silabs/drivers/include/aem\.h:[0-9]+: warning: Member AEM_ITM_LAR \(macro definition\) of group boards_common_silabs_drivers_aem is not documented\. -boards/common/silabs/drivers/include/aem\.h:[0-9]+: warning: Member AEM_ITM_TCR \(macro definition\) of group boards_common_silabs_drivers_aem is not documented\. -boards/common/silabs/drivers/include/aem\.h:[0-9]+: warning: Member AEM_TPI_ACPR \(macro definition\) of group boards_common_silabs_drivers_aem is not documented\. -boards/common/silabs/drivers/include/aem\.h:[0-9]+: warning: Member AEM_TPI_FFCR \(macro definition\) of group boards_common_silabs_drivers_aem is not documented\. -boards/common/silabs/drivers/include/aem\.h:[0-9]+: warning: Member AEM_TPI_SPPR \(macro definition\) of group boards_common_silabs_drivers_aem is not documented\. -boards/common/silabs/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/silabs/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/silabs/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member BC_PIN \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member DISP_COM_PIN \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member DISP_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member DISP_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member DISP_SPI \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member SI7021_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member SI7021_I2C \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/board\.h:[0-9]+: warning: Member SI70XX_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFE \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F0 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F1 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F10 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F11 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F12 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F13 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F14 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F15 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F16 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F17 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F18 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F19 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F2 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F20 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F21 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F3 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F4 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F5 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F6 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F7 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F8 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F9 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P0 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P1 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P10 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P11 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P12 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P13 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P14 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P15 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P16 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P17 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P18 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P19 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P2 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P20 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P21 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P22 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P23 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P24 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P25 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P26 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P27 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P28 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P29 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P3 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P30 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P31 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P32 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P33 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P34 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P35 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P36 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P37 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P38 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P39 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P4 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P40 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P41 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P42 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P43 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P44 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P45 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P5 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P6 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P7 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P8 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4150a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P9 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F0 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F1 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F10 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F11 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F12 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F13 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F14 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F15 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F16 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F17 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F18 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F19 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F2 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F20 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F21 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F3 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F4 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F5 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F6 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F7 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F8 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_F9 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P0 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P1 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P10 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P11 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P12 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P13 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P14 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P15 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P16 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P17 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P18 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P19 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P2 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P20 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P21 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P22 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P23 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P24 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P25 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P26 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P27 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P28 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P29 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P3 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P30 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P31 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P32 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P33 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P34 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P35 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P36 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P37 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P38 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P39 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P4 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P40 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P41 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P42 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P43 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P44 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P45 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P5 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P6 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P7 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P8 \(macro definition\) of file board_module\.h is not documented\. -boards/common/slwstk6000b/modules/slwrb4162a/include/board_module\.h:[0-9]+: warning: Member MODULE_PIN_P9 \(macro definition\) of file board_module\.h is not documented\. -boards/common/sodaq/include/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file cfg_clock_default\.h is not documented\. -boards/common/sodaq/include/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -boards/common/sodaq/include/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file cfg_clock_default\.h is not documented\. -boards/common/sodaq/include/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file cfg_clock_default\.h is not documented\. -boards/common/sodaq/include/cfg_rtc_default\.h:[0-9]+: warning: Member RTC_DEV \(macro definition\) of file cfg_rtc_default\.h is not documented\. -boards/common/sodaq/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/sodaq/include/cfg_spi_default\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file cfg_spi_default\.h is not documented\. -boards/common/sodaq/include/cfg_spi_default\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file cfg_spi_default\.h is not documented\. -boards/common/sodaq/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/sodaq/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/sodaq/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/sodaq/include/cfg_timer_default\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file cfg_timer_default\.h is not documented\. -boards/common/sodaq/include/cfg_timer_default\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file cfg_timer_default\.h is not documented\. -boards/common/sodaq/include/cfg_usbdev_default\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file cfg_usbdev_default\.h is not documented\. -boards/common/stm32/include/cfg_i2c1_pb6_pb7\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file cfg_i2c1_pb6_pb7\.h is not documented\. -boards/common/stm32/include/cfg_i2c1_pb6_pb7\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file cfg_i2c1_pb6_pb7\.h is not documented\. -boards/common/stm32/include/cfg_i2c1_pb6_pb7\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file cfg_i2c1_pb6_pb7\.h is not documented\. -boards/common/stm32/include/cfg_i2c1_pb8_pb9\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file cfg_i2c1_pb8_pb9\.h is not documented\. -boards/common/stm32/include/cfg_i2c1_pb8_pb9\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file cfg_i2c1_pb8_pb9\.h is not documented\. -boards/common/stm32/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/stm32/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/stm32/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/stm32/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/stm32/include/cfg_rtt_default\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file cfg_rtt_default\.h is not documented\. -boards/common/stm32/include/cfg_timer_tim2\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file cfg_timer_tim2\.h is not documented\. -boards/common/stm32/include/cfg_timer_tim2\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file cfg_timer_tim2\.h is not documented\. -boards/common/stm32/include/cfg_timer_tim2\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file cfg_timer_tim2\.h is not documented\. -boards/common/stm32/include/cfg_timer_tim5\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file cfg_timer_tim5\.h is not documented\. -boards/common/stm32/include/cfg_timer_tim5\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file cfg_timer_tim5\.h is not documented\. -boards/common/stm32/include/cfg_timer_tim5\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file cfg_timer_tim5\.h is not documented\. -boards/common/stm32/include/cfg_usb_otg_fs\.h:[0-9]+: warning: Member stm32_usb_otg_fshs_config\[\] \(variable\) of file cfg_usb_otg_fs\.h is not documented\. -boards/common/stm32/include/cfg_usb_otg_hs_fs\.h:[0-9]+: warning: Member stm32_usb_otg_fshs_config\[\] \(variable\) of file cfg_usb_otg_hs_fs\.h is not documented\. -boards/common/weact-f4x1cx/include/board\.h:[0-9]+: warning: Member MTD_0 \(macro definition\) of file board\.h is not documented\. -boards/common/weact-f4x1cx/include/board\.h:[0-9]+: warning: Member WEACT_4X1CX_NOR_FLAGS \(macro definition\) of file board\.h is not documented\. -boards/common/weact-f4x1cx/include/board\.h:[0-9]+: warning: Member WEACT_4X1CX_NOR_PAGES_PER_SECTOR \(macro definition\) of file board\.h is not documented\. -boards/common/weact-f4x1cx/include/board\.h:[0-9]+: warning: Member WEACT_4X1CX_NOR_PAGE_SIZE \(macro definition\) of file board\.h is not documented\. -boards/common/weact-f4x1cx/include/board\.h:[0-9]+: warning: Member WEACT_4X1CX_NOR_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/common/weact-f4x1cx/include/board\.h:[0-9]+: warning: Member WEACT_4X1CX_NOR_SPI_CS \(macro definition\) of file board\.h is not documented\. -boards/common/weact-f4x1cx/include/board\.h:[0-9]+: warning: Member WEACT_4X1CX_NOR_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/common/weact-f4x1cx/include/board\.h:[0-9]+: warning: Member WEACT_4X1CX_NOR_SPI_MODE \(macro definition\) of file board\.h is not documented\. -boards/common/weact-f4x1cx/include/board\.h:[0-9]+: warning: Member mtd0 \(variable\) of file board\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/weact-f4x1cx/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/derfmega256/include/eui_provider_params\.h:[0-9]+: warning: Member EEPROM_MAC_ADDR \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/derfmega256/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_FUNC \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/derfmega256/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_INDEX \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/derfmega256/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_TYPE \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/dwm1001/include/board\.h:[0-9]+: warning: Member DW1000_PARAM_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/dwm1001/include/board\.h:[0-9]+: warning: Member DW1000_PARAM_INT_PIN \(macro definition\) of file board\.h is not documented\. -boards/dwm1001/include/board\.h:[0-9]+: warning: Member DW1000_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/dwm1001/include/board\.h:[0-9]+: warning: Member LED_MASK \(macro definition\) of file board\.h is not documented\. -boards/dwm1001/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/dwm1001/include/board\.h:[0-9]+: warning: Member LIS2DH12_PARAM_INT_PIN1 \(macro definition\) of file board\.h is not documented\. -boards/dwm1001/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/dwm1001/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/dwm1001/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/dwm1001/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/dwm1001/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/dwm1001/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/dwm1001/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/e180-zg120b-tb/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/e180-zg120b-tb/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/e180-zg120b-tb/include/board\.h:[0-9]+: warning: Member PB2_PIN \(macro definition\) of file board\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFE \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/e180-zg120b-tb/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_DEV \(macro definition\) of file board\.h is not documented\. -boards/ek-lm4f120xl/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_MIN \(macro definition\) of file board\.h is not documented\. -boards/ek-lm4f120xl/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_TYPE \(macro definition\) of file board\.h is not documented\. -boards/ek-lm4f120xl/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member CLK1 \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member CLK16 \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member CLK40 \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member CLK50 \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member CLK80 \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member UART_0_CLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member UART_0_DEV \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member UART_0_IRQ_CHAN \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member UART_0_PORT \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member UART_0_RX_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member UART_0_TX_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member UART_CLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member UART_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member spi_confs\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ek-lm4f120xl/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/esp32-ethernet-kit-v1_0/include/periph_conf\.h:[0-9]+: warning: Member PWM0_GPIOS \(macro definition\) of file periph_conf\.h is not documented\. -boards/esp32-heltec-lora32-v2/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of file board\.h is not documented\. -boards/esp32-heltec-lora32-v2/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of file board\.h is not documented\. -boards/esp32-heltec-lora32-v2/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of file board\.h is not documented\. -boards/esp32-heltec-lora32-v2/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of file board\.h is not documented\. -boards/esp32-heltec-lora32-v2/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO_MULTI \(macro definition\) of file board\.h is not documented\. -boards/esp32-heltec-lora32-v2/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/esp32-heltec-lora32-v2/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/esp32-heltec-lora32-v2/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of file board\.h is not documented\. -boards/esp32-mh-et-live-minikit/include/board\.h:[0-9]+: warning: Member LED_BLUE_PIN \(macro definition\) of file board\.h is not documented\. -boards/esp32-olimex-evb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CLK \(macro definition\) of file board\.h is not documented\. -boards/esp32-olimex-evb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/esp32-olimex-evb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MISO \(macro definition\) of file board\.h is not documented\. -boards/esp32-olimex-evb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MOSI \(macro definition\) of file board\.h is not documented\. -boards/esp32-olimex-evb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_POWER \(macro definition\) of file board\.h is not documented\. -boards/esp32-olimex-evb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/esp32-ttgo-t-beam/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of file board\.h is not documented\. -boards/esp32-ttgo-t-beam/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of file board\.h is not documented\. -boards/esp32-ttgo-t-beam/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of file board\.h is not documented\. -boards/esp32-ttgo-t-beam/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of file board\.h is not documented\. -boards/esp32-ttgo-t-beam/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/esp32-ttgo-t-beam/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of file board\.h is not documented\. -boards/esp32-wemos-lolin-d32-pro/include/board\.h:[0-9]+: warning: Member LED0_ACTIVE \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member BACKLIGHT_OFF \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member BACKLIGHT_ON \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_DCX \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_INVERTED \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_ROTATION \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_RST \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member ILi9341_PARAM_RGB \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member LCD_BACKLIGHT \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member LCD_CS \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member LCD_DC \(macro definition\) of file board\.h is not documented\. -boards/esp32-wrover-kit/include/board\.h:[0-9]+: warning: Member LCD_RST \(macro definition\) of file board\.h is not documented\. -boards/f4vi1/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/f4vi1/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/f4vi1/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/f4vi1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/f4vi1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/f4vi1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/f4vi1/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/f4vi1/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/f4vi1/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/f4vi1/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_CHIP_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_IRQ_PIN \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_RESET_PIN \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_SSN_PIN \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_WAKE_PIN \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_PASELECT \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of file board\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member PWM_1_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan1_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-m0/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-nrf52840/include/board\.h:[0-9]+: warning: Member LED_MASK \(macro definition\) of file board\.h is not documented\. -boards/feather-nrf52840/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/feather-nrf52840/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-nrf52840/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-nrf52840/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-nrf52840/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/feather-nrf52840/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-nrf52840/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/feather-nrf52840/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/firefly/include/board\.h:[0-9]+: warning: Member CC1200_CSN_GPIO \(macro definition\) of file board\.h is not documented\. -boards/firefly/include/board\.h:[0-9]+: warning: Member CC1200_GPD0_GPIO \(macro definition\) of file board\.h is not documented\. -boards/firefly/include/board\.h:[0-9]+: warning: Member CC1200_GPD2_GPIO \(macro definition\) of file board\.h is not documented\. -boards/firefly/include/board\.h:[0-9]+: warning: Member CC1200_MISO_GPIO \(macro definition\) of file board\.h is not documented\. -boards/firefly/include/board\.h:[0-9]+: warning: Member CC1200_MOSI_GPIO \(macro definition\) of file board\.h is not documented\. -boards/firefly/include/board\.h:[0-9]+: warning: Member CC1200_RESET_GPIO \(macro definition\) of file board\.h is not documented\. -boards/firefly/include/board\.h:[0-9]+: warning: Member CC1200_SCLK_GPIO \(macro definition\) of file board\.h is not documented\. -boards/firefly/include/board\.h:[0-9]+: warning: Member CC1200_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/firefly/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/firefly/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_SETTING \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_BUSCLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member PIT_BASECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member PIT_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_1 \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member PIT_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member clock_config \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member spi_clk_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k22f/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_SETTING \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_BUSCLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member PIT_BASECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member PIT_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_1 \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member PIT_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member clock_config \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member spi_clk_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-k64f/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/board\.h:[0-9]+: warning: Member MAG3110_PARAM_ADDR \(macro definition\) of group boards_frdm-kl43z is not documented\. -boards/frdm-kl43z/include/board\.h:[0-9]+: warning: Member MAG3110_PARAM_I2C \(macro definition\) of group boards_frdm-kl43z is not documented\. -boards/frdm-kl43z/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_ADDR \(macro definition\) of group boards_frdm-kl43z is not documented\. -boards/frdm-kl43z/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_I2C \(macro definition\) of group boards_frdm-kl43z is not documented\. -boards/frdm-kl43z/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_TYPE \(macro definition\) of group boards_frdm-kl43z is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_SETTING \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_BUSCLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_MCGIRCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member LPUART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member LPUART_0_SRC \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member PIT_BASECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member PIT_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member PIT_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member clock_config \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-kl43z/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-kw41z/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_DEV \(macro definition\) of file board\.h is not documented\. -boards/frdm-kw41z/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_TYPE \(macro definition\) of file board\.h is not documented\. -boards/frdm-kw41z/include/board\.h:[0-9]+: warning: Member FRDM_NOR_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/frdm-kw41z/include/board\.h:[0-9]+: warning: Member FRDM_NOR_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/frdm-kw41z/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kw41z/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_SETTING \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kw41z/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/frdm-kw41z/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/frdm-kw41z/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hamilton/include/board\.h:[0-9]+: warning: Member TMP006_PARAM_ADDR \(macro definition\) of group boards_hamilton is not documented\. -boards/hamilton/include/board\.h:[0-9]+: warning: Member TMP006_PARAM_I2C \(macro definition\) of group boards_hamilton is not documented\. -boards/hamilton/include/board\.h:[0-9]+: warning: Member TMP006_PARAM_RATE \(macro definition\) of group boards_hamilton is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member PWM_1_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member RANDOM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan1_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hamilton/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hifive1/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hifive1/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hifive1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hifive1/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hifive1/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hifive1/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_14 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_15 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_16 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_17 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_18 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_19 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/hifive1b/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hifive1b/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hifive1b/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hifive1b/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hifive1b/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/hifive1b/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hifive1b/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/hifive1b/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/i-nucleo-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of file board\.h is not documented\. -boards/i-nucleo-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of file board\.h is not documented\. -boards/i-nucleo-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of file board\.h is not documented\. -boards/i-nucleo-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of file board\.h is not documented\. -boards/i-nucleo-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_PASELECT \(macro definition\) of file board\.h is not documented\. -boards/i-nucleo-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/i-nucleo-lrwan1/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of file board\.h is not documented\. -boards/i-nucleo-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/i-nucleo-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/i-nucleo-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/i-nucleo-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/i-nucleo-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/i-nucleo-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/i-nucleo-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/i-nucleo-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/i-nucleo-lrwan1/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member IKEA_TRADFRI_NOR_FLAGS \(macro definition\) of file board\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member IKEA_TRADFRI_NOR_PAGES_PER_SECTOR \(macro definition\) of file board\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member IKEA_TRADFRI_NOR_PAGE_SIZE \(macro definition\) of file board\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member IKEA_TRADFRI_NOR_SECTOR_COUNT \(macro definition\) of file board\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member IKEA_TRADFRI_NOR_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member IKEA_TRADFRI_NOR_SPI_CS \(macro definition\) of file board\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member IKEA_TRADFRI_NOR_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member IKEA_TRADFRI_NOR_SPI_MODE \(macro definition\) of file board\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member MTD_0 \(macro definition\) of file board\.h is not documented\. -boards/ikea-tradfri/include/board\.h:[0-9]+: warning: Member mtd0 \(variable\) of file board\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFE \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member EFM32_USE_LEUART \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ikea-tradfri/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/im880b/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of file board\.h is not documented\. -boards/im880b/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of file board\.h is not documented\. -boards/im880b/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of file board\.h is not documented\. -boards/im880b/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of file board\.h is not documented\. -boards/im880b/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_PASELECT \(macro definition\) of file board\.h is not documented\. -boards/im880b/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/im880b/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RX_SWITCH \(macro definition\) of file board\.h is not documented\. -boards/im880b/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of file board\.h is not documented\. -boards/im880b/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_TX_SWITCH \(macro definition\) of file board\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/im880b/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/iotlab-a8-m3/include/board\.h:[0-9]+: warning: Member L3G4200D_PARAM_INT1 \(macro definition\) of file board\.h is not documented\. -boards/iotlab-a8-m3/include/board\.h:[0-9]+: warning: Member L3G4200D_PARAM_INT2 \(macro definition\) of file board\.h is not documented\. -boards/iotlab-a8-m3/include/board\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_ACC_PIN \(macro definition\) of file board\.h is not documented\. -boards/iotlab-a8-m3/include/board\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_MAG_PIN \(macro definition\) of file board\.h is not documented\. -boards/iotlab-a8-m3/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/iotlab-a8-m3/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/iotlab-m3/include/board\.h:[0-9]+: warning: Member EXTFLASH_CS \(macro definition\) of file board\.h is not documented\. -boards/iotlab-m3/include/board\.h:[0-9]+: warning: Member EXTFLASH_HOLD \(macro definition\) of file board\.h is not documented\. -boards/iotlab-m3/include/board\.h:[0-9]+: warning: Member EXTFLASH_SPI \(macro definition\) of file board\.h is not documented\. -boards/iotlab-m3/include/board\.h:[0-9]+: warning: Member EXTFLASH_WRITE \(macro definition\) of file board\.h is not documented\. -boards/iotlab-m3/include/board\.h:[0-9]+: warning: Member L3G4200D_PARAM_INT1 \(macro definition\) of file board\.h is not documented\. -boards/iotlab-m3/include/board\.h:[0-9]+: warning: Member L3G4200D_PARAM_INT2 \(macro definition\) of file board\.h is not documented\. -boards/iotlab-m3/include/board\.h:[0-9]+: warning: Member LPSXXX_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/iotlab-m3/include/board\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_ACC_PIN \(macro definition\) of file board\.h is not documented\. -boards/iotlab-m3/include/board\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_MAG_PIN \(macro definition\) of file board\.h is not documented\. -boards/iotlab-m3/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/iotlab-m3/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/board\.h:[0-9]+: warning: Member LIS3MDL_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/limifrog-v1/include/board\.h:[0-9]+: warning: Member LIS3MDL_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/limifrog-v1/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member EN3V3_MASK \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member EN3V3_OFF \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member EN3V3_ON \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member EN3V3_PIN \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member EN3V3_PORT \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member EN3V3_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of file board\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lobaro-lorabox/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/board\.h:[0-9]+: warning: Member FE_CTRL1 \(macro definition\) of file board\.h is not documented\. -boards/lora-e5-dev/include/board\.h:[0-9]+: warning: Member FE_CTRL2 \(macro definition\) of file board\.h is not documented\. -boards/lora-e5-dev/include/board\.h:[0-9]+: warning: Member SX126X_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lsn50/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of file board\.h is not documented\. -boards/lsn50/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of file board\.h is not documented\. -boards/lsn50/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of file board\.h is not documented\. -boards/lsn50/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of file board\.h is not documented\. -boards/lsn50/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO4 \(macro definition\) of file board\.h is not documented\. -boards/lsn50/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO5 \(macro definition\) of file board\.h is not documented\. -boards/lsn50/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_PASELECT \(macro definition\) of file board\.h is not documented\. -boards/lsn50/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/lsn50/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/lsn50/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of file board\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member DMA_SHARED_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member DMA_SHARED_ISR_0_STREAMS \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member DMA_SHARED_ISR_1 \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member DMA_SHARED_ISR_1_STREAMS \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lsn50/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/maple-mini/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CLKDIS\(\) \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CLKEN\(\) \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_DEV \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_FREQ \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_IRQ \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_PLKSEL\(\) \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member UART_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mbed_lpc1768/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/board\.h:[0-9]+: warning: Member HD44780_PARAM_COLS \(macro definition\) of file board\.h is not documented\. -boards/mcb2388/include/board\.h:[0-9]+: warning: Member HD44780_PARAM_PINS_DATA \(macro definition\) of file board\.h is not documented\. -boards/mcb2388/include/board\.h:[0-9]+: warning: Member HD44780_PARAM_PIN_ENABLE \(macro definition\) of file board\.h is not documented\. -boards/mcb2388/include/board\.h:[0-9]+: warning: Member HD44780_PARAM_PIN_RS \(macro definition\) of file board\.h is not documented\. -boards/mcb2388/include/board\.h:[0-9]+: warning: Member HD44780_PARAM_PIN_RW \(macro definition\) of file board\.h is not documented\. -boards/mcb2388/include/board\.h:[0-9]+: warning: Member HD44780_PARAM_ROWS \(macro definition\) of file board\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member XTAL_HZ \(macro definition\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mcb2388/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J1_PIN1 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J1_PIN2 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J1_PIN3 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J1_PIN4 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J1_PIN5 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J1_PIN6 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J1_PIN7 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J1_PIN8 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J2_PIN1 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J2_PIN2 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J2_PIN3 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J2_PIN4 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J2_PIN5 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J2_PIN6 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J2_PIN7 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J2_PIN8 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J3_PIN1 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J3_PIN2 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J3_PIN3 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J3_PIN4 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J3_PIN5 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J3_PIN6 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J3_PIN7 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J3_PIN8 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J4_PIN1 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J4_PIN2 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J4_PIN3 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J4_PIN4 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J4_PIN5 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J4_PIN6 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J4_PIN7 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/mega-xplained_pinmap\.h:[0-9]+: warning: Member J4_PIN8 \(macro definition\) of file mega-xplained_pinmap\.h is not documented\. -boards/mega-xplained/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MAG3110_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MAG3110_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL1 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL2 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL3 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL4 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL5 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL6 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL7 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL8 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL9 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_ROW1 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_ROW2 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_ROW3 \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/microbit/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/microbit/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/microbit/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/microbit/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/microbit/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member LSM303AGR_PARAM_ACC_ADDR \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member LSM303AGR_PARAM_MAG_ADDR \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL1 \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL2 \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL3 \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL4 \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_COL5 \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_ROW1 \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_ROW2 \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_ROW3 \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_ROW4 \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MICROBIT_LED_ROW5 \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member MIC_IN_PIN \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member RUN_MIC_PIN \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/board\.h:[0-9]+: warning: Member SPEAKER_PIN \(macro definition\) of file board\.h is not documented\. -boards/microbit-v2/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/microbit-v2/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/microbit-v2/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/microbit-v2/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/microbit-v2/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/microbit-v2/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/microbit-v2/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/microbit-v2/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/microbit-v2/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msb-430/include/board\.h:[0-9]+: warning: Member F_CPU \(macro definition\) of file board\.h is not documented\. -boards/msb-430/include/board\.h:[0-9]+: warning: Member F_RC_OSCILLATOR \(macro definition\) of file board\.h is not documented\. -boards/msb-430/include/board\.h:[0-9]+: warning: Member MSP430_HAS_DCOR \(macro definition\) of file board\.h is not documented\. -boards/msb-430/include/board\.h:[0-9]+: warning: Member MSP430_HAS_EXTERNAL_CRYSTAL \(macro definition\) of file board\.h is not documented\. -boards/msb-430/include/board\.h:[0-9]+: warning: Member SHT1X_PARAM_CLK \(macro definition\) of file board\.h is not documented\. -boards/msb-430/include/board\.h:[0-9]+: warning: Member SHT1X_PARAM_DATA \(macro definition\) of file board\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CMCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE_RX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE_TX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_IF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_ME \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_ME_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_CLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_MISO \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_MOSI \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member TIMER_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member TIMER_CHAN \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member TIMER_ISR_CC0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member TIMER_ISR_CCX \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_IE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_IE_RX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_IE_TX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_IF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_ME \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_ME_BITS \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_PORT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_RX_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_RX_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_TX_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430/include/periph_conf\.h:[0-9]+: warning: Member UART_TX_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/board\.h:[0-9]+: warning: Member F_CPU \(macro definition\) of file board\.h is not documented\. -boards/msb-430h/include/board\.h:[0-9]+: warning: Member F_RC_OSCILLATOR \(macro definition\) of file board\.h is not documented\. -boards/msb-430h/include/board\.h:[0-9]+: warning: Member MSP430_HAS_DCOR \(macro definition\) of file board\.h is not documented\. -boards/msb-430h/include/board\.h:[0-9]+: warning: Member MSP430_HAS_EXTERNAL_CRYSTAL \(macro definition\) of file board\.h is not documented\. -boards/msb-430h/include/board\.h:[0-9]+: warning: Member SHT1X_PARAM_CLK \(macro definition\) of file board\.h is not documented\. -boards/msb-430h/include/board\.h:[0-9]+: warning: Member SHT1X_PARAM_DATA \(macro definition\) of file board\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CMCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE_RX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE_TX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_IF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_ME \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_ME_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_CLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_MISO \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_MOSI \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member TIMER_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member TIMER_CHAN \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member TIMER_ISR_CC0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member TIMER_ISR_CCX \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_IE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_IE_RX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_IE_TX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_IF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_ME \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_ME_BITS \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_PORT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_RX_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_RX_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_TX_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msb-430h/include/periph_conf\.h:[0-9]+: warning: Member UART_TX_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_CH0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_CH0_MR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_CH0_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_CH1 \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_CH1_MR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_CH1_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_CH2 \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_CH2_MR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_CH2_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_FUNC \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member PWM_PORT \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member XTAL_HZ \(macro definition\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msba2/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member DAC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member dac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/msbiot/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member LED0_BIT \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member LED1_BIT \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member LED2_BIT \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member LIS3DH_PARAM_CLK \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member LIS3DH_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member LIS3DH_PARAM_INT1 \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member LIS3DH_PARAM_INT2 \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member MTD_0 \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member MULLE_NOR_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member MULLE_NOR_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member MULLE_NVRAM_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member MULLE_NVRAM_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member MULLE_VBAT_ADC_LINE \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member MULLE_VCHR_ADC_LINE \(macro definition\) of file board\.h is not documented\. -boards/mulle/include/board\.h:[0-9]+: warning: Member mtd0 \(variable\) of file board\.h is not documented\. -boards/mulle/include/mulle-nvram\.h:[0-9]+: warning: Member MULLE_NVRAM_MAGIC_EXPECTED \(macro definition\) of file mulle-nvram\.h is not documented\. -boards/mulle/include/mulle-nvram\.h:[0-9]+: warning: Member mulle_nvram \(variable\) of file mulle-nvram\.h is not documented\. -boards/mulle/include/mulle-nvram\.h:[0-9]+: warning: Member mulle_nvram_address \(enumeration\) of file mulle-nvram\.h is not documented\. -boards/mulle/include/mulle-nvram\.h:[0-9]+: warning: Member mulle_nvram_address_t \(typedef\) of file mulle-nvram\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_SETTING \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_BUSCLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member DAC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member PIT_BASECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member PIT_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_1 \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member PIT_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member RTC_LOAD_CAP_BITS \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member clock_config \(variable\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member dac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member spi_clk_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/mulle/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member MTD_NATIVE_FILENAME \(macro definition\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member MTD_PAGE_SIZE \(macro definition\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member MTD_SECTOR_NUM \(macro definition\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member MTD_SECTOR_SIZE \(macro definition\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member SPIFFS_CACHE \(macro definition\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member SPIFFS_HAL_CALLBACK_EXTRA \(macro definition\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member SPIFFS_READ_ONLY \(macro definition\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member SPIFFS_SINGLETON \(macro definition\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member _native_LED_GREEN_OFF\(void\) \(function\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member _native_LED_GREEN_ON\(void\) \(function\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member _native_LED_GREEN_TOGGLE\(void\) \(function\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member _native_LED_RED_OFF\(void\) \(function\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member _native_LED_RED_ON\(void\) \(function\) of file board\.h is not documented\. -boards/native/include/board\.h:[0-9]+: warning: Member _native_LED_RED_TOGGLE\(void\) \(function\) of file board\.h is not documented\. -boards/native/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_FUNC \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/native/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_INDEX \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/native/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_TYPE \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/nrf51dk/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dk/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dk/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dk/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_CTS \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dk/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RTS \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dk/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dk/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dk/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf51dk/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf51dongle/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dongle/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_CTS \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dongle/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RTS \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dongle/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf51dongle/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52832-mdk/include/board\.h:[0-9]+: warning: Member LED_MASK \(macro definition\) of file board\.h is not documented\. -boards/nrf52832-mdk/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/nrf52832-mdk/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52832-mdk/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52832-mdk/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840-mdk/include/board\.h:[0-9]+: warning: Member LED_MASK \(macro definition\) of file board\.h is not documented\. -boards/nrf52840-mdk/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/nrf52840-mdk/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840-mdk/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840-mdk/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf52840-mdk-dongle/include/board\.h:[0-9]+: warning: Member INTERNAL_PERIPHERAL_PID \(macro definition\) of file board\.h is not documented\. -boards/nrf52840-mdk-dongle/include/board\.h:[0-9]+: warning: Member INTERNAL_PERIPHERAL_VID \(macro definition\) of file board\.h is not documented\. -boards/nrf52840-mdk-dongle/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840-mdk-dongle/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840-mdk-dongle/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840-mdk-dongle/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf52840-mdk-dongle/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf52840dk/include/board\.h:[0-9]+: warning: Member LED_MASK \(macro definition\) of file board\.h is not documented\. -boards/nrf52840dk/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/nrf52840dk/include/board\.h:[0-9]+: warning: Member NRF52840DK_NOR_FLAGS \(macro definition\) of file board\.h is not documented\. -boards/nrf52840dk/include/board\.h:[0-9]+: warning: Member NRF52840DK_NOR_PAGES_PER_SECTOR \(macro definition\) of file board\.h is not documented\. -boards/nrf52840dk/include/board\.h:[0-9]+: warning: Member NRF52840DK_NOR_PAGE_SIZE \(macro definition\) of file board\.h is not documented\. -boards/nrf52840dk/include/board\.h:[0-9]+: warning: Member NRF52840DK_NOR_SECTOR_COUNT \(macro definition\) of file board\.h is not documented\. -boards/nrf52840dk/include/board\.h:[0-9]+: warning: Member NRF52840DK_NOR_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/nrf52840dk/include/board\.h:[0-9]+: warning: Member NRF52840DK_NOR_SPI_CS \(macro definition\) of file board\.h is not documented\. -boards/nrf52840dk/include/board\.h:[0-9]+: warning: Member NRF52840DK_NOR_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/nrf52840dk/include/board\.h:[0-9]+: warning: Member NRF52840DK_NOR_SPI_MODE \(macro definition\) of file board\.h is not documented\. -boards/nrf52840dk/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840dk/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840dk/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840dk/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840dk/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf52840dk/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf52840dongle/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840dongle/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840dongle/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840dongle/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840dongle/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52840dongle/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf52840dongle/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf52840dongle/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf52840dongle/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf52840dongle/include/pwm_params\.h:[0-9]+: warning: Member saul_pwm_rgb_params\[\] \(variable\) of file pwm_params\.h is not documented\. -boards/nrf52dk/include/board\.h:[0-9]+: warning: Member LED_MASK \(macro definition\) of file board\.h is not documented\. -boards/nrf52dk/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/nrf52dk/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52dk/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52dk/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52dk/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf52dk/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf6310/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf6310/include/periph_conf\.h:[0-9]+: warning: Member UART_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf6310/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf6310/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_CTS \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf6310/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RTS \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf6310/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf6310/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf6310/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf9160dk/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf9160dk/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nrf9160dk/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf9160dk/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf9160dk/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nrf9160dk/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f030r8/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f031k6/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f031k6/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f031k6/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f031k6/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f031k6/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f031k6/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f031k6/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f031k6/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f031k6/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f042k6/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f042k6/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f042k6/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f042k6/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f042k6/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f042k6/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f042k6/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f042k6/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f042k6/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f042k6/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f070rb/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f072rb/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member DMA_SHARED_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member DMA_SHARED_ISR_0_STREAMS \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f091rc/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f103rb/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_4_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_5_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_6_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member ETH_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member eth_config \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f207zg/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f302r8/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303k8/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303re/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member UART_0_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member UART_1_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member UART_2_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f303ze/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f334r8/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member DMA_4_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member DMA_5_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member QDEC_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member QDEC_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member QDEC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member qdec_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f401re/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f410rb/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f411re/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f412zg/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f413zh/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member DMA_4_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member DMA_5_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member QDEC_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member QDEC_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member QDEC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member qdec_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f446re/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f446ze/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f722ze/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f722ze/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f722ze/include/periph_conf\.h:[0-9]+: warning: Member UART_0_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f722ze/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f722ze/include/periph_conf\.h:[0-9]+: warning: Member UART_1_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f722ze/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f722ze/include/periph_conf\.h:[0-9]+: warning: Member UART_2_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f722ze/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f722ze/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f722ze/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_4_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_5_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_6_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_7_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member ETH_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member eth_config \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f746zg/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member ETH_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member eth_config \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f767zi/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g474re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g474re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g474re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g474re/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g474re/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g474re/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g474re/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g474re/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g474re/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l011k4/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l011k4/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l011k4/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l011k4/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l011k4/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l011k4/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l011k4/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l011k4/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l031k6/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l031k6/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l031k6/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l031k6/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l031k6/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l031k6/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l031k6/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l031k6/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l031k6/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l031k6/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l053r8/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l053r8/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l053r8/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l053r8/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l053r8/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l053r8/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l053r8/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l053r8/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l053r8/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l073rz/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member DAC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member dac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l152re/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l412kb/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l412kb/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l412kb/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l412kb/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l412kb/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l412kb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l412kb/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l412kb/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l412kb/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l432kc/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l432kc/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l432kc/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l432kc/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l432kc/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l432kc/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l432kc/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l432kc/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l432kc/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l433rc/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l452re/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l452re/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l452re/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l452re/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l452re/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l452re/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l452re/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l452re/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l452re/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l476rg/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member UART_1_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l496zg/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l4r5zi/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l4r5zi/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l4r5zi/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l4r5zi/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l4r5zi/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l4r5zi/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l4r5zi/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l4r5zi/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l4r5zi/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l4r5zi/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l552ze-q/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l552ze-q/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l552ze-q/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l552ze-q/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l552ze-q/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-l552ze-q/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-l552ze-q/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_14 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_15 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/nucleo-wl55jc/include/board\.h:[0-9]+: warning: Member FE_CTRL1 \(macro definition\) of file board\.h is not documented\. -boards/nucleo-wl55jc/include/board\.h:[0-9]+: warning: Member FE_CTRL2 \(macro definition\) of file board\.h is not documented\. -boards/nucleo-wl55jc/include/board\.h:[0-9]+: warning: Member FE_CTRL3 \(macro definition\) of file board\.h is not documented\. -boards/nucleo-wl55jc/include/board\.h:[0-9]+: warning: Member SX126X_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-wl55jc/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member DAC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member dac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nz32-sc151/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/board\.h:[0-9]+: warning: Member LED_PANIC \(macro definition\) of file board\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member TIMER_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/olimexino-stm32/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/omote/include/board\.h:[0-9]+: warning: Member CCA_BACKDOOR_ENABLE \(macro definition\) of file board\.h is not documented\. -boards/omote/include/board\.h:[0-9]+: warning: Member INTERNAL_PERIPHERAL_PID \(macro definition\) of file board\.h is not documented\. -boards/omote/include/board\.h:[0-9]+: warning: Member INTERNAL_PERIPHERAL_VID \(macro definition\) of file board\.h is not documented\. -boards/omote/include/board\.h:[0-9]+: warning: Member LED_ALL_OFF \(macro definition\) of file board\.h is not documented\. -boards/omote/include/board\.h:[0-9]+: warning: Member LED_ALL_ON \(macro definition\) of file board\.h is not documented\. -boards/omote/include/board\.h:[0-9]+: warning: Member UPDATE_CCA \(macro definition\) of file board\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member I2C_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member SOC_ADC_ADCCON3_EREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/omote/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/opencm904/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/opencm904/include/board\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of file board\.h is not documented\. -boards/opencm904/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/opencm904/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/opencm904/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/opencm904/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/opencm904/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/opencm904/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/opencm904/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/opencm904/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/opencm904/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/opencm904/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/board\.h:[0-9]+: warning: Member KINETIS_FOPT \(macro definition\) of file board\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_SETTING \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_VOLTAGE \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member ADC_TEMPERATURE_CHANNEL \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_BUSCLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_MCGFLLCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_MCGIRCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_OSCERCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_RADIOXTAL \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member DAC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member HAVE_PWM_MODE_T \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member KINETIS_TRNG \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member LPUART_0_CLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member LPUART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member LPUART_0_SRC \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member PIT_BASECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member PIT_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member PIT_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member UART_CLOCK_PM_BLOCKER \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member UART_MAX_UNCLOCKED_BAUDRATE \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member clock_config \(variable\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member dac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member pwm_mode_t \(enumeration\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member spi_clk_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openlabs-kw41z-mini/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member AT86RF215_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member AT86RF215_PARAM_INT \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member AT86RF215_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member AT86RF215_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member CCA_BACKDOOR_ENABLE \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_SIG_0_PCX \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_SIG_1_PCX \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_SIG_2_PCX \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_FRAME \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_FSM \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_ISR \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_RADIO \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_SLOT \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_TASK \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member OPENWSN_LEDPIN_DEBUG \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member OPENWSN_LEDPIN_ERROR \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member OPENWSN_LEDPIN_RADIO \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member OPENWSN_LEDPIN_SYNC \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member RF24_SWITCH_AT86RF215_MASK \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member RF24_SWITCH_AT86RF215_OFF \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member RF24_SWITCH_AT86RF215_ON \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member RF24_SWITCH_AT86RF215_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member RF24_SWITCH_CC2538_MASK \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member RF24_SWITCH_CC2538_OFF \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member RF24_SWITCH_CC2538_ON \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member RF24_SWITCH_CC2538_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member RF_SWITCH_PORT \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/board\.h:[0-9]+: warning: Member UPDATE_CCA \(macro definition\) of file board\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member I2C_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member SOC_ADC_ADCCON3_EREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openmote-b/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/board\.h:[0-9]+: warning: Member CCA_BACKDOOR_ENABLE \(macro definition\) of file board\.h is not documented\. -boards/openmote-cc2538/include/board\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_SIG_0_PCX \(macro definition\) of file board\.h is not documented\. -boards/openmote-cc2538/include/board\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_SIG_1_PCX \(macro definition\) of file board\.h is not documented\. -boards/openmote-cc2538/include/board\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_SIG_2_PCX \(macro definition\) of file board\.h is not documented\. -boards/openmote-cc2538/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/openmote-cc2538/include/board\.h:[0-9]+: warning: Member UPDATE_CCA \(macro definition\) of file board\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member I2C_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member SOC_ADC_ADCCON3_EREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/openmote-cc2538/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/p-l496g-cell02/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_14 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_15 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_EXTAHB \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_EXTAHB_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/p-nucleo-wb55/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/particle-argon/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/particle-argon/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/particle-argon/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/particle-argon/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/particle-boron/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/particle-boron/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/particle-boron/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/particle-boron/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/particle-xenon/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/particle-xenon/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/particle-xenon/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/particle-xenon/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/board\.h:[0-9]+: warning: Member KW2XRF_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/pba-d-01-kw2x/include/board\.h:[0-9]+: warning: Member KW2XRF_PARAM_INT \(macro definition\) of file board\.h is not documented\. -boards/pba-d-01-kw2x/include/board\.h:[0-9]+: warning: Member KW2XRF_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/pba-d-01-kw2x/include/board\.h:[0-9]+: warning: Member KW2XRF_PARAM_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/pba-d-01-kw2x/include/board\.h:[0-9]+: warning: Member KW2XRF_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/pba-d-01-kw2x/include/board\.h:[0-9]+: warning: Member KW2XRF_SHARED_SPI \(macro definition\) of file board\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_SETTING \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_BUSCLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member PIT_BASECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member PIT_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_1 \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member PIT_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member clock_config \(variable\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member spi_clk_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pba-d-01-kw2x/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member CCS811_PARAM_I2C_ADDR \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member CCS811_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member CCS811_PARAM_INT_MODE \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member CCS811_PARAM_INT_PIN \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member CCS811_PARAM_RESET_PIN \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member CCS811_PARAM_WAKE_PIN \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_DEV \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_TYPE \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member KINETIS_FOPT \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member TCS37727_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member TCS37727_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member V_PERIPH_MASK \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member V_PERIPH_OFF \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member V_PERIPH_ON \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/board\.h:[0-9]+: warning: Member V_PERIPH_PIN \(macro definition\) of file board\.h is not documented\. -boards/phynode-kw41z/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/phynode-kw41z/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_SETTING \(macro definition\) of file periph_conf\.h is not documented\. -boards/phynode-kw41z/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/phynode-kw41z/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/phynode-kw41z/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member BACKLIGHT_MASK \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member BACKLIGHT_OFF \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member BACKLIGHT_ON \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member BATTERY_ADC \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member BUTTON0 \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member BUTTON0_ENABLE \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member CHARGING_ACTIVE \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member CST816S_PARAM_I2C_ADDR \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member CST816S_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member CST816S_PARAM_IRQ \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member CST816S_PARAM_IRQ_FLANK \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member CST816S_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_DCX \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_INVERTED \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_NUM_LINES \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_RGB \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_ROTATION \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_RST \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member ILI9341_PARAM_SPI_MODE \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member LCD_BACKLIGHT_HIGH \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member LCD_BACKLIGHT_LOW \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member LCD_BACKLIGHT_MID \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member LCD_CS \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member LCD_DET \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member LCD_RESET \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member LCD_RS \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member MTD_0 \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member PINETIME_NOR_FLAGS \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member PINETIME_NOR_PAGES_PER_SECTOR \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member PINETIME_NOR_PAGE_SIZE \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member PINETIME_NOR_SECTOR_COUNT \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member PINETIME_NOR_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member PINETIME_NOR_SPI_CS \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member PINETIME_NOR_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member PINETIME_NOR_SPI_MODE \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member POWER_PRESENCE \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member VCC33 \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member VIBRATOR \(macro definition\) of file board\.h is not documented\. -boards/pinetime/include/board\.h:[0-9]+: warning: Member mtd0 \(variable\) of file board\.h is not documented\. -boards/pinetime/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pinetime/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pinetime/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pinetime/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/pyboard/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/qn9080dk/include/board\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file board\.h is not documented\. -boards/qn9080dk/include/board\.h:[0-9]+: warning: Member LED_BLUE_PIN \(macro definition\) of file board\.h is not documented\. -boards/qn9080dk/include/board\.h:[0-9]+: warning: Member LED_GREEN_PIN \(macro definition\) of file board\.h is not documented\. -boards/qn9080dk/include/board\.h:[0-9]+: warning: Member LED_RED_PIN \(macro definition\) of file board\.h is not documented\. -boards/qn9080dk/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/qn9080dk/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/qn9080dk/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_TYPE \(macro definition\) of file board\.h is not documented\. -boards/qn9080dk/include/board\.h:[0-9]+: warning: Member MTD_0 \(macro definition\) of file board\.h is not documented\. -boards/qn9080dk/include/board\.h:[0-9]+: warning: Member mtd0 \(variable\) of file board\.h is not documented\. -boards/qn9080dk/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/qn9080dk/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/qn9080dk/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/qn9080dk/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/qn9080dk/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/qn9080dk/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/qn9080dk/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/qn9080dk/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/qn9080dk/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member ADPS9960_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member ADPS9960_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member ADPS9960_PARAM_PIN_INT \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member HDC1010_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member HDC1010_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member HDC1010_PIN_DRDY \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member LED_MASK_P0 \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member LED_MASK_P1 \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_PIN_INT1 \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member MMA8X5X_PARAM_PIN_INT2 \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member SSD1673_BUSY \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member SSD1673_CS \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member SSD1673_DC_INPUT \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member SSD1673_RESET \(macro definition\) of file board\.h is not documented\. -boards/reel/include/board\.h:[0-9]+: warning: Member SSD1673_SPI \(macro definition\) of file board\.h is not documented\. -boards/reel/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/reel/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/reel/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/reel/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/reel/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/remote-pa/include/board\.h:[0-9]+: warning: Member RF_SWITCH_2_4_GHZ \(macro definition\) of file board\.h is not documented\. -boards/remote-pa/include/board\.h:[0-9]+: warning: Member RF_SWITCH_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-pa/include/board\.h:[0-9]+: warning: Member RF_SWITCH_SUB_GHZ \(macro definition\) of file board\.h is not documented\. -boards/remote-pa/include/board\.h:[0-9]+: warning: Member RF_SWITCH_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/remote-pa/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/remote-pa/include/periph_conf\.h:[0-9]+: warning: Member I2C_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/remote-pa/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/remote-pa/include/periph_conf\.h:[0-9]+: warning: Member SOC_ADC_ADCCON3_EREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/remote-pa/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/remote-pa/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/remote-pa/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/remote-pa/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member CC1200_CSN_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member CC1200_GPD0_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member CC1200_GPD2_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member CC1200_MISO_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member CC1200_MOSI_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member CC1200_RESET_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member CC1200_SCLK_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member CC1200_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member RF_SWITCH_2_4_GHZ \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member RF_SWITCH_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member RF_SWITCH_SUB_GHZ \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member RF_SWITCH_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member SHUTDOWN_DONE_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-reva/include/board\.h:[0-9]+: warning: Member SHUTDOWN_EN_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_14 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_17 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_21 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_22 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_23 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_24 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_25 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_28 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_29 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_32 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_33 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_34 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_35 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_36 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member CC1200_CSN_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member CC1200_GPD0_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member CC1200_GPD2_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member CC1200_MISO_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member CC1200_MOSI_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member CC1200_RESET_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member CC1200_SCLK_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member CC1200_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member RF_SWITCH_2_4_GHZ \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member RF_SWITCH_GPIO \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member RF_SWITCH_SUB_GHZ \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member RF_SWITCH_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CLK \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MISO \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MOSI \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_POWER \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_POWER_AH \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/remote-revb/include/board\.h:[0-9]+: warning: Member SHUTDOWN_EN_GPIO \(macro definition\) of file board\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file periph_conf\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISRB \(macro definition\) of file periph_conf\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISRC \(macro definition\) of file periph_conf\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISRD \(macro definition\) of file periph_conf\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member timer0_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/rpi-pico/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ruuvitag/include/board\.h:[0-9]+: warning: Member BMX280_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/ruuvitag/include/board\.h:[0-9]+: warning: Member CS_PIN_MASK \(macro definition\) of file board\.h is not documented\. -boards/ruuvitag/include/board\.h:[0-9]+: warning: Member LED_MASK \(macro definition\) of file board\.h is not documented\. -boards/ruuvitag/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/ruuvitag/include/board\.h:[0-9]+: warning: Member LIS2DH12_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/ruuvitag/include/board\.h:[0-9]+: warning: Member LIS2DH12_PARAM_INT_PIN1 \(macro definition\) of file board\.h is not documented\. -boards/ruuvitag/include/board\.h:[0-9]+: warning: Member LIS2DH12_PARAM_INT_PIN2 \(macro definition\) of file board\.h is not documented\. -boards/ruuvitag/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ruuvitag/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ruuvitag/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/ruuvitag/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/ruuvitag/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/samd10-xmini/include/board\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of file board\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_XOSC32_DFLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member DAC_CLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member DAC_VREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member GEN2_ULP32K \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd10-xmini/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_8MHZ \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_XOSC32_DFLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_XOSC32K \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member DAC_CLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member DAC_VREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member GEN2_ULP32K \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd20-xpro/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_XOSC32_DFLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member DAC_CLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member DAC_VREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member GEN2_ULP32K \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_1_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_2_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samd21-xpro/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member AT24CXXX_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member AT24CXXX_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member AT24MAC_PARAM_I2C_ADDR \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member AT24MAC_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member AT24MAC_PARAM_TYPE \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member ATCA_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member MTD_0 \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member MTD_1 \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member MTD_2 \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member MTD_NUMOF \(macro definition\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member mtd0 \(variable\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member mtd1 \(variable\) of file board\.h is not documented\. -boards/same54-xpro/include/board\.h:[0-9]+: warning: Member mtd2 \(variable\) of file board\.h is not documented\. -boards/same54-xpro/include/eui_provider_params\.h:[0-9]+: warning: Member EUI48_PROVIDER_FUNC \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/same54-xpro/include/eui_provider_params\.h:[0-9]+: warning: Member EUI48_PROVIDER_TYPE \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member DAC_CLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member DAC_VREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member EXTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_3_ISR_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member XOSC1_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member sam_gmac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/same54-xpro/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/saml21-xpro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/saml21-xpro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/saml21-xpro/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member DAC_CLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member DAC_VREF \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member EXTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member INTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/saml21-xpro/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_DEV \(macro definition\) of file board\.h is not documented\. -boards/samr21-xpro/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_MIN \(macro definition\) of file board\.h is not documented\. -boards/samr21-xpro/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_TYPE \(macro definition\) of file board\.h is not documented\. -boards/samr21-xpro/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/samr21-xpro/include/board\.h:[0-9]+: warning: Member RFCTL1_PIN \(macro definition\) of file board\.h is not documented\. -boards/samr21-xpro/include/board\.h:[0-9]+: warning: Member RFCTL2_PIN \(macro definition\) of file board\.h is not documented\. -boards/samr21-xpro/include/board\.h:[0-9]+: warning: Member RFCTL_ANTENNA_DEFAULT \(macro definition\) of file board\.h is not documented\. -boards/samr21-xpro/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_FUNC \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/samr21-xpro/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_INDEX \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/samr21-xpro/include/eui_provider_params\.h:[0-9]+: warning: Member EUI64_PROVIDER_TYPE \(macro definition\) of file eui_provider_params\.h is not documented\. -boards/samr21-xpro/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_delayTx \(macro definition\) of file openwsn_defs\.h is not documented\. -boards/samr21-xpro/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxRxAckPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -boards/samr21-xpro/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxRxDataPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -boards/samr21-xpro/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxTxAckPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -boards/samr21-xpro/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxTxDataPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_XOSC32_DFLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member GEN2_ULP32K \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_1_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member RTT_MIN_OFFSET \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan1_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr21-xpro/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of group boards_samr30-xpro is not documented\. -boards/samr30-xpro/include/board\.h:[0-9]+: warning: Member RFCTL1_PIN \(macro definition\) of group boards_samr30-xpro is not documented\. -boards/samr30-xpro/include/board\.h:[0-9]+: warning: Member RFCTL2_PIN \(macro definition\) of group boards_samr30-xpro is not documented\. -boards/samr30-xpro/include/board\.h:[0-9]+: warning: Member RFCTL_ANTENNA_DEFAULT \(macro definition\) of group boards_samr30-xpro is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member EXTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member INTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr30-xpro/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_PASELECT \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member TCXO_PWR_PIN \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/board\.h:[0-9]+: warning: Member TX_OUTPUT_SEL_PIN \(macro definition\) of group boards_samr34-xpro is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member EXTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member INTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/samr34-xpro/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/seeedstudio-gd32/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HXTAL \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeedstudio-gd32/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_IRQN \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeedstudio-gd32/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_IRQN \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeedstudio-gd32/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeedstudio-gd32/include/periph_conf\.h:[0-9]+: warning: Member UART_0_IRQN \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeedstudio-gd32/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeedstudio-gd32/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/seeedstudio-gd32/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CLKDIS\(\) \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CLKEN\(\) \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_DEV \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_FREQ \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_IRQ \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_PLKSEL\(\) \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member UART_IRQ_PRIO \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_arch-pro/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/board\.h:[0-9]+: warning: Member INTERNAL_PERIPHERAL_PID \(macro definition\) of file board\.h is not documented\. -boards/seeeduino_xiao/include/board\.h:[0-9]+: warning: Member INTERNAL_PERIPHERAL_VID \(macro definition\) of file board\.h is not documented\. -boards/seeeduino_xiao/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/seeeduino_xiao/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member I2C_DISABLE \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member I2C_ENABLE \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member I2C_EN_MASK \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member I2C_EN_MODE \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member I2C_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member I2C_EN_PORT \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member MTD_0 \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member MTD_SD_CARD_PAGES_PER_SECTOR \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member MTD_SD_CARD_SECTOR_COUNT \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_PASELECT \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE1_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE1_DISABLE \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE1_ENABLE \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE1_EN_MASK \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE1_EN_MODE \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE1_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE1_EN_PORT \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE1_INT_PIN \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE2_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE2_DISABLE \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE2_ENABLE \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE2_EN_MASK \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE2_EN_MODE \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE2_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE2_EN_PORT \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/board\.h:[0-9]+: warning: Member XBEE2_INT_PIN \(macro definition\) of file board\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sensebox_samd21/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member INTERNAL_PERIPHERAL_PID \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member INTERNAL_PERIPHERAL_VID \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member MTD_0 \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member SERPENTE_NOR_FLAGS \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member SERPENTE_NOR_PAGES_PER_SECTOR \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member SERPENTE_NOR_PAGE_SIZE \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member SERPENTE_NOR_SECTOR_COUNT \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member SERPENTE_NOR_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member SERPENTE_NOR_SPI_CS \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member SERPENTE_NOR_SPI_DEV \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member SERPENTE_NOR_SPI_MODE \(macro definition\) of file board\.h is not documented\. -boards/serpente/include/board\.h:[0-9]+: warning: Member mtd0 \(variable\) of file board\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_PLL_MUL \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_USE_PLL \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member PWM_1_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan1_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/serpente/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/serpente/include/pwm_params\.h:[0-9]+: warning: Member SAUL_PWM_NO_DIMMER \(macro definition\) of file pwm_params\.h is not documented\. -boards/serpente/include/pwm_params\.h:[0-9]+: warning: Member saul_pwm_rgb_params\[\] \(variable\) of file pwm_params\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member BC_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member DISP_COM_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member DISP_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member DISP_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member DISP_SPI \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member SI7021_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member SI7021_I2C \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/board\.h:[0-9]+: warning: Member SI70XX_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3400a/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member BC_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member DISP_COM_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member DISP_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member DISP_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member DISP_SPI \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member SI7021_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member SI7021_I2C \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/board\.h:[0-9]+: warning: Member SI70XX_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFE \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3401a/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member BC_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member DISP_COM_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member DISP_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member DISP_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member DISP_SPI \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member SI7021_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member SI7021_I2C \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/board\.h:[0-9]+: warning: Member SI70XX_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFE \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slstk3402a/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member BMP280_I2C \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member BMX280_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member CCS811_I2C \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member CCS811_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member CCS811_PIC_ADDR \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member CCS811_PIC_EN_BIT \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member CCS811_PIC_WAKE_BIT \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member ENV_SENSE_PIC_ADDR \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member ENV_SENSE_PIC_BIT \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member ICM20648_ENABLED \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member ICM20648_PIC_ADDR \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member ICM20648_PIC_EN_BIT \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member ICM20648_SPI \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member PIC_I2C \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member PIC_I2C_ADDR \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member PIC_INT_WAKE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member RGB_LED1_ENABLED \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member RGB_LED1_EN_BIT \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member RGB_LED2_ENABLED \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member RGB_LED2_EN_BIT \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member RGB_LED3_ENABLED \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member RGB_LED3_EN_BIT \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member RGB_LED4_ENABLED \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member RGB_LED4_EN_BIT \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member RGB_LED_ADDR \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member RGB_LED_EN_BIT \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member SI1133_ENABLED \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member SI1133_I2C \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member SI7021_I2C \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member SI70XX_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member SI7210_ENABLED \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/board\.h:[0-9]+: warning: Member SI7210_I2C \(macro definition\) of file board\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFE \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sltb001a/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member BC_PIN \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member DISP_COM_PIN \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member DISP_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member DISP_POWER_PIN \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member DISP_SELECT_PIN \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member DISP_SPI \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member SI7021_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member SI7021_I2C \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/board\.h:[0-9]+: warning: Member SI70XX_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member DAC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member DAC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member PWM_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member dac_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member dac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member pwm_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/slwstk6220a/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member PWM_1_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member UART_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan1_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-autonomo/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/board\.h:[0-9]+: warning: Member RN2XX3_PARAM_PIN_RESET \(macro definition\) of file board\.h is not documented\. -boards/sodaq-explorer/include/board\.h:[0-9]+: warning: Member RN2XX3_PARAM_UART \(macro definition\) of file board\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-explorer/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member GPS_TIMEPULSE_MODE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member GPS_TIMEPULSE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member LORA_RESET_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member LORA_RESET_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member LORA_RESET_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member LORA_RESET_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member LORA_RESET_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/board\.h:[0-9]+: warning: Member LORA_RESET_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-one/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member GPS_TIMEPULSE_MODE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member GPS_TIMEPULSE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_BLUE_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_BLUE_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_BLUE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_BLUE_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_GREEN_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_GREEN_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_GREEN_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_GREEN_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_RED_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_RED_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_RED_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member LED_RED_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_DISABLE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_ENABLE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_ENABLE_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_ENABLE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_ENABLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_RESET_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_RESET_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_RESET_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_RESET_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_RESET_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_TOGGLE_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_TOGGLE_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_TOGGLE_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_TOGGLE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_TOGGLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_TX_EN_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_TX_EN_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_TX_EN_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_TX_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/board\.h:[0-9]+: warning: Member NB_IOT_TX_EN_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-aff/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member GPS_ENABLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member GPS_TIMEPULSE_MODE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member GPS_TIMEPULSE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member INT1_XL_MODE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member INT1_XL_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member INT2_XL_MODE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member INT2_XL_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member INT_MAG_MODE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member INT_MAG_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_BLUE_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_BLUE_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_BLUE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_BLUE_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_GREEN_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_GREEN_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_GREEN_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_GREEN_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_RED_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_RED_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_RED_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member LED_RED_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_ENABLE_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_ENABLE_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_ENABLE_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_ENABLE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_ENABLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_R4XX_PWR_ON_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_R4XX_PWR_ON_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_R4XX_PWR_ON_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_R4XX_PWR_ON_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_R4XX_PWR_ON_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_TX_ENABLE_MASK \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_TX_ENABLE_OFF \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_TX_ENABLE_ON \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_TX_ENABLE_PIN \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/board\.h:[0-9]+: warning: Member SARA_TX_ENABLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member ADC_GAIN_FACTOR_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sodaq-sara-sff/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/spark-core/include/board\.h:[0-9]+: warning: Member BUTTON1 \(macro definition\) of file board\.h is not documented\. -boards/spark-core/include/board\.h:[0-9]+: warning: Member CC3000_CS \(macro definition\) of file board\.h is not documented\. -boards/spark-core/include/board\.h:[0-9]+: warning: Member CC3000_EN \(macro definition\) of file board\.h is not documented\. -boards/spark-core/include/board\.h:[0-9]+: warning: Member CC3000_INT \(macro definition\) of file board\.h is not documented\. -boards/spark-core/include/board\.h:[0-9]+: warning: Member CC3000_SPI \(macro definition\) of file board\.h is not documented\. -boards/spark-core/include/board\.h:[0-9]+: warning: Member EXTFLASH \(macro definition\) of file board\.h is not documented\. -boards/spark-core/include/board\.h:[0-9]+: warning: Member EXTFLASH_SPI \(macro definition\) of file board\.h is not documented\. -boards/spark-core/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/spark-core/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/spark-core/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/spark-core/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/spark-core/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/spark-core/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/spark-core/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/spark-core/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/spark-core/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/spark-core/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3200/include/board\.h:[0-9]+: warning: Member BC_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3200/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/stk3200/include/board\.h:[0-9]+: warning: Member DISP_COM_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3200/include/board\.h:[0-9]+: warning: Member DISP_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3200/include/board\.h:[0-9]+: warning: Member DISP_POWER_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3200/include/board\.h:[0-9]+: warning: Member DISP_SELECT_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3200/include/board\.h:[0-9]+: warning: Member DISP_SPI \(macro definition\) of file board\.h is not documented\. -boards/stk3200/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3200/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3200/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3600/include/board\.h:[0-9]+: warning: Member BC_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3600/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/stk3600/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3600/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member DAC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member DAC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member PWM_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member dac_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member dac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member pwm_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3600/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3700/include/board\.h:[0-9]+: warning: Member BC_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3700/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/stk3700/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3700/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member DAC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member DAC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member PWM_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member dac_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member dac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member pwm_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stk3700/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f030f4-demo/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f0discovery/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/stm32f3discovery/include/board\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_MAG_PIN \(macro definition\) of file board\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member DAC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member dac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f3discovery/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f429i-disc1/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/arduino_board\.h:[0-9]+: warning: Member ARDUINO_LED \(macro definition\) of file arduino_board\.h is not documented\. -boards/stm32f4discovery/include/arduino_board\.h:[0-9]+: warning: Member arduino_pinmap\[\] \(variable\) of file arduino_board\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/stm32f4discovery/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member DAC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member dac_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f4discovery/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_4_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f769i-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f769i-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f769i-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f769i-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_0_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f769i-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f769i-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f769i-disco/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32l0538-disco/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32l0538-disco/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32l0538-disco/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32l0538-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32l0538-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32l0538-disco/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32l0538-disco/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32l0538-disco/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32l476g-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32l476g-disco/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32l476g-disco/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32l476g-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32l476g-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32l476g-disco/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32l476g-disco/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32mp157c-dk2/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32mp157c-dk2/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32mp157c-dk2/include/periph_conf\.h:[0-9]+: warning: Member UART_0_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32mp157c-dk2/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32mp157c-dk2/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32mp157c-dk2/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/teensy31/include/board\.h:[0-9]+: warning: Member LED0_BIT \(macro definition\) of file board\.h is not documented\. -boards/teensy31/include/board\.h:[0-9]+: warning: Member LED_PORT \(macro definition\) of file board\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_BUSCLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member LPTMR_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member PIT_BASECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member PIT_CONFIG \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member PIT_ISR_1 \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member PIT_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member clock_config \(variable\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/teensy31/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_CCA \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_FIFO \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_FIFOP \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_SFD \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_SPI_CLK \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_VREFEN \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member F_CPU \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member F_RC_OSCILLATOR \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member LED_OUT_REG \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member MSP430_HAS_DCOR \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member MSP430_HAS_EXTERNAL_CRYSTAL \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/board\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of file board\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CMCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE_RX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE_TX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_IF \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_ME \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_ME_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_CLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_MISO \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_MOSI \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_CHAN \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_ISR_CC0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_ISR_CCX \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_IE \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_IE_RX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_IE_TX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_IF \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_ME \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_ME_BITS \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_PORT \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_RX_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_RX_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_TX_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/telosb/include/periph_conf\.h:[0-9]+: warning: Member UART_TX_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/thingy52/include/board\.h:[0-9]+: warning: Member LIS2DH12_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/thingy52/include/board\.h:[0-9]+: warning: Member LPSXXX_PARAM_ADDR \(macro definition\) of file board\.h is not documented\. -boards/thingy52/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/thingy52/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/thingy52/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/thingy52/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/thingy52/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_14 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_15 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member GPS_RST_PIN \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member M_GPIO2_PIN \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member M_GPIO3_PIN \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CLK \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CS \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MISO \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MOSI \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_SPI \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member SI70XX_PARAM_ADDR \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member SI70XX_PARAM_I2C_DEV \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member SI70XX_SAUL_INFO \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member UB_M_RST_PIN \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/board\.h:[0-9]+: warning: Member UB_PWRON_PIN \(macro definition\) of group boards_ublox-c030-u201 is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member UART_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/ublox-c030-u201/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/usb-kw41z/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_DEV \(macro definition\) of file board\.h is not documented\. -boards/usb-kw41z/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_FREQ \(macro definition\) of file board\.h is not documented\. -boards/usb-kw41z/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_TYPE \(macro definition\) of file board\.h is not documented\. -boards/usb-kw41z/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_WIDTH \(macro definition\) of file board\.h is not documented\. -boards/usb-kw41z/include/board\.h:[0-9]+: warning: Member KINETIS_FOPT \(macro definition\) of file board\.h is not documented\. -boards/usb-kw41z/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/usb-kw41z/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_SETTING \(macro definition\) of file periph_conf\.h is not documented\. -boards/usb-kw41z/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/usb-kw41z/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/usb-kw41z/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_A7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_10 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_11 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_12 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_13 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_14 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_15 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_16 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_17 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_18 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_19 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_20 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_21 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_22 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_23 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_24 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_25 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_26 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_27 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_28 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_29 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_30 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_31 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_32 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_33 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_34 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_35 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_36 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_37 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_38 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_39 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_40 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_41 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_42 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_43 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_44 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_45 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_46 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_47 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_48 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_49 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_50 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_51 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_52 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_8 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_9 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A0 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A1 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A2 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A3 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A4 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A5 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A6 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/arduino_pinmap\.h:[0-9]+: warning: Member ARDUINO_PIN_A7 \(macro definition\) of file arduino_pinmap\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_DEV \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_FREQ \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_TYPE \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_WIDTH \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member CPU_ATMEGA_CLK_SCALE_INIT \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member LED_GREEN_OFF \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member LED_GREEN_ON \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member LED_GREEN_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member LED_PANIC \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member LED_RED_OFF \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member LED_RED_ON \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member LED_RED_TOGGLE \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX0_ENABLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX0_OFF \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX0_ON \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX0_PIN \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX0_PORT \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX1_ENABLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX1_OFF \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX1_ON \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX1_PIN \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX1_PORT \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX_PW_ENABLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX_PW_OFF \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX_PW_ON \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX_PW_PIN \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX_PW_PORT \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX_USB_XBEE_ENABLE_PORT \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX_USB_XBEE_OFF \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX_USB_XBEE_ON \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX_USB_XBEE_PIN \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member MUX_USB_XBEE_PORT \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member SET_MUX_AUX1_MODULE \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member SET_MUX_AUX2_MODULE \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member SET_MUX_GPS \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member SET_MUX_SOCKET0 \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member SET_MUX_SOCKET1 \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/board\.h:[0-9]+: warning: Member SET_MUX_USB_MODULE \(macro definition\) of file board\.h is not documented\. -boards/waspmote-pro/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member ANA0 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member ANA1 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member ANA2 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member ANA3 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member ANA4 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member ANA5 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member ANA6 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member BAT_MONITOR \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member BAT_MONITOR_PW \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member DIGITAL0 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member DIGITAL1 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member DIGITAL2 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member DIGITAL3 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member DIGITAL4 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member DIGITAL5 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member DIGITAL6 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member DIGITAL7 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member DIGITAL8 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member GPRS_PIN \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member GPRS_PW \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member GPS_PW \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member HIB_PIN \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member I2C_SCL \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member I2C_SDA \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member LED0 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member LED1 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member LOW_BAT_MON \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member MEM_PW \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member MUX_0 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member MUX_1 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member MUX_PW \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member MUX_RX \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member MUX_TX \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member MUX_USB_XBEE \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member RDY_ACC \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member RST_RTC \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member RTC_PW \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member RTC_SLEEP \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member SD_MISO \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member SD_MOSI \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member SD_PRESENT \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member SD_SCK \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member SD_SS \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member SENS_PW_3V3 \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member SENS_PW_5V \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member SOCKET0_SS \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member USB_XBEE_RX \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member USB_XBEE_TX \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member XBEE_MON \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member XBEE_PW \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/waspmote-pro/include/waspmote_pinmap\.h:[0-9]+: warning: Member XBEE_SLEEP \(macro definition\) of file waspmote_pinmap\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member EXTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member INTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/yarm/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/yunjia-nrf51822/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/yunjia-nrf51822/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/yunjia-nrf51822/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/yunjia-nrf51822/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/yunjia-nrf51822/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/yunjia-nrf51822/include/periph_conf\.h:[0-9]+: warning: Member UART_PIN_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/yunjia-nrf51822/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/yunjia-nrf51822/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/yunjia-nrf51822/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/z1/include/board-conf\.h:[0-9]+: warning: Member INFOMEM \(macro definition\) of file board-conf\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_CCA \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_CS \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_FIFO \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_FIFOP \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_RESET \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_SFD \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member CC2420_PARAM_VREFEN \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SET \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SLEEP \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member F_CPU \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member F_RC_OSCILLATOR \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member LED_OUT_REG \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member MSP430_HAS_DCOR \(macro definition\) of file board\.h is not documented\. -boards/z1/include/board\.h:[0-9]+: warning: Member MSP430_HAS_EXTERNAL_CRYSTAL \(macro definition\) of file board\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CMCLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member SPI_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE_RX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member SPI_IE_TX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member SPI_IF \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_CLK \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_MISO \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member SPI_PIN_MOSI \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member SPI_USE_USCI \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_CHAN \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_ISR_CC0 \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_ISR_CCX \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_BASE \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_IE \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_IE_RX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_IE_TX_BIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_IF \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_RX_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_RX_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_RX_PORT \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_TX_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_TX_PIN \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_TX_PORT \(macro definition\) of file periph_conf\.h is not documented\. -boards/z1/include/periph_conf\.h:[0-9]+: warning: Member UART_USE_USCI \(macro definition\) of file periph_conf\.h is not documented\. -boards/zigduino/include/board\.h:[0-9]+: warning: Member PIR_MOTION_MODE \(macro definition\) of file board\.h is not documented\. -boards/zigduino/include/board\.h:[0-9]+: warning: Member PIR_MOTION_PIN \(macro definition\) of file board\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT0 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT1 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT10 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT11 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT12 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT13 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT14 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT15 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT16 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT17 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT18 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT19 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT2 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT20 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT21 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT22 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT23 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT24 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT25 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT26 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT27 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT28 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT29 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT3 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT30 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT31 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT4 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT5 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT6 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT7 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT8 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/bitarithm\.h:[0-9]+: warning: Member BIT9 \(macro definition\) of file bitarithm\.h is not documented\. -core/include/log\.h:[0-9]+: warning: Member LOG_DEBUG\(\.\.\.\) \(macro definition\) of file log\.h is not documented\. -core/include/log\.h:[0-9]+: warning: Member LOG_ERROR\(\.\.\.\) \(macro definition\) of file log\.h is not documented\. -core/include/log\.h:[0-9]+: warning: Member LOG_INFO\(\.\.\.\) \(macro definition\) of file log\.h is not documented\. -core/include/log\.h:[0-9]+: warning: Member LOG_WARNING\(\.\.\.\) \(macro definition\) of file log\.h is not documented\. -core/include/macros/xtstr\.h:[0-9]+: warning: Member _XTSTR\(x\) \(macro definition\) of file xtstr\.h is not documented\. -core/include/sched\.h:[0-9]+: warning: Member thread_status_t \(enumeration\) of group core_sched is not documented\. -cpu/arm7_common/include/VIC\.h:[0-9]+: warning: Member FIQ32Mode \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/VIC\.h:[0-9]+: warning: Member F_Bit \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/VIC\.h:[0-9]+: warning: Member INTMode \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/VIC\.h:[0-9]+: warning: Member IRQ32Mode \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/VIC\.h:[0-9]+: warning: Member I_Bit \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/VIC\.h:[0-9]+: warning: Member SYS32Mode \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member BODPDM \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member BOGD \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member BORD \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR0I \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR0R \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR0S \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR1I \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR1R \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR1S \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR2I \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR2R \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR2S \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR3I \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR3R \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member MR3S \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCAD \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCAN1 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCAN2 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCEMC \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCENET \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCGPDMA \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCI2C0 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCI2C1 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCI2C2 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCI2S \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCPWM1 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCRTC \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCSDC \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCSPI \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCSSP0 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCSSP1 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCTIM0 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCTIM1 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCTIM2 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCTIM3 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCUART0 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCUART1 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCUART2 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCUART3 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PCUSB \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PM0 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PM1 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PM2 \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PM_DEEP_POWERDOWN \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PM_IDLE \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PM_POWERDOWN \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/arm7_common\.h:[0-9]+: warning: Member PM_SLEEP \(macro definition\) of group cpu_arm7_common is not documented\. -cpu/arm7_common/include/irq_arch\.h:[0-9]+: warning: Member IRQ_MASK \(macro definition\) of file irq_arch\.h is not documented\. -cpu/arm7_common/include/irq_arch\.h:[0-9]+: warning: Member __get_cpsr\(void\) \(function\) of file irq_arch\.h is not documented\. -cpu/arm7_common/include/irq_arch\.h:[0-9]+: warning: Member __set_cpsr\(unsigned val\) \(function\) of file irq_arch\.h is not documented\. -cpu/arm7_common/include/irq_arch\.h:[0-9]+: warning: Member irq_disable\(void\) \(function\) of file irq_arch\.h is not documented\. -cpu/arm7_common/include/irq_arch\.h:[0-9]+: warning: Member irq_enable\(void\) \(function\) of file irq_arch\.h is not documented\. -cpu/arm7_common/include/irq_arch\.h:[0-9]+: warning: Member irq_is_enabled\(void\) \(function\) of file irq_arch\.h is not documented\. -cpu/arm7_common/include/irq_arch\.h:[0-9]+: warning: Member irq_is_in\(void\) \(function\) of file irq_arch\.h is not documented\. -cpu/arm7_common/include/irq_arch\.h:[0-9]+: warning: Member irq_restore\(unsigned oldCPSR\) \(function\) of file irq_arch\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_CHANNEL_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1281/include/periph_cpu\.h:[0-9]+: warning: Member EEPROM_SIZE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega1281/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PIN_MASK \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega1281/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PORT_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_CHANNEL_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega1284p/include/periph_cpu\.h:[0-9]+: warning: Member EEPROM_SIZE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega1284p/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PIN_MASK \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega1284p/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PORT_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_CHANNEL_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega128rfa1/include/periph_cpu\.h:[0-9]+: warning: Member EEPROM_SIZE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega128rfa1/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PIN_MASK \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega128rfa1/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PORT_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_CHANNEL_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega2560/include/periph_cpu\.h:[0-9]+: warning: Member EEPROM_SIZE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega2560/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PIN_MASK \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega2560/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PORT_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_2_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_CHANNEL_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega256rfr2/include/periph_cpu\.h:[0-9]+: warning: Member EEPROM_SIZE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega256rfr2/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PIN_MASK \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega256rfr2/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PORT_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega328p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega328p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega328p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega328p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega328p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega328p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_CHANNEL_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega328p/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega328p/include/periph_cpu\.h:[0-9]+: warning: Member EEPROM_SIZE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega328p/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PIN_MASK \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega328p/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PORT_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_0_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1 \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_FLAG \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRA \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRB \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_ISRC \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_1_MASK \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_CHANNEL_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/default_timer_config\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file default_timer_config\.h is not documented\. -cpu/atmega32u4/include/periph_cpu\.h:[0-9]+: warning: Member EEPROM_SIZE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega32u4/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PIN_MASK \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega32u4/include/periph_cpu\.h:[0-9]+: warning: Member I2C_PORT_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atmega_common/include/atmega_gpio\.h:[0-9]+: warning: Member ATMEGA_GPIO_BASE_PORT_A \(macro definition\) of file atmega_gpio\.h is not documented\. -cpu/atmega_common/include/atmega_gpio\.h:[0-9]+: warning: Member ATMEGA_GPIO_OFFSET_PIN_PIN \(macro definition\) of file atmega_gpio\.h is not documented\. -cpu/atmega_common/include/atmega_gpio\.h:[0-9]+: warning: Member ATMEGA_GPIO_OFFSET_PIN_PORT \(macro definition\) of file atmega_gpio\.h is not documented\. -cpu/atmega_common/include/atmega_gpio\.h:[0-9]+: warning: Member ATMEGA_GPIO_OFFSET_PORT_H \(macro definition\) of file atmega_gpio\.h is not documented\. -cpu/atmega_common/include/atmega_regs_common\.h:[0-9]+: warning: Member REG16 \(macro definition\) of file atmega_regs_common\.h is not documented\. -cpu/atmega_common/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/atmega_common/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_DEFAULT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/atmega_common/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_IDLE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/atmega_common/include/periph_cpu_common\.h:[0-9]+: warning: Member CPUID_LEN \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/atmega_common/include/periph_cpu_common\.h:[0-9]+: warning: Member NWDT_TIME_LOWER_LIMIT \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/atmega_common/include/periph_cpu_common\.h:[0-9]+: warning: Member NWDT_TIME_UPPER_LIMIT \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/atmega_common/include/periph_cpu_common\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/atmega_common/include/periph_cpu_common\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/atmega_common/include/periph_cpu_common\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/atmega_common/include/periph_cpu_common\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/atmega_common/include/periph_cpu_common\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/atmega_common/include/periph_cpu_common\.h:[0-9]+: warning: Member timer_div_t \(enumeration\) of file periph_cpu_common\.h is not documented\. -cpu/atxmega/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/atxmega/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_DEFAULT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/atxmega/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_IDLE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/atxmega/include/cpu_ebi\.h:[0-9]+: warning: Member CPU_EBI_H \(macro definition\) of file cpu_ebi\.h is not documented\. -cpu/atxmega/include/cpu_ebi\.h:[0-9]+: warning: Member HUGEMEM_NULL \(macro definition\) of file cpu_ebi\.h is not documented\. -cpu/atxmega/include/cpu_ebi\.h:[0-9]+: warning: Member ebi_init\(void\) \(function\) of file cpu_ebi\.h is not documented\. -cpu/atxmega/include/cpu_ebi\.h:[0-9]+: warning: Member hugemem_ptr_t \(typedef\) of file cpu_ebi\.h is not documented\. -cpu/atxmega/include/cpu_pm\.h:[0-9]+: warning: Member pm_periph_disable\(pwr_reduction_t pwr\) \(function\) of file cpu_pm\.h is not documented\. -cpu/atxmega/include/cpu_pm\.h:[0-9]+: warning: Member pm_periph_enable\(pwr_reduction_t pwr\) \(function\) of file cpu_pm\.h is not documented\. -cpu/atxmega/include/cpu_pm\.h:[0-9]+: warning: Member pm_periph_power_off\(void\) \(function\) of file cpu_pm\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member CPUID_LEN \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member GPIO_MODE \(enumeration\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member GPIO_PIN\(x, y\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member HAVE_I2C_SPEED_T \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member PM_NUM_MODES \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member cpu_int_lvl_t \(enumeration\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member gpio_flank_t \(enumeration\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member gpio_mode_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member gpio_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member i2c_speed_t \(enumeration\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member spi_clk_t \(enumeration\) of file periph_cpu\.h is not documented\. -cpu/atxmega/include/periph_cpu\.h:[0-9]+: warning: Member spi_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/cc2538_eui_primary\.h:[0-9]+: warning: Member EUI64_PROVIDER_FUNC \(macro definition\) of file cc2538_eui_primary\.h is not documented\. -cpu/cc2538/include/cc2538_eui_primary\.h:[0-9]+: warning: Member EUI64_PROVIDER_INDEX \(macro definition\) of file cc2538_eui_primary\.h is not documented\. -cpu/cc2538/include/cc2538_eui_primary\.h:[0-9]+: warning: Member EUI64_PROVIDER_TYPE \(macro definition\) of file cc2538_eui_primary\.h is not documented\. -cpu/cc2538/include/cc2538_gpio\.h:[0-9]+: warning: Member IOC_PXX_OVER \(macro definition\) of group cpu_cc2538_gpio is not documented\. -cpu/cc2538/include/cc2538_gpio\.h:[0-9]+: warning: Member IOC_PXX_SEL \(macro definition\) of group cpu_cc2538_gpio is not documented\. -cpu/cc2538/include/cc2538_gpio\.h:[0-9]+: warning: Member cc2538_ioc_pin_t \(enumeration\) of group cpu_cc2538_gpio is not documented\. -cpu/cc2538/include/cc2538_gpio\.h:[0-9]+: warning: Member cc2538_ioc_sel_t \(enumeration\) of group cpu_cc2538_gpio is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member ABS_DIFF\(x, y\) \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member BIT\(n\) \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member BOOLEAN\(x\) \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_AUTOCRC_LEN \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_CORR_VAL_MASK \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_CORR_VAL_MAX \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_CORR_VAL_MIN \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_CRC_BIT_MASK \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_MAX_FREQ \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_MIN_FREQ \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_PACKET_LENGTH_SIZE \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_RF_CHANNEL_DEFAULT \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_RF_FIFO_SIZE \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CC2538_RF_MAX_DATA_LEN \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_0 \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_1 \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_2 \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_SIG_0_PCX \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_SIG_1_PCX \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member CONFIG_CC2538_RF_OBS_SIG_2_PCX \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member GET_BYTE\(buffer, index\) \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member IEEE802154_CHAN2FREQ\(chan\) \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member IEEE802154_FREQ2CHAN\(freq\) \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member NOT\(x\) \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member NUM_POWER_LEVELS \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member RFCORE_ASSERT\(expr\) \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member RFCORE_FLUSH_RECEIVE_FIFO\(\) \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf\.h:[0-9]+: warning: Member RFCORE_WAIT_UNTIL\(expr\) \(macro definition\) of file cc2538_rf\.h is not documented\. -cpu/cc2538/include/cc2538_rf_internal\.h:[0-9]+: warning: Member CC2538_RX_FIFO_ADDR \(macro definition\) of file cc2538_rf_internal\.h is not documented\. -cpu/cc2538/include/cc2538_rf_internal\.h:[0-9]+: warning: Member CC2538_TX_FIFO_ADDR \(macro definition\) of file cc2538_rf_internal\.h is not documented\. -cpu/cc2538/include/cc2538_rf_internal\.h:[0-9]+: warning: Member RFCORE_ASSERT_failure\(const char \*expr, const char \*func, int line\) \(function\) of file cc2538_rf_internal\.h is not documented\. -cpu/cc2538/include/cc2538_ssi\.h:[0-9]+: warning: Member SSI_CC_CS_DSEN \(macro definition\) of group cpu_cc2538 is not documented\. -cpu/cc2538/include/cc2538_ssi\.h:[0-9]+: warning: Member SSI_CC_CS_IODIV \(macro definition\) of group cpu_cc2538 is not documented\. -cpu/cc2538/include/cpu_conf\.h:[0-9]+: warning: Member CPU_DEFAULT_IRQ_PRIO \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/cc2538/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/cc2538/include/cpu_conf\.h:[0-9]+: warning: Member CPU_HAS_BITBAND \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/cc2538/include/cpu_conf\.h:[0-9]+: warning: Member CPU_IRQ_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/cc2538/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_CC2538_USE_CCA_PAGE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/cc2538/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/cc2538/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/cc2538/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/cc2538/include/cpu_conf\.h:[0-9]+: warning: Member FLASH_ERASE_STATE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/cc2538/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_delayTx \(macro definition\) of file openwsn_defs\.h is not documented\. -cpu/cc2538/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxRxAckPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -cpu/cc2538/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxRxDataPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -cpu/cc2538/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxTxAckPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -cpu/cc2538/include/openwsn_defs\.h:[0-9]+: warning: Member PORT_maxTxDataPrepare \(macro definition\) of file openwsn_defs\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member HAVE_GPIO_T \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_LOWER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_UPPER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member PM_NUM_MODES \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member RTT_DEV \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member RTT_IRQ \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member RTT_IRQ_PRIO \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member RTT_ISR \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_OFFSET \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/cc2538/include/periph_cpu\.h:[0-9]+: warning: Member gpio_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_aux\.h:[0-9]+: warning: Member MODCLKEN0_AIODIO0_EN \(macro definition\) of file cc26x0_cc13x0_aux\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_aux\.h:[0-9]+: warning: Member MODCLKEN0_AIODIO1_EN \(macro definition\) of file cc26x0_cc13x0_aux\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_aux\.h:[0-9]+: warning: Member MODCLKEN0_ANAIF_EN \(macro definition\) of file cc26x0_cc13x0_aux\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_aux\.h:[0-9]+: warning: Member MODCLKEN0_AUX_ADI4_EN \(macro definition\) of file cc26x0_cc13x0_aux\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_aux\.h:[0-9]+: warning: Member MODCLKEN0_AUX_DDI0_OSC_EN \(macro definition\) of file cc26x0_cc13x0_aux\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_aux\.h:[0-9]+: warning: Member MODCLKEN0_TDC_EN \(macro definition\) of file cc26x0_cc13x0_aux\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_aux\.h:[0-9]+: warning: Member MODCLKEN0_TIMER_EN \(macro definition\) of file cc26x0_cc13x0_aux\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AONWUC_CTL0_AUX_SRAM_ERASE \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AONWUC_CTL0_MCU_SRAM_ERASE \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AONWUC_CTL0_PWR_DWN_DIS \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AONWUC_CTL1_MCU_RESET_SRC \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AONWUC_CTL1_MCU_WARM_RESET \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCFG_RAM_RET_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCLK_PWR_DWN_SRC_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCLK_PWR_DWN_SRC_pos \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCLK_SCLK_HF_DIV_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCLK_SCLK_HF_DIV_pos \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCLK_SRC_HF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCLK_SRC_LF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCLK_SRC_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCTL_AUX_FORCE_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCTL_RESET_REQ \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCTL_SCE_RUN_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member AUXCTL_SWEV \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member CLKLOADCTL_LOADDONE \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_ACLK_REF_SRC_SEL_RCOSC_HF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_ACLK_REF_SRC_SEL_RCOSC_LF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_ACLK_REF_SRC_SEL_RCOSC_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_ACLK_REF_SRC_SEL_XOSC_HF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_ACLK_REF_SRC_SEL_XOSC_LF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_ACLK_TDC_SRC_SEL_RCOSC_HF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_ACLK_TDC_SRC_SEL_RCOSC_LF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_ACLK_TDC_SRC_SEL_RCOSC_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_ACLK_TDC_SRC_SEL_XOSC_HF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_BYPASS_RCOSC_LF_CLK_QUAL \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_BYPASS_XOSC_LF_CLK_QUAL \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_DOUBLER_START_DURATION_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_HF_RCOSC \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_HF_XOSC \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_LF_RCOSC \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_LF_XOSC \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_XTAL_IS_24M \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member GPIOCLKGDS_CLK_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member GPIOCLKGR_CLK_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member GPIOCLKGS_CLK_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member I2CCLKGDS_CLK_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member I2CCLKGR_CLK_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member I2CCLKGS_CLK_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member JTAGCFG_JTAG_PD_FORCE_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member MCUCFG_SRAM_FIXED_WU_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member MCUCFG_SRAM_RET_B0 \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member MCUCFG_SRAM_RET_B01 \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member MCUCFG_SRAM_RET_B012 \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member MCUCFG_SRAM_RET_B0124 \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member MCUCFG_SRAM_RET_OFF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member MCUCFG_SRAM_VIRT_OFF \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member MCUCLK_PWR_DWN_SRC_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member MCUCLK_RCOSC_HF_CAL_DONE \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member OSCCFG_PER_E_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member OSCCFG_PER_M_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDCTL0_PERIPH_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDCTL0_RFC_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDCTL0_SERIAL_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDCTL1_CPU_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDCTL1_RFC_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDCTL1_VIMS_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDSTAT0_PERIPH_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDSTAT0_RFC_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDSTAT0_SERIAL_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDSTAT1_CPU_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDSTAT1_RFC_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PDSTAT1_VIMS_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PWRSTAT_AUX_BUS_CONNECTED \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PWRSTAT_AUX_PD_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PWRSTAT_AUX_PWR_DNW \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PWRSTAT_AUX_RESET_DONE \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PWRSTAT_JTAG_PD_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member PWRSTAT_MCU_PD_ON \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member RECHARGECFG_ADAPTIVE_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member RECHARGECFG_C1_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member RECHARGECFG_C2_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member RECHARGECFG_MAX_PER_E_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member RECHARGECFG_MAX_PER_M_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member RECHARGECFG_PER_E_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member RECHARGECFG_PER_M_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member RECHARGESTAT_MAX_USED_PER_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member RECHARGESTAT_VDDR_SMPLS_mask \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member SHUTDOWN_EN \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member UARTCLKGDS_CLK_EN_UART0 \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member UARTCLKGR_CLK_EN_UART0 \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x0_cc13x0/include/cc26x0_cc13x0_prcm\.h:[0-9]+: warning: Member UARTCLKGS_CLK_EN_UART0 \(macro definition\) of file cc26x0_cc13x0_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_aux\.h:[0-9]+: warning: Member ADI_4_AUX_COMP_LPM_BIAS_WIDTH_TRIM_s \(macro definition\) of file cc26x2_cc13x2_aux\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_aux\.h:[0-9]+: warning: Member ADI_4_AUX_LPMBIAS_LPM_TRIM_IOUT_m \(macro definition\) of file cc26x2_cc13x2_aux\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_aux\.h:[0-9]+: warning: Member ADI_4_AUX_LPMBIAS_LPM_TRIM_IOUT_s \(macro definition\) of file cc26x2_cc13x2_aux\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_aux\.h:[0-9]+: warning: Member AUX_SYSIF_OPMODEREQ_REQ_A \(macro definition\) of file cc26x2_cc13x2_aux\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_aux\.h:[0-9]+: warning: Member AUX_SYSIF_OPMODEREQ_REQ_LP \(macro definition\) of file cc26x2_cc13x2_aux\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_aux\.h:[0-9]+: warning: Member AUX_SYSIF_OPMODEREQ_REQ_PDA \(macro definition\) of file cc26x2_cc13x2_aux\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_fcfg\.h:[0-9]+: warning: Member FCFG1_DAC_BIAS_CNF_LPM_BIAS_BACKUP_EN \(macro definition\) of file cc26x2_cc13x2_fcfg\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_fcfg\.h:[0-9]+: warning: Member FCFG1_DAC_BIAS_CNF_LPM_BIAS_WIDTH_TRIM_m \(macro definition\) of file cc26x2_cc13x2_fcfg\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_fcfg\.h:[0-9]+: warning: Member FCFG1_DAC_BIAS_CNF_LPM_BIAS_WIDTH_TRIM_s \(macro definition\) of file cc26x2_cc13x2_fcfg\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_fcfg\.h:[0-9]+: warning: Member FCFG1_DAC_BIAS_CNF_LPM_TRIM_IOUT_s \(macro definition\) of file cc26x2_cc13x2_fcfg\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member AON_PMCTL_RESETCTL_BOOT_DET_0_CLR_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member AON_PMCTL_RESETCTL_BOOT_DET_0_SET_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member AON_PMCTL_RESETCTL_BOOT_DET_0_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member AON_PMCTL_RESETCTL_BOOT_DET_0_s \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member AON_PMCTL_RESETCTL_BOOT_DET_1_CLR_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member AON_PMCTL_RESETCTL_BOOT_DET_1_SET_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member AON_PMCTL_RESETCTL_BOOT_DET_1_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member AON_PMCTL_RESETCTL_MCU_WARM_RESET_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member CLKLOADCTL_LOADDONE \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_ACLK_TDC_SRC_SEL \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_BYPASS_RCOSC_LF_CLK_QUAL \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_BYPASS_XOSC_LF_CLK_QUAL \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_CLK_DCDC_SRC_SEL_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_CLK_LOSS_EN \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_DOUBLER_RESET_DURATION \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_DOUBLER_START_DURATION \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_HPOSC_MODE_EN \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_RCOSC_LF_TRIMMED \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_SCLK_HF_SRC_SEL_RCOSC \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_SCLK_HF_SRC_SEL_XOSC \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_SCLK_HF_SRC_SEL_s \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_s \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_XOSC_HF_POWER_MODE \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_XOSC_LF_DIG_BYPASS \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_CTL0_XTAL_IS_24M \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_STAT0_PENDINGSCLKHFSWITCHING \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_STAT0_SCLK_HF_SRC_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_STAT0_SCLK_HF_SRC_s \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_STAT0_SCLK_LF_SRC_m \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_0_OSC_STAT0_SCLK_LF_SRC_s \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_CLR \(macro definition\) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_DIR \(macro definition\) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_MASK16B \(macro definition\) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_MASK4B \(macro definition\) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_MASK8B \(macro definition\) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member DDI_SET \(macro definition\) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member GPIOCLKGDS_CLK_EN \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member GPIOCLKGR_CLK_EN \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member GPIOCLKGS_CLK_EN \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member I2CCLKGDS_CLK_EN \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member I2CCLKGR_CLK_EN \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member I2CCLKGS_CLK_EN \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDCTL0_PERIPH_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDCTL0_RFC_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDCTL0_SERIAL_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDCTL1_CPU_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDCTL1_RFC_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDCTL1_VIMS_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDSTAT0_PERIPH_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDSTAT0_RFC_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDSTAT0_SERIAL_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDSTAT1_CPU_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDSTAT1_RFC_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member PDSTAT1_VIMS_ON \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member UARTCLKGDS_CLK_EN_UART0 \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member UARTCLKGDS_CLK_EN_UART1 \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member UARTCLKGR_CLK_EN_UART0 \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member UARTCLKGR_CLK_EN_UART1 \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member UARTCLKGS_CLK_EN_UART0 \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_prcm\.h:[0-9]+: warning: Member UARTCLKGS_CLK_EN_UART1 \(macro definition\) of file cc26x2_cc13x2_prcm\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_after_cold_reset_wakeup_from_shutdown_cfg2 \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_after_cold_reset_wakeup_from_shutdown_cfg3 \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_adc_sh_mode_en \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_adc_sh_vbuf_en \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_ampcomp_ctrl \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_ampcomp_th1 \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_ampcomp_th2 \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_anabypass_value1 \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_dblr_loop_filter_reset_voltage \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_radc_ext_cfg \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_rc_osc_lf_ibias_trim \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_rc_osc_lf_rtune_ctune_trim \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_xosc_hf_ctl \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_xosc_hf_fast_start \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_xosc_hf_ibiastherm \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_get_trim_for_xosc_lf_regulator_and_cmirrwr_ratio \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_set_aon_rtc_sub_sec_inc \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_set_cache_mode_according_to_ccfg_setting \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26x2_cc13x2/include/cc26x2_cc13x2_setup\.h:[0-9]+: warning: Member rom_setup_step_vddr_trim_to \(macro definition\) of file cc26x2_cc13x2_setup\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx\.h:[0-9]+: warning: Member ADI_CLR \(macro definition\) of file cc26xx_cc13xx\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx\.h:[0-9]+: warning: Member ADI_MASK16B \(macro definition\) of file cc26xx_cc13xx\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx\.h:[0-9]+: warning: Member ADI_MASK4B \(macro definition\) of file cc26xx_cc13xx\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx\.h:[0-9]+: warning: Member ADI_MASK8B \(macro definition\) of file cc26xx_cc13xx\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx\.h:[0-9]+: warning: Member ADI_SET \(macro definition\) of file cc26xx_cc13xx\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_adi\.h:[0-9]+: warning: Member ADI_3_REFSYS_AUX_DEBUG_LPM_BIAS_BACKUP_EN \(macro definition\) of file cc26xx_cc13xx_adi\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_BL_CONFIG_BL_ENABLE_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_BL_CONFIG_BL_ENABLE_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_BL_CONFIG_BL_LEVEL_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_BL_CONFIG_BL_LEVEL_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_BL_CONFIG_BL_PIN_NUMBER_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_BL_CONFIG_BL_PIN_NUMBER_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_BL_CONFIG_BOOTLOADER_ENABLE_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_BL_CONFIG_BOOTLOADER_ENABLE_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_CCFG_TAP_DAP_0_CPU_DAP_ENABLE_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_CCFG_TAP_DAP_0_CPU_DAP_ENABLE_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_CCFG_TAP_DAP_0_PWRPROF_TAP_ENABLE_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_CCFG_TAP_DAP_0_PWRPROF_TAP_ENABLE_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_CCFG_TAP_DAP_0_TEST_TAP_ENABLE_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_CCFG_TAP_DAP_0_TEST_TAP_ENABLE_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_CCFG_TI_OPTIONS_TI_FA_ENABLE_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_CCFG_TI_OPTIONS_TI_FA_ENABLE_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_ERASE_CONF_BANK_ERASE_DIS_N_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_ERASE_CONF_BANK_ERASE_DIS_N_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_ERASE_CONF_CHIP_ERASE_DIS_N_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_ERASE_CONF_CHIP_ERASE_DIS_N_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_EXT_LF_CLK_DIO_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_EXT_LF_CLK_RTC_INCREMENT_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_EXT_LF_CLK_RTC_INCREMENT_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_ALT_DCDC_DITHER_EN_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_ALT_DCDC_DITHER_EN_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_ALT_DCDC_IPEAK_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_ALT_DCDC_IPEAK_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_ALT_DCDC_VMIN_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_ALT_DCDC_VMIN_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_DELTA_IBIAS_INIT_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_DELTA_IBIAS_INIT_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_DELTA_IBIAS_OFFSET_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_DELTA_IBIAS_OFFSET_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_TCXO_MAX_START_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_TCXO_MAX_START_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_TCXO_TYPE_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_TCXO_TYPE_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_XOSC_MAX_START_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_1_XOSC_MAX_START_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_DCDC_ACTIVE_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_DCDC_ACTIVE_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_DCDC_RECHARGE_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_DCDC_RECHARGE_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_HF_COMP_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_HF_COMP_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_RTC_COMP_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_RTC_COMP_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_SCLK_LF_OPTION_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_SCLK_LF_OPTION_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDR_CAP_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDR_CAP_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDR_EXT_LOAD \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDR_EXT_LOAD_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDR_EXT_LOAD_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDR_TRIM_SLEEP_DELTA_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDR_TRIM_SLEEP_DELTA_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDR_TRIM_SLEEP_TC_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDR_TRIM_SLEEP_TC_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDS_BOD_LEVEL \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDS_BOD_LEVEL_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_VDDS_BOD_LEVEL_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_XOSC_CAPARRAY_DELTA_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_XOSC_CAPARRAY_DELTA_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_XOSC_CAP_MOD_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_XOSC_CAP_MOD_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_XOSC_FREQ_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_MODE_CONF_XOSC_FREQ_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DISABLE_FLAGS_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DISABLE_FLAGS_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_ALT_DCDC_SETTING \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_ALT_DCDC_SETTING_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_ALT_DCDC_SETTING_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_GPRAM_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_GPRAM_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_TCXO_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_TCXO_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_XOSC_OVR_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_XOSC_OVR_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_SIZE_OF_CCFG_m \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ccfg\.h:[0-9]+: warning: Member CCFG_SIZE_AND_DIS_FLAGS_SIZE_OF_CCFG_s \(macro definition\) of file cc26xx_cc13xx_ccfg\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT1 \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT2 \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT3 \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CFG_16T \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CFG_32RTC \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_RTCEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TAEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TAEVENT_BOTH \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TAEVENT_NEG \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TAEVENT_POS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TAPWML_INV \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TASTALL \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TBEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TBEVENT_BOTH \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TBEVENT_NEG \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TBEVENT_POS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TBPWML_INV \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_CTL_TBSTALL \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_DMAEV_CAEDMAEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_DMAEV_CAMDMAEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_DMAEV_CBEDMAEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_DMAEV_CBMDMAEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_DMAEV_RTCDMAEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_DMAEV_TAMDMAEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_DMAEV_TATODMAEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_DMAEV_TBMDMAEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_DMAEV_TBTODMAEN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_CAECINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_CAMCINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_CBECINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_CBMCINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_DMACINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_RTCCINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_TAMCINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_TATOCINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_TBMCINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_TBTOCINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_ICLR_WUCINT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_CAEIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_CAMIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_CBEIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_CBMIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_DMAAIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_DMABIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_RTCIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_TAMIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_TATOIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_TBMIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_TBTOIM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_IMR_WUMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_CAEMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_CAMMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_CBEMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_CBMMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_DMAMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_RTCMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_TAMMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_TATOMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_TBMMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_TBTOMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_MIS_WUMIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_CAERIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_CAMRIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_CBERIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_CBMRIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_DMARIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_RTCRIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_TAMRIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_TATORIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_TBMRIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_TBTORIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_RIS_WURIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_SYNC_SYNC1_A \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_SYNC_SYNC1_B \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_SYNC_SYNC2_A \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_SYNC_SYNC2_B \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_SYNC_SYNC3_A \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_SYNC_SYNC3_B \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_SYNC_SYNC4_A \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_SYNC_SYNC4_B \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TCACT_CLR_NOW_SET_TO \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TCACT_CLR_NOW_TGL_TO \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TCACT_CLR_TO \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TCACT_DIS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TCACT_SET_NOW_CLR_TO \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TCACT_SET_NOW_TGL_TO \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TCACT_SET_TO \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TCACT_TGL_TO \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXAMS_CAPTCOMP \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXAMS_PWM \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXCDIR_DOWN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXCDIR_UP \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXCIN \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXCM_EDGECNT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXCM_EDGETIME \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXILD_CLOCK \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXILD_TIMEOUT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXMIE \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXMRSU \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXMR_CAPTURE \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXMR_ONE_SHOT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXMR_PERIODIC \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXPLO \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXPWMIE \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXSNAPS \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_gpt\.h:[0-9]+: warning: Member GPT_TXMR_TXWOT \(macro definition\) of file cc26xx_cc13xx_gpt\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_fletcher32\(a, b, c\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_get_chipid\(\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_get_flashsize\(\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_hf_source_safe_switch\(\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_max_value\(a, b\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_mean_value\(a, b\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_min_value\(a, b\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_reset_device\(\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_select_adc_compb_input\(a\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_select_compa_input\(a\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_select_compa_ref\(a\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_select_compb_ref\(a\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_hard_api\.h:[0-9]+: warning: Member rom_hapi_std_deviation_value\(a, b\) \(macro definition\) of file cc26xx_cc13xx_hard_api\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ioc\.h:[0-9]+: warning: Member AON_IOC_CLK32KCTL_OEN \(macro definition\) of file cc26xx_cc13xx_ioc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ioc\.h:[0-9]+: warning: Member IOCFG_HYST_ENABLE \(macro definition\) of file cc26xx_cc13xx_ioc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ioc\.h:[0-9]+: warning: Member IOCFG_INPUT_ENABLE \(macro definition\) of file cc26xx_cc13xx_ioc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ioc\.h:[0-9]+: warning: Member IOCFG_WUCFG_HIGH \(macro definition\) of file cc26xx_cc13xx_ioc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_ioc\.h:[0-9]+: warning: Member IOCFG_WUCFG_LOW \(macro definition\) of file cc26xx_cc13xx_ioc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_rfc\.h:[0-9]+: warning: Member PWMCLKEN_CPE \(macro definition\) of file cc26xx_cc13xx_rfc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_rfc\.h:[0-9]+: warning: Member PWMCLKEN_CPERAM \(macro definition\) of file cc26xx_cc13xx_rfc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_rfc\.h:[0-9]+: warning: Member PWMCLKEN_FSCA \(macro definition\) of file cc26xx_cc13xx_rfc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_rfc\.h:[0-9]+: warning: Member PWMCLKEN_MDM \(macro definition\) of file cc26xx_cc13xx_rfc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_rfc\.h:[0-9]+: warning: Member PWMCLKEN_MDMRAM \(macro definition\) of file cc26xx_cc13xx_rfc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_rfc\.h:[0-9]+: warning: Member PWMCLKEN_PHA \(macro definition\) of file cc26xx_cc13xx_rfc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_rfc\.h:[0-9]+: warning: Member PWMCLKEN_RAT \(macro definition\) of file cc26xx_cc13xx_rfc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_rfc\.h:[0-9]+: warning: Member PWMCLKEN_RFC \(macro definition\) of file cc26xx_cc13xx_rfc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_rfc\.h:[0-9]+: warning: Member PWMCLKEN_RFERAM \(macro definition\) of file cc26xx_cc13xx_rfc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_rfc\.h:[0-9]+: warning: Member RFACKIFG_ACKFLAG \(macro definition\) of file cc26xx_cc13xx_rfc\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_CTL_CTSEN \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_CTL_LBE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_CTL_RTS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_CTL_RTSEN \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_CTL_RXE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_CTL_TXE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_CTL_UARTEN \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_DR_BE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_DR_FE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_DR_OE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_DR_PE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_ECR_BE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_ECR_FE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_ECR_OE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_ECR_PE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_FR_BUSY \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_FR_CTS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_FR_RXFE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_FR_RXFF \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_FR_TXFE \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_FR_TXFF \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IFLS_RXSEL_1_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IFLS_RXSEL_2_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IFLS_RXSEL_4_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IFLS_RXSEL_6_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IFLS_RXSEL_7_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IFLS_TXSEL_1_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IFLS_TXSEL_2_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IFLS_TXSEL_4_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IFLS_TXSEL_6_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IFLS_TXSEL_7_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IMSC_BEIM \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IMSC_CTSMIM \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IMSC_FEIM \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IMSC_OEIM \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IMSC_PEIM \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IMSC_RTIM \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IMSC_RXIM \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_IMSC_TXIM \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_LCRH_EPS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_LCRH_FEN \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_LCRH_PEN \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_LCRH_SPS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_LCRH_STP2 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_LCRH_WLEN_5 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_LCRH_WLEN_6 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_LCRH_WLEN_7 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_LCRH_WLEN_8 \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_LCRH_WLEN_mask \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_MIS_BEMIS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_MIS_CTSMMIS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_MIS_FEMIS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_MIS_OEMIS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_MIS_PEMIS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_MIS_RTMIS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_MIS_RXMIS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_uart\.h:[0-9]+: warning: Member UART_MIS_TXMIS \(macro definition\) of group cpu_cc26xx_cc13xx_definitions is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member FLASH_CFG_DIS_EFUSECLK \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member FLASH_FPAC1_PSLEEPTDIS_m \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member FLASH_FPAC1_PSLEEPTDIS_s \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_ARB_CFG \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_ARB_CFG_m \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_DYN_CG_EN \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_DYN_CG_EN_m \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_IDCODE_LB_DIS \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_IDCODE_LB_DIS_m \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_MODE_CACHE \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_MODE_GPRAM \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_MODE_OFF \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_MODE_SPLIT \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_MODE_m \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_PREF_EN \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_PREF_EN_m \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_STATS_CLR_m \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_STATS_EN \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_STATS_EN_m \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_SYSBUS_LB_DIS \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_CTL_SYSBUS_LB_DIS_m \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cc26xx_cc13xx_vims\.h:[0-9]+: warning: Member VIMS_STAT_MODE_CHANGING \(macro definition\) of file cc26xx_cc13xx_vims\.h is not documented\. -cpu/cc26xx_cc13xx/include/cpu_conf_cc26xx_cc13xx\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of group cpu_cc26xx_cc13xx is not documented\. -cpu/cc26xx_cc13xx/include/cpu_conf_cc26xx_cc13xx\.h:[0-9]+: warning: Member CPU_IRQ_NUMOF \(macro definition\) of group cpu_cc26xx_cc13xx is not documented\. -cpu/cc26xx_cc13xx/include/cpu_conf_cc26xx_cc13xx\.h:[0-9]+: warning: Member NUM_HEAPS \(macro definition\) of group cpu_cc26xx_cc13xx is not documented\. -cpu/cortexm_common/include/cpu_conf_common\.h:[0-9]+: warning: Member THREAD_STACKSIZE_DEFAULT \(macro definition\) of file cpu_conf_common\.h is not documented\. -cpu/cortexm_common/include/cpu_conf_common\.h:[0-9]+: warning: Member THREAD_STACKSIZE_IDLE \(macro definition\) of file cpu_conf_common\.h is not documented\. -cpu/efm32/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/efm32/include/cpu_conf\.h:[0-9]+: warning: Member CPU_IRQ_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/efm32/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/efm32/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/efm32/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_LOWER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_UPPER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_I2C_NEED_WRITE_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member WDT_CLOCK_HZ \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member WDT_HAS_STOP \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/efm32/include/periph_cpu\.h:[0-9]+: warning: Member gpio_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF \(macro definition\) of group cpu_esp32_conf is not documented\. -cpu/esp32/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_DEFAULT \(macro definition\) of group cpu_esp32_conf is not documented\. -cpu/esp32/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_IDLE \(macro definition\) of group cpu_esp32_conf is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member ESP_PM_DEEP_SLEEP \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member ESP_PM_LIGHT_SLEEP \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member ESP_PM_MODEM_SLEEP \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO0 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO1 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO10 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO11 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO12 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO13 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO14 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO15 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO16 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO17 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO18 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO19 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO2 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO21 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO22 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO23 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO25 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO26 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO27 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO3 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO32 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO33 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO34 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO35 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO36 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO37 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO38 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO39 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO4 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO5 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO6 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO7 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO8 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member GPIO9 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member PROVIDES_PM_LAYERED_OFF \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member PROVIDES_PM_OFF \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member PROVIDES_PM_RESTART \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member PROVIDES_PM_SET_LOWEST \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member TIMER_CHANNEL_NUMOF \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp32/include/periph_cpu\.h:[0-9]+: warning: Member gpio_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of group cpu_esp8266_conf is not documented\. -cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member ESP_NOW_STACKSIZE \(macro definition\) of group cpu_esp8266_conf is not documented\. -cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member GNRC_IPV6_STACK_SIZE \(macro definition\) of group cpu_esp8266_conf is not documented\. -cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member GNRC_PKTDUMP_STACKSIZE \(macro definition\) of group cpu_esp8266_conf is not documented\. -cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member TCPIP_THREAD_STACKSIZE \(macro definition\) of group cpu_esp8266_conf is not documented\. -cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF \(macro definition\) of group cpu_esp8266_conf is not documented\. -cpu/esp8266/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_[A-Z]+ \(macro definition\) of group cpu_esp8266_conf is not documented\. -cpu/esp8266/include/irq_arch\.h:[0-9]+: warning: Member ETS_SOFT_INT_HDL_MAC \(macro definition\) of file irq_arch\.h is not documented\. -cpu/esp8266/include/irq_arch\.h:[0-9]+: warning: Member ETS_SOFT_INT_NONE \(macro definition\) of file irq_arch\.h is not documented\. -cpu/esp8266/include/irq_arch\.h:[0-9]+: warning: Member ETS_SOFT_INT_YIELD \(macro definition\) of file irq_arch\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO0 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO1 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO10 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO11 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO12 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO13 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO14 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO15 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO16 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO2 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO3 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO4 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO5 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO6 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO7 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO8 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member GPIO9 \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/esp8266/include/periph_cpu\.h:[0-9]+: warning: Member gpio_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/esp_common/include/cpu\.h:[0-9]+: warning: Member PROVIDES_PM_SET_LOWEST \(macro definition\) of file cpu\.h is not documented\. -cpu/esp_common/include/irq_arch_common\.h:[0-9]+: warning: Member critical_enter\(\) \(macro definition\) of file irq_arch_common\.h is not documented\. -cpu/esp_common/include/irq_arch_common\.h:[0-9]+: warning: Member critical_enter_var\(m\) \(macro definition\) of file irq_arch_common\.h is not documented\. -cpu/esp_common/include/irq_arch_common\.h:[0-9]+: warning: Member critical_exit\(\) \(macro definition\) of file irq_arch_common\.h is not documented\. -cpu/esp_common/include/irq_arch_common\.h:[0-9]+: warning: Member critical_exit_var\(m\) \(macro definition\) of file irq_arch_common\.h is not documented\. -cpu/esp_common/include/irq_arch_common\.h:[0-9]+: warning: Member irq_isr_enter\(\) \(macro definition\) of file irq_arch_common\.h is not documented\. -cpu/esp_common/include/irq_arch_common\.h:[0-9]+: warning: Member irq_isr_exit\(\) \(macro definition\) of file irq_arch_common\.h is not documented\. -cpu/esp_common/include/log_module\.h:[0-9]+: warning: Member log_write\(level,\.\.\.\) \(macro definition\) of file log_module\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CLOCK_PLL_INPUT_CLOCK \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CLOCK_PLL_OUT \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CLOCK_PLL_REFR \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CLOCK_PLL_VCO \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_DESIRED_FREQUENCY \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HFROSC_DIV \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HFROSC_TRIM \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_F \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_Q \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_R \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CONFIG_USE_CLOCK_HFROSC \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CONFIG_USE_CLOCK_HFROSC_PLL \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CONFIG_USE_CLOCK_HFXOSC \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/clk_conf\.h:[0-9]+: warning: Member CONFIG_USE_CLOCK_HFXOSC_PLL \(macro definition\) of file clk_conf\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_LOWER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_UPPER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member RTT_INTR_PRIORITY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/fe310/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/cpu_conf\.h:[0-9]+: warning: Member CLIC_BASE_ADDR \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/gd32v/include/cpu_conf\.h:[0-9]+: warning: Member CLIC_NUM_INTERRUPTS \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/gd32v/include/cpu_conf\.h:[0-9]+: warning: Member CPU_DEFAULT_IRQ_PRIO \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/gd32v/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/gd32v/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/gd32v/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/gd32v/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/gd32v/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_LOWER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_UPPER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member RTT_INTR_PRIORITY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member gd32v_disable_irc8\(void\) \(function\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member gd32v_enable_irc8\(void\) \(function\) of file periph_cpu\.h is not documented\. -cpu/gd32v/include/periph_cpu\.h:[0-9]+: warning: Member gd32vf103_clock_init\(void\) \(function\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/cpu_conf\.h:[0-9]+: warning: Member FTFA_Collision_IRQn \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/kinetis/include/cpu_conf\.h:[0-9]+: warning: Member FTFA_IRQn \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/kinetis/include/cpu_conf\.h:[0-9]+: warning: Member FTFE_Collision_IRQn \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/kinetis/include/cpu_conf\.h:[0-9]+: warning: Member FTFE_IRQn \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/kinetis/include/cpu_conf\.h:[0-9]+: warning: Member FTFL_Collision_IRQn \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/kinetis/include/cpu_conf\.h:[0-9]+: warning: Member FTFL_IRQn \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/kinetis/include/cpu_conf\.h:[0-9]+: warning: Member LVD_LVW_DCDC_IRQn \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/kinetis/include/cpu_conf\.h:[0-9]+: warning: Member PMC_IRQn \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/kinetis/include/cpu_conf\.h:[0-9]+: warning: Member Watchdog_IRQn \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis\.h:[0-9]+: warning: Member CPU_DEFAULT_IRQ_PRIO \(macro definition\) of file cpu_conf_kinetis\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of file cpu_conf_kinetis\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis\.h:[0-9]+: warning: Member CPU_IRQ_NUMOF \(macro definition\) of file cpu_conf_kinetis\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis\.h:[0-9]+: warning: Member PIN_INTERRUPT_EDGE \(macro definition\) of file cpu_conf_kinetis\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis\.h:[0-9]+: warning: Member PIN_INTERRUPT_FALLING \(macro definition\) of file cpu_conf_kinetis\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis\.h:[0-9]+: warning: Member PIN_INTERRUPT_RISING \(macro definition\) of file cpu_conf_kinetis\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis\.h:[0-9]+: warning: Member PIN_MUX_FUNCTION_ANALOG \(macro definition\) of file cpu_conf_kinetis\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis\.h:[0-9]+: warning: Member PIN_MUX_FUNCTION_GPIO \(macro definition\) of file cpu_conf_kinetis\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_k\.h:[0-9]+: warning: Member FLASHPAGE_BLOCK_PHRASE \(macro definition\) of file cpu_conf_kinetis_k\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_k\.h:[0-9]+: warning: Member FLASHPAGE_BLOCK_SECTION_ALIGNMENT \(macro definition\) of file cpu_conf_kinetis_k\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_k\.h:[0-9]+: warning: Member FLASHPAGE_NUMOF \(macro definition\) of file cpu_conf_kinetis_k\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_k\.h:[0-9]+: warning: Member FLASHPAGE_SIZE \(macro definition\) of file cpu_conf_kinetis_k\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_k\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of file cpu_conf_kinetis_k\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_k\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_SIZE \(macro definition\) of file cpu_conf_kinetis_k\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_w\.h:[0-9]+: warning: Member FLASHPAGE_BLOCK_SECTION_ALIGNMENT \(macro definition\) of file cpu_conf_kinetis_w\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_w\.h:[0-9]+: warning: Member FLASHPAGE_NUMOF \(macro definition\) of file cpu_conf_kinetis_w\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_w\.h:[0-9]+: warning: Member FLASHPAGE_SIZE \(macro definition\) of file cpu_conf_kinetis_w\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_w\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of file cpu_conf_kinetis_w\.h is not documented\. -cpu/kinetis/include/cpu_conf_kinetis_w\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_SIZE \(macro definition\) of file cpu_conf_kinetis_w\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member HAVE_GPIO_T \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member PM_BLOCK\(x\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member PM_NUM_MODES \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member PM_UNBLOCK\(x\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member RTT_DEV \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/kinetis/include/periph_cpu\.h:[0-9]+: warning: Member gpio_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/lm4f120/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of group cpu_lm4f120 is not documented\. -cpu/lm4f120/include/cpu_conf\.h:[0-9]+: warning: Member CPU_HAS_BITBAND \(macro definition\) of group cpu_lm4f120 is not documented\. -cpu/lm4f120/include/cpu_conf\.h:[0-9]+: warning: Member CPU_IRQ_NUMOF \(macro definition\) of group cpu_lm4f120 is not documented\. -cpu/lm4f120/include/cpu_conf\.h:[0-9]+: warning: Member cpu_clock_init\(int\) \(function\) of group cpu_lm4f120 is not documented\. -cpu/lm4f120/include/cpu_conf\.h:[0-9]+: warning: Member setup_fpu\(void\) \(function\) of group cpu_lm4f120 is not documented\. -cpu/lm4f120/include/periph_cpu\.h:[0-9]+: warning: Member GPIO_PIN\(x, y\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/lm4f120/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_INIT_CS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/lm4f120/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/lm4f120/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/lm4f120/include/periph_cpu\.h:[0-9]+: warning: Member gpio_dir_t \(enumeration\) of file periph_cpu\.h is not documented\. -cpu/lm4f120/include/periph_cpu\.h:[0-9]+: warning: Member gpio_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/lpc1768/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of group cpu_lpc1768 is not documented\. -cpu/lpc1768/include/cpu_conf\.h:[0-9]+: warning: Member CPU_HAS_BITBAND \(macro definition\) of group cpu_lpc1768 is not documented\. -cpu/lpc1768/include/cpu_conf\.h:[0-9]+: warning: Member CPU_IRQ_NUMOF \(macro definition\) of group cpu_lpc1768 is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member CC_CONF_INLINE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member CC_CONF_NONNULL\(\.\.\.\) \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member CC_CONF_USED \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member CC_CONF_WARN_UNUSED_RESULT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member CONFIG_PTHREAD_REAPER_BASE_STACKSIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member PERIPH_FLASHPAGE_NEEDS_FLASHPAGE_PAGE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_DEFAULT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_IDLE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member __FILENAME_MAX__ \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/cpu_conf\.h:[0-9]+: warning: Member __FOPEN_MAX__ \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/lpc23xx/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/lpc23xx/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/lpc23xx/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/lpc23xx/include/periph_cpu\.h:[0-9]+: warning: Member PM_NUM_MODES \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/lpc23xx/include/periph_cpu\.h:[0-9]+: warning: end of file with unbalanced grouping commands -cpu/msp430_common/include/cpu_conf\.h:[0-9]+: warning: Member CONFIG_GNRC_PKTBUF_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/msp430_common/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/msp430_common/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/msp430_common/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/msp430_common/include/cpu_conf\.h:[0-9]+: warning: Member GNRC_IPV6_STACK_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/msp430_common/include/cpu_conf\.h:[0-9]+: warning: Member ISR_STACKSIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/msp430_common/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/msp430_common/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_DEFAULT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/msp430_common/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_IDLE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/msp430_common/include/irq_arch\.h:[0-9]+: warning: Member _GENERAL_INTERRUPT_ENABLE \(macro definition\) of file irq_arch\.h is not documented\. -cpu/msp430_common/include/irq_arch\.h:[0-9]+: warning: Member __irq_is_in \(variable\) of file irq_arch\.h is not documented\. -cpu/msp430_common/include/irq_arch\.h:[0-9]+: warning: Member irq_disable\(void\) \(function\) of file irq_arch\.h is not documented\. -cpu/msp430_common/include/irq_arch\.h:[0-9]+: warning: Member irq_enable\(void\) \(function\) of file irq_arch\.h is not documented\. -cpu/msp430_common/include/irq_arch\.h:[0-9]+: warning: Member irq_is_enabled\(void\) \(function\) of file irq_arch\.h is not documented\. -cpu/msp430_common/include/irq_arch\.h:[0-9]+: warning: Member irq_is_in\(void\) \(function\) of file irq_arch\.h is not documented\. -cpu/msp430_common/include/irq_arch\.h:[0-9]+: warning: Member irq_restore\(unsigned int state\) \(function\) of file irq_arch\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member CLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member CLK_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_1 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_1_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_2 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_2_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_3 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_3_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_4 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_4_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_5 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_5_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_6 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member PORT_6_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member SFR_IE1_URXIE0 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member SFR_IE1_UTXIE0 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member SFR_IE2_UCA0TXIE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member SFR_IE2_URXIE2 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member SFR_IE2_UTXIE2 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member SFR_IFG1_URXIFG0 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member SFR_IFG1_UTXIFG0 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member SFR_IFG2_UCA0TXIFG \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member SFR_IFG2_URXIFG1 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member SFR_IFG2_UTXIFG1 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_A \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_A_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_B \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_B_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_CAP \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_CCI \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_CCIE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_CCIS_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_CLLD_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_CM_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_COV \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_OUT \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_OUTMOD_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_OUTMOD_OUTVAL \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_OUTMOD_RESET \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_OUTMOD_RESET_SET \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_OUTMOD_SET \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_OUTMOD_SET_RESET \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_OUTMOD_TOGGLE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_OUTMOD_TOG_RESET \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_OUTMOD_TOG_SET \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CCTL_SCS \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_CLR \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_ID_DIV1 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_ID_DIV2 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_ID_DIV4 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_ID_DIV8 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_ID_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_IE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_MC_CONT \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_MC_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_MC_STOP \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_MC_UP \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_MC_UPDOWN \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_TASSEL_ACLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_TASSEL_INV_TCLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_TASSEL_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_TASSEL_SMCLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_CTL_TASSEL_TCLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_IVEC \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member TIMER_IVEC_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_0 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_0_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_1 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_1_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_CTL_CHAR \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_CTL_LISTEN \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_CTL_MM \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_CTL_PENA \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_CTL_PEV \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_CTL_SPB \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_CTL_SYNC \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_RCTL_BRK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_RCTL_FE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_RCTL_OE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_RCTL_PE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_RCTL_RXWAKE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_RCTL_URXEIE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_RCTL_URXWIE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_TCTL_CKPH \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_TCTL_CKPL \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_TCTL_SSEL_ACLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_TCTL_SSEL_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_TCTL_SSEL_SMCLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_TCTL_SSEL_UCLKI \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_TCTL_STC \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_TCTL_TXWAKE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USART_TCTL_URXSE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_0 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_0_A_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_0_A_SPI \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_0_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_0_B_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_0_B_SPI \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_1 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_1_A \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_1_A_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_1_B \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_1_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_1_B_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL0_7BIT \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL0_MODE_ABMM \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL0_MODE_ILMM \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL0_MODE_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL0_MODE_UART \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL0_MODE_UART_ABR \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL0_MSB \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL0_PAR \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL0_PEN \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL0_SPB \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL1_BRKIE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL1_DORM \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL1_RXEIE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL1_SSEL_ACLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL1_SSEL_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL1_SSEL_SMCLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL1_SSEL_UCLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL1_TXADDR \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ACTL1_TXBRK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_AMCTL_BRF_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_AMCTL_BRF_SHIFT \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_AMCTL_BRS_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_AMCTL_BRS_SHIFT \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ASTAT_ADDR \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ASTAT_BRK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ASTAT_FE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ASTAT_IDLE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ASTAT_LISTEN \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ASTAT_OE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ASTAT_PE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_ASTAT_RXERR \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL0_7BIT \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL0_CKPH \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL0_CKPL \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL0_MODE_0 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL0_MODE_1 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL0_MODE_2 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL0_MODE_3 \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL0_MSB \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL0_MST \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL1_SSEL_ACLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL1_SSEL_MASK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL1_SSEL_NA \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_CTL1_SSEL_SMCLK \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_STAT_UCFE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_STAT_UCLISTEN \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member USCI_SPI_STAT_UCOE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member WD \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/msp430_regs\.h:[0-9]+: warning: Member WD_BASE \(macro definition\) of file msp430_regs\.h is not documented\. -cpu/msp430fxyz/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE \(macro definition\) of group cpu_msp430fxyz is not documented\. -cpu/msp430fxyz/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of group cpu_msp430fxyz is not documented\. -cpu/msp430fxyz/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of group cpu_msp430fxyz is not documented\. -cpu/msp430fxyz/include/periph_cpu\.h:[0-9]+: warning: Member gpio_t \(typedef\) of group cpu_msp430fxyz is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_ERASE_STATE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member ISR_STACKSIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_IDLE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member THREAD_STACKSIZE_MINIMUM \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/native/include/cpu_conf\.h:[0-9]+: warning: Member _native_flash\[FLASHPAGE_SIZE \*FLASHPAGE_NUMOF\] \(variable\) of file cpu_conf\.h is not documented\. -cpu/native/include/native_cli_eui_provider\.h:[0-9]+: warning: Member native_cli_add_eui64\(const char \*s\) \(function\) of file native_cli_eui_provider\.h is not documented\. -cpu/native/include/native_cli_eui_provider\.h:[0-9]+: warning: Member native_cli_get_eui64\(uint8_t index, eui64_t \*addr\) \(function\) of file native_cli_eui_provider\.h is not documented\. -cpu/native/include/periph_conf\.h:[0-9]+: warning: Member NATIVE_TIMER_MIN_RES \(macro definition\) of file periph_conf\.h is not documented\. -cpu/native/include/periph_conf\.h:[0-9]+: warning: Member RANDOM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -cpu/native/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -cpu/native/include/periph_cpu\.h:[0-9]+: warning: Member EEPROM_SIZE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/native/include/periph_cpu\.h:[0-9]+: warning: Member GPIOHANDLE_REQUEST_PULL_DOWN \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/native/include/periph_cpu\.h:[0-9]+: warning: Member GPIOHANDLE_REQUEST_PULL_UP \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/native/include/periph_cpu\.h:[0-9]+: warning: Member HAVE_GPIO_FLANK_T \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/native/include/periph_cpu\.h:[0-9]+: warning: Member HAVE_GPIO_MODE_T \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/native/include/periph_cpu\.h:[0-9]+: warning: Member PM_NUM_MODES \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/native/include/periph_cpu\.h:[0-9]+: warning: Member gpio_flank_t \(enumeration\) of file periph_cpu\.h is not documented\. -cpu/nrf51/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of group cpu_nrf51 is not documented\. -cpu/nrf51/include/cpu_conf\.h:[0-9]+: warning: Member CPU_IRQ_NUMOF \(macro definition\) of group cpu_nrf51 is not documented\. -cpu/nrf51/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of group cpu_nrf51 is not documented\. -cpu/nrf51/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_SIZE \(macro definition\) of group cpu_nrf51 is not documented\. -cpu/nrf51/include/cpu_conf\.h:[0-9]+: warning: Member PWM_PPI_A \(macro definition\) of group cpu_nrf51 is not documented\. -cpu/nrf51/include/cpu_conf\.h:[0-9]+: warning: Member PWM_PPI_B \(macro definition\) of group cpu_nrf51 is not documented\. -cpu/nrf51/include/periph_cpu\.h:[0-9]+: warning: Member SPI_MISOSEL \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf51/include/periph_cpu\.h:[0-9]+: warning: Member SPI_MOSISEL \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf51/include/periph_cpu\.h:[0-9]+: warning: Member SPI_SCKSEL \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf52/include/cpu_conf\.h:[0-9]+: warning: Member CPU_DEFAULT_IRQ_PRIO \(macro definition\) of group cpu_nrf52 is not documented\. -cpu/nrf52/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of group cpu_nrf52 is not documented\. -cpu/nrf52/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of group cpu_nrf52 is not documented\. -cpu/nrf52/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_CLOCK \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf52/include/periph_cpu\.h:[0-9]+: warning: Member PWM_CHANNELS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf52/include/periph_cpu\.h:[0-9]+: warning: Member PWM_MODE\(ud, pol\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf52/include/periph_cpu\.h:[0-9]+: warning: Member SPI_MISOSEL \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf52/include/periph_cpu\.h:[0-9]+: warning: Member SPI_MOSISEL \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf52/include/periph_cpu\.h:[0-9]+: warning: Member i2c_pin_scl\(dev\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf52/include/periph_cpu\.h:[0-9]+: warning: Member i2c_pin_sda\(dev\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf52/include/periph_cpu\.h:[0-9]+: warning: Member pwm_mode_t \(enumeration\) of file periph_cpu\.h is not documented\. -cpu/nrf5x_common/include/nrfble\.h:[0-9]+: warning: Member NRFBLE_CHAN_MAX \(macro definition\) of group drivers_nrf5x_nrfble is not documented\. -cpu/nrf5x_common/include/nrfmin\.h:[0-9]+: warning: Member NRFMIN_CHAN_DEFAULT \(macro definition\) of group drivers_nrf5x_nrfmin is not documented\. -cpu/nrf5x_common/include/nrfmin\.h:[0-9]+: warning: Member NRFMIN_CHAN_MAX \(macro definition\) of group drivers_nrf5x_nrfmin is not documented\. -cpu/nrf5x_common/include/nrfmin\.h:[0-9]+: warning: Member NRFMIN_PKT_MAX \(macro definition\) of group drivers_nrf5x_nrfmin is not documented\. -cpu/nrf5x_common/include/periph_cpu_common\.h:[0-9]+: warning: Member GPIO_PIN\(x, y\) \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/nrf5x_common/include/periph_cpu_common\.h:[0-9]+: warning: Member NWDT_TIME_LOWER_LIMIT \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/nrf5x_common/include/periph_cpu_common\.h:[0-9]+: warning: Member NWDT_TIME_UPPER_LIMIT \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/nrf5x_common/include/periph_cpu_common\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/nrf5x_common/include/periph_cpu_common\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/nrf5x_common/include/periph_cpu_common\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/nrf9160/include/periph_cpu\.h:[0-9]+: warning: Member SPI_MISOSEL \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf9160/include/periph_cpu\.h:[0-9]+: warning: Member SPI_MOSISEL \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf9160/include/periph_cpu\.h:[0-9]+: warning: Member i2c_pin_scl\(dev\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/nrf9160/include/periph_cpu\.h:[0-9]+: warning: Member i2c_pin_sda\(dev\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/cpu_conf\.h:[0-9]+: warning: Member CPU_DEFAULT_IRQ_PRIO \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member HAVE_GPIO_T \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member HAVE_UART_DATA_BITS_T \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member HAVE_UART_PARITY_T \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member HAVE_UART_STOP_BITS_T \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_UPPER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member TIMER_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member WWDT_TIME_LOWER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member WWDT_TIME_UPPER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member gpio_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member i2c_pin_scl\(dev\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member i2c_pin_sda\(dev\) \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/qn908x/include/periph_cpu\.h:[0-9]+: warning: Member i2c_speed_t \(enumeration\) of file periph_cpu\.h is not documented\. -cpu/riscv_common/include/clic\.h:[0-9]+: warning: Member clic_clicint_t \(variable\) of file clic\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member a0_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member a1_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member a2_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member a3_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member a4_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member a5_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member a6_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member a7_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member pad_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member pc_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member ra_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s0_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s10_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s11_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s1_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s2_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s3_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s4_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s5_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s6_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s7_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s8_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member s9_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member t0_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member t1_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member t2_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member t3_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member t4_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member t5_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/context_frame\.h:[0-9]+: warning: Member t6_OFFSET \(macro definition\) of file context_frame\.h is not documented\. -cpu/riscv_common/include/cpu_conf_common\.h:[0-9]+: warning: Member THREAD_EXTRA_STACKSIZE_PRINTF \(macro definition\) of file cpu_conf_common\.h is not documented\. -cpu/riscv_common/include/cpu_conf_common\.h:[0-9]+: warning: Member THREAD_STACKSIZE_DEFAULT \(macro definition\) of file cpu_conf_common\.h is not documented\. -cpu/riscv_common/include/cpu_conf_common\.h:[0-9]+: warning: Member THREAD_STACKSIZE_IDLE \(macro definition\) of file cpu_conf_common\.h is not documented\. -cpu/riscv_common/include/irq_arch\.h:[0-9]+: warning: Member irq_is_enabled\(void\) \(function\) of file irq_arch\.h is not documented\. -cpu/riscv_common/include/irq_arch\.h:[0-9]+: warning: Member riscv_in_isr \(variable\) of file irq_arch\.h is not documented\. -cpu/rpx0xx/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/rpx0xx/include/cpu_conf\.h:[0-9]+: warning: Member CPU_IRQ_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/rpx0xx/include/periph_cpu\.h:[0-9]+: warning: Member gpio_flank_t \(enumeration\) of file periph_cpu\.h is not documented\. -cpu/rpx0xx/include/periph_cpu\.h:[0-9]+: warning: Member gpio_t \(typedef\) of file periph_cpu\.h is not documented\. -cpu/sam0_common/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/sam0_common/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_RWWEE_BASE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/sam0_common/include/cpu_conf\.h:[0-9]+: warning: Member CPU_IRQ_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/sam0_common/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/sam0_common/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/sam0_common/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_SIZE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/sam0_common/include/periph_cpu_common\.h:[0-9]+: warning: Member ETH_RX_BUFFER_COUNT \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/sam0_common/include/periph_cpu_common\.h:[0-9]+: warning: Member ETH_RX_BUFFER_SIZE \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/sam0_common/include/periph_cpu_common\.h:[0-9]+: warning: Member ETH_TX_BUFFER_COUNT \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/sam0_common/include/periph_cpu_common\.h:[0-9]+: warning: Member ETH_TX_BUFFER_SIZE \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/sam0_common/include/periph_cpu_common\.h:[0-9]+: warning: Member NWDT_TIME_LOWER_LIMIT \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/sam0_common/include/periph_cpu_common\.h:[0-9]+: warning: Member NWDT_TIME_UPPER_LIMIT \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/sam0_common/include/periph_cpu_common\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/sam0_common/include/periph_cpu_common\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/sam0_common/include/periph_cpu_common\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu_common\.h is not documented\. -cpu/sam0_common/include/periph_cpu_common\.h:[0-9]+: warning: Member gpio_t \(typedef\) of file periph_cpu_common\.h is not documented\. -cpu/sam3/include/periph_cpu\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/sam3/include/periph_cpu\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/sam3/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/sam3/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/sam3/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/sam_common/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/sam_common/include/cpu_conf\.h:[0-9]+: warning: Member CPU_HAS_BITBAND \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/sam_common/include/cpu_conf\.h:[0-9]+: warning: Member CPU_IRQ_NUMOF \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/samd21/include/periph_cpu\.h:[0-9]+: warning: Member PM_NUM_MODES \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd21/include/periph_cpu\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd21/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd21/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd21/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd21/include/periph_cpu\.h:[0-9]+: warning: Member RTT_RUNSTDBY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd5x/include/periph_cpu\.h:[0-9]+: warning: Member PM_NUM_MODES \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd5x/include/periph_cpu\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd5x/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd5x/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd5x/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd5x/include/periph_cpu\.h:[0-9]+: warning: Member SAM0_GCLK_48MHZ \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/samd5x/include/periph_cpu\.h:[0-9]+: warning: Member SAM0_GCLK_8MHZ \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml1x/include/periph_cpu\.h:[0-9]+: warning: Member PM_NUM_MODES \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml1x/include/periph_cpu\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml1x/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml1x/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml1x/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml21/include/periph_cpu\.h:[0-9]+: warning: Member PM_NUM_MODES \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml21/include/periph_cpu\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml21/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml21/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml21/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/saml21/include/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_OFFSET \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member CAN_STM32_NB_FILTER \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN1_RX0 \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN1_RX1 \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN1_SCE \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN1_TX \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN2_RX0 \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN2_RX1 \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN2_SCE \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN2_TX \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN3_RX0 \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN3_RX1 \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN3_SCE \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/candev_stm32\.h:[0-9]+: warning: Member ISR_CAN3_TX \(macro definition\) of file candev_stm32\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_fx_gx_mp1\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file cfg_clock_common_fx_gx_mp1\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_fx_gx_mp1\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSI \(macro definition\) of file cfg_clock_common_fx_gx_mp1\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_fx_gx_mp1\.h:[0-9]+: warning: Member CONFIG_USE_CLOCK_PLL \(macro definition\) of file cfg_clock_common_fx_gx_mp1\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_lx_wx\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file cfg_clock_common_lx_wx\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_lx_wx\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSI \(macro definition\) of file cfg_clock_common_lx_wx\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_lx_wx\.h:[0-9]+: warning: Member CONFIG_CLOCK_MSI \(macro definition\) of file cfg_clock_common_lx_wx\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_lx_wx\.h:[0-9]+: warning: Member CONFIG_USE_CLOCK_PLL \(macro definition\) of file cfg_clock_common_lx_wx\.h is not documented\. -cpu/stm32/include/clk/f0f1f3/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_AHB \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f0f1f3/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB1 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f0f1f3/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB2 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f0f1f3/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f0f1f3/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB2_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f0f1f3/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_MUL \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f0f1f3/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_PREDIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_AHB \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB1 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB2 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_PLLQ \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_PLL_SRC \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_100\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default_100\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_100\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB2_DIV \(macro definition\) of file cfg_clock_default_100\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_100\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file cfg_clock_default_100\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_100\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_N \(macro definition\) of file cfg_clock_default_100\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_100\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_P \(macro definition\) of file cfg_clock_default_100\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_100\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_Q \(macro definition\) of file cfg_clock_default_100\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_100\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_R \(macro definition\) of file cfg_clock_default_100\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_120\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default_120\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_120\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB2_DIV \(macro definition\) of file cfg_clock_default_120\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_120\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file cfg_clock_default_120\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_120\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_N \(macro definition\) of file cfg_clock_default_120\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_120\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_P \(macro definition\) of file cfg_clock_default_120\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_120\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_Q \(macro definition\) of file cfg_clock_default_120\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_180\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default_180\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_180\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB2_DIV \(macro definition\) of file cfg_clock_default_180\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_180\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file cfg_clock_default_180\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_180\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_N \(macro definition\) of file cfg_clock_default_180\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_180\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_P \(macro definition\) of file cfg_clock_default_180\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_180\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_Q \(macro definition\) of file cfg_clock_default_180\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_180\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_R \(macro definition\) of file cfg_clock_default_180\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_216\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default_216\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_216\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB2_DIV \(macro definition\) of file cfg_clock_default_216\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_216\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file cfg_clock_default_216\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_216\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_N \(macro definition\) of file cfg_clock_default_216\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_216\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_P \(macro definition\) of file cfg_clock_default_216\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_216\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_Q \(macro definition\) of file cfg_clock_default_216\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_216\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_R \(macro definition\) of file cfg_clock_default_216\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_84\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default_84\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_84\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB2_DIV \(macro definition\) of file cfg_clock_default_84\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_84\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file cfg_clock_default_84\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_84\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_N \(macro definition\) of file cfg_clock_default_84\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_84\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_P \(macro definition\) of file cfg_clock_default_84\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_84\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_Q \(macro definition\) of file cfg_clock_default_84\.h is not documented\. -cpu/stm32/include/clk/f2f4f7/cfg_clock_default_84\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_R \(macro definition\) of file cfg_clock_default_84\.h is not documented\. -cpu/stm32/include/clk/g0g4/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_AHB \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/g0g4/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB1 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/g0g4/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_PLL_SRC \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/g0g4/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/g0g4/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/g0g4/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_N \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/g0g4/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_R \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l0l1/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_AHB \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l0l1/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB1 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l0l1/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB2 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l0l1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l0l1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB2_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l0l1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l0l1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_MUL \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_AHB \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB1 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB2 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_PLL_SRC \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB2_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_N \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_Q \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_R \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_SRC_HSE \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_SRC_HSI \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/l4l5wx/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_SRC_MSI \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB1 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB2 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_PLLQ \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_PLL_SRC \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB2_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB3_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_MCU_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_N \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_P \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_Q \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/mp1/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_R \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/cpu_conf\.h:[0-9]+: warning: Member CPU_FLASH_BASE \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/stm32/include/cpu_conf\.h:[0-9]+: warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT \(macro definition\) of file cpu_conf\.h is not documented\. -cpu/stm32/include/cpu_conf\.h:[0-9]+: warning: Member stm32_flashpage_block_t \(typedef\) of file cpu_conf\.h is not documented\. -cpu/stm32/include/periph/f1/periph_cpu\.h:[0-9]+: warning: Member RTT_CLOCK_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph/f1/periph_cpu\.h:[0-9]+: warning: Member RTT_DEV \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph/f1/periph_cpu\.h:[0-9]+: warning: Member RTT_IRQ \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph/f1/periph_cpu\.h:[0-9]+: warning: Member RTT_IRQ_PRIO \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph/f1/periph_cpu\.h:[0-9]+: warning: Member RTT_ISR \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph/f1/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph/f1/periph_cpu\.h:[0-9]+: warning: Member RTT_MAX_VALUE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph/f1/periph_cpu\.h:[0-9]+: warning: Member RTT_MIN_FREQUENCY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph/l0/periph_cpu\.h:[0-9]+: warning: Member EEPROM_START_ADDR \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph/l1/periph_cpu\.h:[0-9]+: warning: Member EEPROM_START_ADDR \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph/wl/periph_cpu\.h:[0-9]+: warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_MISOOUT \(macro definition\) of group cpu_stm32_wl_debug_subghz_spi is not documented\. -cpu/stm32/include/periph/wl/periph_cpu\.h:[0-9]+: warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_MISOOUT_AF \(macro definition\) of group cpu_stm32_wl_debug_subghz_spi is not documented\. -cpu/stm32/include/periph/wl/periph_cpu\.h:[0-9]+: warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_MOSIOUT \(macro definition\) of group cpu_stm32_wl_debug_subghz_spi is not documented\. -cpu/stm32/include/periph/wl/periph_cpu\.h:[0-9]+: warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_MOSIOUT_AF \(macro definition\) of group cpu_stm32_wl_debug_subghz_spi is not documented\. -cpu/stm32/include/periph/wl/periph_cpu\.h:[0-9]+: warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_NSSOUT \(macro definition\) of group cpu_stm32_wl_debug_subghz_spi is not documented\. -cpu/stm32/include/periph/wl/periph_cpu\.h:[0-9]+: warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_NSSOUT_AF \(macro definition\) of group cpu_stm32_wl_debug_subghz_spi is not documented\. -cpu/stm32/include/periph/wl/periph_cpu\.h:[0-9]+: warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_SCKOUT \(macro definition\) of group cpu_stm32_wl_debug_subghz_spi is not documented\. -cpu/stm32/include/periph/wl/periph_cpu\.h:[0-9]+: warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_SCKOUT_AF \(macro definition\) of group cpu_stm32_wl_debug_subghz_spi is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member DMA_DATA_WIDTH_BYTE \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member DMA_DATA_WIDTH_HALF_WORD \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member DMA_DATA_WIDTH_MASK \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member DMA_DATA_WIDTH_SHIFT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member DMA_DATA_WIDTH_WORD \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member DMA_INC_BOTH_ADDR \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member DMA_INC_DST_ADDR \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member DMA_INC_SRC_ADDR \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_LOWER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member NWDT_TIME_UPPER_LIMIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_I2C_NEED_READ_REGS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member STM32_PM_STANDBY \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member STM32_PM_STOP \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member WDT_HAS_INIT \(macro definition\) of file periph_cpu\.h is not documented\. -cpu/stm32/include/periph_cpu\.h:[0-9]+: warning: Member WDT_HAS_STOP \(macro definition\) of file periph_cpu\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_CONFIGURATION_CAPF0_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_CONFIGURATION_CAPF1_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_CONFIGURATION_CAPF2_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_CONFIGURATION_MD0_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_CONFIGURATION_MD1_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_CONFIGURATION_MD2_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_CONFIGURATION_VTF0_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_CONFIGURATION_VTF1_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_DACAEN_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_DACBEN_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_VT_SETUP_EXTREF_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_VT_SETUP_VTCHOP_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_VT_SETUP_VTEN_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_VT_SETUP_VTMD0_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_VT_SETUP_VTMD1_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_internal\.h:[0-9]+: warning: Member AD7746_VT_SETUP_VTSHORT_BIT \(macro definition\) of file ad7746_internal\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_PARAMS \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_PARAM_ADDR \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_PARAM_CAP_IN \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_PARAM_CAP_SR \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_PARAM_DAC_A \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_PARAM_DAC_B \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_PARAM_EXC_CONFIG \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_PARAM_I2C \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_PARAM_VT_MD \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_PARAM_VT_SR \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/ad7746/include/ad7746_params\.h:[0-9]+: warning: Member AD7746_SAUL_INFO \(macro definition\) of file ad7746_params\.h is not documented\. -drivers/adcxx1c/include/adcxx1c_regs\.h:[0-9]+: warning: Member ADCXX1C_ALERT_STATUS_ADDR \(macro definition\) of file adcxx1c_regs\.h is not documented\. -drivers/adcxx1c/include/adcxx1c_regs\.h:[0-9]+: warning: Member ADCXX1C_CONF_ADDR \(macro definition\) of file adcxx1c_regs\.h is not documented\. -drivers/adcxx1c/include/adcxx1c_regs\.h:[0-9]+: warning: Member ADCXX1C_CONF_ALERT_FLAG_EN \(macro definition\) of file adcxx1c_regs\.h is not documented\. -drivers/adcxx1c/include/adcxx1c_regs\.h:[0-9]+: warning: Member ADCXX1C_CONF_ALERT_PIN_EN \(macro definition\) of file adcxx1c_regs\.h is not documented\. -drivers/adcxx1c/include/adcxx1c_regs\.h:[0-9]+: warning: Member ADCXX1C_CONV_RES_ADDR \(macro definition\) of file adcxx1c_regs\.h is not documented\. -drivers/adcxx1c/include/adcxx1c_regs\.h:[0-9]+: warning: Member ADCXX1C_HIGHEST_CONV_ADDR \(macro definition\) of file adcxx1c_regs\.h is not documented\. -drivers/adcxx1c/include/adcxx1c_regs\.h:[0-9]+: warning: Member ADCXX1C_HIGH_LIMIT_ADDR \(macro definition\) of file adcxx1c_regs\.h is not documented\. -drivers/adcxx1c/include/adcxx1c_regs\.h:[0-9]+: warning: Member ADCXX1C_HYSTERESIS_ADDR \(macro definition\) of file adcxx1c_regs\.h is not documented\. -drivers/adcxx1c/include/adcxx1c_regs\.h:[0-9]+: warning: Member ADCXX1C_LOWEST_CONV_ADDR \(macro definition\) of file adcxx1c_regs\.h is not documented\. -drivers/adcxx1c/include/adcxx1c_regs\.h:[0-9]+: warning: Member ADCXX1C_LOW_LIMIT_ADDR \(macro definition\) of file adcxx1c_regs\.h is not documented\. -drivers/ads101x/include/ads101x_params\.h:[0-9]+: warning: Member ADS101X_ALERT_PARAMS \(macro definition\) of file ads101x_params\.h is not documented\. -drivers/ads101x/include/ads101x_params\.h:[0-9]+: warning: Member ADS101X_PARAMS \(macro definition\) of file ads101x_params\.h is not documented\. -drivers/ads101x/include/ads101x_params\.h:[0-9]+: warning: Member ADS101X_PARAM_ADDR \(macro definition\) of file ads101x_params\.h is not documented\. -drivers/ads101x/include/ads101x_params\.h:[0-9]+: warning: Member ADS101X_PARAM_ALERT_PIN \(macro definition\) of file ads101x_params\.h is not documented\. -drivers/ads101x/include/ads101x_params\.h:[0-9]+: warning: Member ADS101X_PARAM_HIGH_LIMIT \(macro definition\) of file ads101x_params\.h is not documented\. -drivers/ads101x/include/ads101x_params\.h:[0-9]+: warning: Member ADS101X_PARAM_I2C \(macro definition\) of file ads101x_params\.h is not documented\. -drivers/ads101x/include/ads101x_params\.h:[0-9]+: warning: Member ADS101X_PARAM_LOW_LIMIT \(macro definition\) of file ads101x_params\.h is not documented\. -drivers/ads101x/include/ads101x_params\.h:[0-9]+: warning: Member ADS101X_PARAM_MUX_GAIN \(macro definition\) of file ads101x_params\.h is not documented\. -drivers/ads101x/include/ads101x_params\.h:[0-9]+: warning: Member ADS101X_SAUL_INFO \(macro definition\) of file ads101x_params\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_AIN0_DIFFM_AIN1 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_AIN0_DIFFM_AIN3 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_AIN0_SINGM \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_AIN1_DIFFM_AIN3 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_AIN1_SINGM \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_AIN2_DIFFM_AIN3 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_AIN2_SINGM \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_AIN3_SINGM \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_CONF_ADDR \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_CONF_COMP_DIS \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_CONF_COMP_MODE_WIND \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_CONF_OS_CONV \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_CONV_RES_ADDR \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_DATAR_128 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_DATAR_1600 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_DATAR_2400 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_DATAR_250 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_DATAR_3300 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_DATAR_490 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_DATAR_920 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_DATAR_MASK \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_HIGH_LIMIT_ADDR \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_LOW_LIMIT_ADDR \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_MUX_MASK \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_PGA_FSR_0V256 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_PGA_FSR_0V512 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_PGA_FSR_1V024 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_PGA_FSR_2V048 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_PGA_FSR_4V096 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_PGA_FSR_6V144 \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/ads101x/include/ads101x_regs\.h:[0-9]+: warning: Member ADS101X_PGA_MASK \(macro definition\) of file ads101x_regs\.h is not documented\. -drivers/adxl345/include/adxl345_params\.h:[0-9]+: warning: Member ADXL345_PARAMS \(macro definition\) of file adxl345_params\.h is not documented\. -drivers/adxl345/include/adxl345_params\.h:[0-9]+: warning: Member ADXL345_PARAM_ADDR \(macro definition\) of file adxl345_params\.h is not documented\. -drivers/adxl345/include/adxl345_params\.h:[0-9]+: warning: Member ADXL345_PARAM_FULL_RES \(macro definition\) of file adxl345_params\.h is not documented\. -drivers/adxl345/include/adxl345_params\.h:[0-9]+: warning: Member ADXL345_PARAM_I2C \(macro definition\) of file adxl345_params\.h is not documented\. -drivers/adxl345/include/adxl345_params\.h:[0-9]+: warning: Member ADXL345_PARAM_INTERRUPT \(macro definition\) of file adxl345_params\.h is not documented\. -drivers/adxl345/include/adxl345_params\.h:[0-9]+: warning: Member ADXL345_PARAM_OFFSET \(macro definition\) of file adxl345_params\.h is not documented\. -drivers/adxl345/include/adxl345_params\.h:[0-9]+: warning: Member ADXL345_PARAM_RANGE \(macro definition\) of file adxl345_params\.h is not documented\. -drivers/adxl345/include/adxl345_params\.h:[0-9]+: warning: Member ADXL345_PARAM_RATE \(macro definition\) of file adxl345_params\.h is not documented\. -drivers/adxl345/include/adxl345_params\.h:[0-9]+: warning: Member ADXL345_SAUL_INFO \(macro definition\) of file adxl345_params\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_ACTIVITY \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_ACT_ACDC \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_ACT_X_ENABLE \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_ACT_X_SRC \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_ACT_Y_ENABLE \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_ACT_Y_SRC \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_ACT_Z_ENABLE \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_ACT_Z_SRC \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_ASLEEP \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_AUTOSLEEP_BIT \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_CHIP_ID \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_DATA_READY \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_DOUBLE_TAP \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_FIFO_ENTRIES_MASK \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_FIFO_MODE_MASK \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_FIFO_MODE_POS \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_FIFO_TRIG \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_FIFO_TRIGGER \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_FIFO_TRIGGER_POS \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_FREEFALL \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_FULL_RES \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_INACTIVITY \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_INACT_ACDC \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_INACT_X_ENABLE \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_INACT_Y_ENABLE \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_INACT_Z_ENABLE \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_INT_INVERT \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_JUSTIFY \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_LINK_BIT \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_LOWPOWER \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_MEASURE_BIT \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_OVERRUN \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_RANGE_MASK \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_RATE_MASK \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_RES_10_BITS \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_RES_11_BITS \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_RES_12_BITS \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_RES_13_BITS \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_SAMPLES_MASK \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_SELF_TEST \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_SINGLE_TAP \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_SLEEP_BIT \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_SPI_BIT \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_SUPPRESS \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_TAP_ALL_ENABLE \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_TAP_X_ENABLE \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_TAP_X_SRC \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_TAP_Y_ENABLE \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_TAP_Y_SRC \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_TAP_Z_ENABLE \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_TAP_Z_SRC \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_WAKEUP_1HZ \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_WAKEUP_2HZ \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_WAKEUP_4HZ \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_WAKEUP_8HZ \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/adxl345/include/adxl345_regs\.h:[0-9]+: warning: Member ADXL345_WATERMARK \(macro definition\) of file adxl345_regs\.h is not documented\. -drivers/aip31068/include/aip31068_params\.h:[0-9]+: warning: Member AIP31068_PARAMS \(macro definition\) of file aip31068_params\.h is not documented\. -drivers/apa102/include/apa102_params\.h:[0-9]+: warning: Member APA102_PARAMS \(macro definition\) of file apa102_params\.h is not documented\. -drivers/apa102/include/apa102_params\.h:[0-9]+: warning: Member APA102_PARAM_CLK_PIN \(macro definition\) of file apa102_params\.h is not documented\. -drivers/apa102/include/apa102_params\.h:[0-9]+: warning: Member APA102_PARAM_DATA_PIN \(macro definition\) of file apa102_params\.h is not documented\. -drivers/apds99xx/include/apds99xx_params\.h:[0-9]+: warning: Member APDS99XX_PARAMS \(macro definition\) of file apds99xx_params\.h is not documented\. -drivers/apds99xx/include/apds99xx_params\.h:[0-9]+: warning: Member APDS99XX_SAUL_INFO \(macro definition\) of file apds99xx_params\.h is not documented\. -drivers/at24mac/include/at24mac_params\.h:[0-9]+: warning: Member AT24MAC_PARAMS \(macro definition\) of file at24mac_params\.h is not documented\. -drivers/at24mac/include/at24mac_params\.h:[0-9]+: warning: Member AT24MAC_PARAM_I2C_ADDR \(macro definition\) of file at24mac_params\.h is not documented\. -drivers/at24mac/include/at24mac_params\.h:[0-9]+: warning: Member AT24MAC_PARAM_I2C_DEV \(macro definition\) of file at24mac_params\.h is not documented\. -drivers/at24mac/include/at24mac_params\.h:[0-9]+: warning: Member AT24MAC_PARAM_TYPE \(macro definition\) of file at24mac_params\.h is not documented\. -drivers/at25xxx/include/at25xxx_params\.h:[0-9]+: warning: Member AT25XXX_PARAMS \(macro definition\) of file at25xxx_params\.h is not documented\. -drivers/at25xxx/include/at25xxx_params\.h:[0-9]+: warning: Member AT25XXX_PARAM_ADDR_LEN \(macro definition\) of file at25xxx_params\.h is not documented\. -drivers/at25xxx/include/at25xxx_params\.h:[0-9]+: warning: Member AT25XXX_PARAM_CS \(macro definition\) of file at25xxx_params\.h is not documented\. -drivers/at25xxx/include/at25xxx_params\.h:[0-9]+: warning: Member AT25XXX_PARAM_HOLD \(macro definition\) of file at25xxx_params\.h is not documented\. -drivers/at25xxx/include/at25xxx_params\.h:[0-9]+: warning: Member AT25XXX_PARAM_PAGE_SIZE \(macro definition\) of file at25xxx_params\.h is not documented\. -drivers/at25xxx/include/at25xxx_params\.h:[0-9]+: warning: Member AT25XXX_PARAM_SIZE \(macro definition\) of file at25xxx_params\.h is not documented\. -drivers/at25xxx/include/at25xxx_params\.h:[0-9]+: warning: Member AT25XXX_PARAM_SPI \(macro definition\) of file at25xxx_params\.h is not documented\. -drivers/at25xxx/include/at25xxx_params\.h:[0-9]+: warning: Member AT25XXX_PARAM_SPI_CLK \(macro definition\) of file at25xxx_params\.h is not documented\. -drivers/at25xxx/include/at25xxx_params\.h:[0-9]+: warning: Member AT25XXX_PARAM_WP \(macro definition\) of file at25xxx_params\.h is not documented\. -drivers/at86rf215/include/at86rf215_internal\.h:[0-9]+: warning: Member AT86RF215_CSMA_MAX_BE_DEFAULT \(macro definition\) of file at86rf215_internal\.h is not documented\. -drivers/at86rf215/include/at86rf215_internal\.h:[0-9]+: warning: Member AT86RF215_CSMA_MIN_BE_DEFAULT \(macro definition\) of file at86rf215_internal\.h is not documented\. -drivers/at86rf215/include/at86rf215_internal\.h:[0-9]+: warning: Member AT86RF215_CSMA_RETRIES_MAX_DEFAULT \(macro definition\) of file at86rf215_internal\.h is not documented\. -drivers/at86rf215/include/at86rf215_params\.h:[0-9]+: warning: Member AT86RF215_PARAMS \(macro definition\) of file at86rf215_params\.h is not documented\. -drivers/at86rf215/include/at86rf215_params\.h:[0-9]+: warning: Member AT86RF215_PARAM_CS \(macro definition\) of file at86rf215_params\.h is not documented\. -drivers/at86rf215/include/at86rf215_params\.h:[0-9]+: warning: Member AT86RF215_PARAM_INT \(macro definition\) of file at86rf215_params\.h is not documented\. -drivers/at86rf215/include/at86rf215_params\.h:[0-9]+: warning: Member AT86RF215_PARAM_RESET \(macro definition\) of file at86rf215_params\.h is not documented\. -drivers/at86rf215/include/at86rf215_params\.h:[0-9]+: warning: Member AT86RF215_PARAM_SPI \(macro definition\) of file at86rf215_params\.h is not documented\. -drivers/at86rf215/include/at86rf215_params\.h:[0-9]+: warning: Member AT86RF215_PARAM_SPI_CLK \(macro definition\) of file at86rf215_params\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member AT86RF215IQ_PN \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member AT86RF215M_PN \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member AT86RF215_PN \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member BBC0_regs \(variable\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member BBC1_regs \(variable\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member CMD_RF_NOP \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member CMD_RF_RESET \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member CMD_RF_RX \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member CMD_RF_SLEEP \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member CMD_RF_TRXOFF \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member CMD_RF_TX \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member CMD_RF_TXPREP \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FLAG_READ \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FLAG_WRITE \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_BT_10 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_BT_15 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_BT_20 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_CHANNEL_SPACING_400K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_MIDXS_SCALE_10_BY_8 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_MIDXS_SCALE_8_BY_8 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_MIDXS_SCALE_9_BY_8 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_MIDX_10_BY_8 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_MIDX_12_BY_8 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_MIDX_14_BY_8 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_MIDX_16_BY_8 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_MIDX_4_BY_8 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_MIDX_6_BY_8 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_MIDX_8_BY_8 \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_SRATE_100K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_SRATE_150K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_SRATE_200K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_SRATE_300K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member FSK_SRATE_400K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF09_regs \(variable\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF24_regs \(variable\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_DTB_128_US \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_DTB_32_US \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_DTB_8_US \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_SR_1000K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_SR_1333K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_SR_2000K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_SR_400K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_SR_500K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_SR_666K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_SR_800K \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_STATE_RESET \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_STATE_RX \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_STATE_TRANSITION \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_STATE_TRXOFF \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_STATE_TX \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf215/include/at86rf215_registers\.h:[0-9]+: warning: Member RF_STATE_TXPREP \(macro definition\) of file at86rf215_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_AES_DIR__DEC \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_AES_DIR__ENC \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_AES_MODE__CBC \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_AES_MODE__ECB \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_AES_MODE__KEY \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_AES_REQUEST__IDLE \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_AES_REQUEST__START \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MASK__AES_DIR \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MASK__AES_MODE \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MASK__AES_REQUEST \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_DIR__DEC \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_DIR__ENC \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_MODE__CBC \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_MODE__ECB \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_MODE__KEY \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_REQUEST__IDLE \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_REQUEST__START \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MIRROR_MASK__AES_DIR \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MIRROR_MASK__AES_MODE \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_CTRL_MIRROR_MASK__AES_REQUEST \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_STATUS_AES_DONE__DONE \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_STATUS_AES_DONE__NOT_DONE \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_STATUS_AES_ER__ERROR \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_STATUS_AES_ER__NO_ERROR \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_STATUS_MASK__AES_DONE \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_AES_STATUS_MASK__AES_ER \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_REG__AES_CTRL \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_REG__AES_CTRL_MIRROR \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_REG__AES_DATA_END \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_REG__AES_DATA_START \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_REG__AES_KEY_END \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_REG__AES_KEY_START \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_aes\.h:[0-9]+: warning: Member AT86RF2XX_REG__AES_STATUS \(macro definition\) of file at86rf2xx_aes\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF212B_PARTNUM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF231_PARTNUM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF232_PARTNUM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF233_PARTNUM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_ACCESS_FB \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_ACCESS_READ \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_ACCESS_REG \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_ACCESS_SRAM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_ACCESS_WRITE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_CCA_THRES_MASK__CCA_ED_THRES \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_CCA_THRES_MASK__RSVD_HI_NIBBLE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_CSMA_SEED_1__AACK_DIS_ACK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_CSMA_SEED_1__AACK_I_AM_COORD \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_CSMA_SEED_1__AACK_SET_PD \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_CSMA_SEED_1__CSMA_SEED_1 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_IRQ_STATUS_MASK__AMI \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_IRQ_STATUS_MASK__BAT_LOW \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_IRQ_STATUS_MASK__CCA_ED_DONE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_IRQ_STATUS_MASK__PLL_LOCK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_IRQ_STATUS_MASK__PLL_UNLOCK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_IRQ_STATUS_MASK__RX_START \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_IRQ_STATUS_MASK__TRX_END \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_IRQ_STATUS_MASK__TRX_UR \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PARTNUM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_CC_CCA_DEFAULT__CCA_MODE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_CC_CCA_MASK__CCA_MODE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_CC_CCA_MASK__CCA_REQUEST \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_CC_CCA_MASK__CHANNEL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_RSSI_MASK__RND_VALUE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_RSSI_MASK__RSSI \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_RSSI_MASK__RX_CRC_VALID \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_TX_PWR_DEFAULT__PA_BUF_LT \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_TX_PWR_DEFAULT__PA_LT \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_TX_PWR_DEFAULT__TX_PWR \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_PHY_TX_PWR_MASK__TX_PWR \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__ANT_DIV \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__BATMON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__CCA_THRES \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__CC_CTRL_1 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__CSMA_BE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__CSMA_SEED_0 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__CSMA_SEED_1 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__FTN_CTRL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__IEEE_ADDR_0 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__IEEE_ADDR_1 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__IEEE_ADDR_2 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__IEEE_ADDR_3 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__IEEE_ADDR_4 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__IEEE_ADDR_5 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__IEEE_ADDR_6 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__IEEE_ADDR_7 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__IRQ_MASK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__IRQ_STATUS \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__MAN_ID_0 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__MAN_ID_1 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__PAN_ID_0 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__PAN_ID_1 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__PART_NUM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__PHY_CC_CCA \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__PHY_ED_LEVEL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__PHY_RSSI \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__PHY_TX_PWR \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__PLL_CF \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__PLL_DCU \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__RX_CTRL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__RX_SYN \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__SFD_VALUE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__SHORT_ADDR_0 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__SHORT_ADDR_1 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__TRX_CTRL_0 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__TRX_CTRL_1 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__TRX_CTRL_2 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__TRX_STATE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__TRX_STATUS \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__TST_CTRL_DIGI \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__VERSION_NUM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__VREG_CTRL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__XAH_CTRL_0 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__XAH_CTRL_1 \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_REG__XOSC_CTRL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_RX_SYN__RX_OVERRIDE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_RX_SYN__RX_PDT_DIS \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_RX_SYN__RX_PDT_LEVEL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TIMING__PLL_ON_TO_BUSY_TX \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TIMING__RESET \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TIMING__RESET_TO_TRX_OFF \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TIMING__SLEEP_TO_TRX_OFF \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TIMING__TRX_OFF_TO_PLL_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TIMING__TRX_OFF_TO_RX_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TIMING__VCC_TO_P_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__16MHz \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__1MHz \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__250kHz \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__2MHz \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__4MHz \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__62_5kHz \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__8MHz \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__OFF \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_DEFAULT__CLKM_CTRL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_DEFAULT__CLKM_SHA_SEL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_DEFAULT__PAD_IO \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_DEFAULT__PAD_IO_CLKM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_MASK__CLKM_CTRL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_MASK__CLKM_SHA_SEL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_MASK__PAD_IO \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_0_MASK__PAD_IO_CLKM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_1_MASK__IRQ_2_EXT_EN \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_1_MASK__IRQ_MASK_MODE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_1_MASK__IRQ_POLARITY \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_1_MASK__PA_EXT_EN \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_1_MASK__RX_BL_CTRL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_1_MASK__SPI_CMD_MODE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_1_MASK__TX_AUTO_CRC_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_2_MASK__ALT_SPECTRUM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_2_MASK__BPSK_OQPSK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_2_MASK__FREQ_MODE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_2_MASK__OQPSK_DATA_RATE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_2_MASK__OQPSK_SCRAM_EN \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_2_MASK__RX_SAFE_MODE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_2_MASK__SUB_MODE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_CTRL_2_MASK__TRX_OFF_AVDD_EN \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_RPC_MASK__IPAN_RPC_EN \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_RPC_MASK__PDT_RPC_EN \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_RPC_MASK__PLL_RPC_EN \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_RPC_MASK__RX_RPC_CTRL_MAXPWR \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_RPC_MASK__RX_RPC_EN \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_RPC_MASK__XAH_TX_RPC_EN \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE_MASK__TRAC \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__FORCE_PLL_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__FORCE_TRX_OFF \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__NOP \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__PLL_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__RX_AACK_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__RX_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__TRAC_CHANNEL_ACCESS_FAILURE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__TRAC_INVALID \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__TRAC_NO_ACK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__TRAC_SUCCESS \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__TRAC_SUCCESS_DATA_PENDING \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__TRAC_SUCCESS_WAIT_FOR_ACK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__TRX_OFF \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__TX_ARET_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATE__TX_START \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS_MASK__CCA_DONE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS_MASK__CCA_STATUS \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS_MASK__TRX_STATUS \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__BUSY_RX \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__BUSY_RX_AACK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__BUSY_RX_AACK_NOCLK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__BUSY_TX \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__BUSY_TX_ARET \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__PLL_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__P_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__RX_AACK_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__RX_AACK_ON_NOCLK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__RX_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__RX_ON_NOCLK \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__SLEEP \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__STATE_TRANSITION_IN_PROGRESS \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__TRX_OFF \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_TRX_STATUS__TX_ARET_ON \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_XAH_CTRL_0__MAX_CSMA_RETRIES \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_XAH_CTRL_0__MAX_FRAME_RETRIES \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_XAH_CTRL_0__SLOTTED_OPERATION \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_XAH_CTRL_1__AACK_ACK_TIME \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_XAH_CTRL_1__AACK_FLTR_RES_FT \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_XAH_CTRL_1__AACK_PROM_MODE \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_XAH_CTRL_1__AACK_UPLD_RES_FT \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_XOSC_CTRL__XTAL_MODE_CRYSTAL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RF2XX_XOSC_CTRL__XTAL_MODE_EXTERNAL \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RFA1_PARTNUM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/at86rf2xx/include/at86rf2xx_registers\.h:[0-9]+: warning: Member AT86RFR2_PARTNUM \(macro definition\) of file at86rf2xx_registers\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_ATMEL_FRAME_SENT_MASK \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_ATMEL_PA_MASK \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_ATMEL_SYSTEM_READY_MASK \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_ATMEL_VERSION \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_GET_ID \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_GET_PAC \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_GET_STATUS \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_IO_INIT \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_IO_READ \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_IO_WRITE \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_OFF_MODE \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_READ_RX_BUFFER \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_READ_SUP_TEMP \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SEND_BIT \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SEND_CW \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SEND_FRAME \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SEND_RECEIVE_FRAME \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SET_TX_FREQUENCY \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SIGFOX2_DF_WAIT_ERROR \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SIGFOX2_INIT_ERROR \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SIGFOX2_RF_ERROR \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SIGFOX2_TX_ERROR \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SIGFOX_NO_ERROR \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SIGFOX_RX_BIT_TIMEOUT \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SIGFOX_RX_TIMEOUT \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SIGFOX_TX_LEN_TOO_LONG \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SIGFOX_VERSION \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_START_MEASUREMENT \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_SYSTEM_RESET \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_TEST_MODE \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_TX_TEST_MODE \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_WRITE_SYS_CONF \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_internals\.h:[0-9]+: warning: Member ATA8520E_WRITE_TX_BUFFER \(macro definition\) of file ata8520e_internals\.h is not documented\. -drivers/ata8520e/include/ata8520e_params\.h:[0-9]+: warning: Member ATA8520E_PARAMS \(macro definition\) of file ata8520e_params\.h is not documented\. -drivers/ata8520e/include/ata8520e_params\.h:[0-9]+: warning: Member ATA8520E_PARAM_CS_PIN \(macro definition\) of file ata8520e_params\.h is not documented\. -drivers/ata8520e/include/ata8520e_params\.h:[0-9]+: warning: Member ATA8520E_PARAM_INT_PIN \(macro definition\) of file ata8520e_params\.h is not documented\. -drivers/ata8520e/include/ata8520e_params\.h:[0-9]+: warning: Member ATA8520E_PARAM_POWER_PIN \(macro definition\) of file ata8520e_params\.h is not documented\. -drivers/ata8520e/include/ata8520e_params\.h:[0-9]+: warning: Member ATA8520E_PARAM_RESET_PIN \(macro definition\) of file ata8520e_params\.h is not documented\. -drivers/ata8520e/include/ata8520e_params\.h:[0-9]+: warning: Member ATA8520E_PARAM_SPI \(macro definition\) of file ata8520e_params\.h is not documented\. -drivers/ata8520e/include/ata8520e_params\.h:[0-9]+: warning: Member ATA8520E_PARAM_SPI_CLK \(macro definition\) of file ata8520e_params\.h is not documented\. -drivers/atwinc15x0/include/atwinc15x0_params\.h:[0-9]+: warning: Member ATWINC15X0_PARAMS \(macro definition\) of file atwinc15x0_params\.h is not documented\. -drivers/atwinc15x0/include/atwinc15x0_params\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_CHIP_EN_PIN \(macro definition\) of file atwinc15x0_params\.h is not documented\. -drivers/atwinc15x0/include/atwinc15x0_params\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_IRQ_PIN \(macro definition\) of file atwinc15x0_params\.h is not documented\. -drivers/atwinc15x0/include/atwinc15x0_params\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_RESET_PIN \(macro definition\) of file atwinc15x0_params\.h is not documented\. -drivers/atwinc15x0/include/atwinc15x0_params\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_SPI \(macro definition\) of file atwinc15x0_params\.h is not documented\. -drivers/atwinc15x0/include/atwinc15x0_params\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_SPI_CLK \(macro definition\) of file atwinc15x0_params\.h is not documented\. -drivers/atwinc15x0/include/atwinc15x0_params\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_SSN_PIN \(macro definition\) of file atwinc15x0_params\.h is not documented\. -drivers/atwinc15x0/include/atwinc15x0_params\.h:[0-9]+: warning: Member ATWINC15X0_PARAM_WAKE_PIN \(macro definition\) of file atwinc15x0_params\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_CHANGE_TIME_H_MASK \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_CHANGE_TIME_L_MASK \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_CONT_HRES1 \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_CONT_HRES2 \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_CONT_LRES \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_POWER_DOWN \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_POWER_ON \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_RESET \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_SINGLE_HRES1 \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_SINGLE_HRES2 \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_internal\.h:[0-9]+: warning: Member OP_SINGLE_LRES \(macro definition\) of file bh1750fvi_internal\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_params\.h:[0-9]+: warning: Member BH1750FVI_PARAMS \(macro definition\) of file bh1750fvi_params\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_params\.h:[0-9]+: warning: Member BH1750FVI_PARAM_ADDR \(macro definition\) of file bh1750fvi_params\.h is not documented\. -drivers/bh1750fvi/include/bh1750fvi_params\.h:[0-9]+: warning: Member BH1750FVI_PARAM_I2C \(macro definition\) of file bh1750fvi_params\.h is not documented\. -drivers/bh1900nux/include/bh1900nux_params\.h:[0-9]+: warning: Member BH1900NUX_PARAMS \(macro definition\) of file bh1900nux_params\.h is not documented\. -drivers/bh1900nux/include/bh1900nux_params\.h:[0-9]+: warning: Member BH1900NUX_PARAM_ADDR \(macro definition\) of file bh1900nux_params\.h is not documented\. -drivers/bh1900nux/include/bh1900nux_params\.h:[0-9]+: warning: Member BH1900NUX_PARAM_I2C \(macro definition\) of file bh1900nux_params\.h is not documented\. -drivers/bme680/include/bme680_params\.h:[0-9]+: warning: Member BME680_PARAM_I2C_ADDR \(macro definition\) of file bme680_params\.h is not documented\. -drivers/bme680/include/bme680_params\.h:[0-9]+: warning: Member BME680_PARAM_I2C_DEV \(macro definition\) of file bme680_params\.h is not documented\. -drivers/bme680/include/bme680_params\.h:[0-9]+: warning: Member BME680_PARAM_SPI_DEV \(macro definition\) of file bme680_params\.h is not documented\. -drivers/bme680/include/bme680_params\.h:[0-9]+: warning: Member BME680_PARAM_SPI_NSS_PIN \(macro definition\) of file bme680_params\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_ADDR \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_CALIBRATION_AC1 \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_HIGHRES_DELAY \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_PRESSURE_COMMAND \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_REGISTER_CONTROL \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_REGISTER_DATA \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_REGISTER_ID \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_STANDARD_DELAY \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_TEMPERATURE_COMMAND \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_ULTRAHIGHRES_DELAY \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_internals\.h:[0-9]+: warning: Member BMP180_ULTRALOWPOWER_DELAY \(macro definition\) of file bmp180_internals\.h is not documented\. -drivers/bmp180/include/bmp180_params\.h:[0-9]+: warning: Member BMP180_PARAMS \(macro definition\) of file bmp180_params\.h is not documented\. -drivers/bmp180/include/bmp180_params\.h:[0-9]+: warning: Member BMP180_PARAM_I2C_ADDR \(macro definition\) of file bmp180_params\.h is not documented\. -drivers/bmp180/include/bmp180_params\.h:[0-9]+: warning: Member BMP180_PARAM_I2C_DEV \(macro definition\) of file bmp180_params\.h is not documented\. -drivers/bmp180/include/bmp180_params\.h:[0-9]+: warning: Member BMP180_PARAM_OVERSAMPLING \(macro definition\) of file bmp180_params\.h is not documented\. -drivers/bmp180/include/bmp180_params\.h:[0-9]+: warning: Member BMP180_SAUL_INFO \(macro definition\) of file bmp180_params\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member BIT_ACC_RANGE_16G \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member BIT_ACC_RANGE_2G \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member BIT_ACC_RANGE_4G \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member BIT_ACC_RANGE_8G \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member BIT_MAG_DATARDY \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member BIT_MAG_PWRCTRL_VAL \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_ACC_CHIPID \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_ACC_CHIPID_VAL \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_ACC_DATA \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_ACC_RANGE \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_ACC_SHDW \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_ACC_SHDW_ENABLE \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_GYRO_CHIPID \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_GYRO_CHIPID_VAL \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_GYRO_DATA \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_GYRO_PWRMD \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_GYRO_PWRMD_NORM \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_GYRO_SCALE \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_GYRO_SHDW \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_GYRO_SHDW_EN \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_MAG_CHIPID \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_MAG_CHIPID_VAL \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_MAG_DATA \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_MAG_OPMODE \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/bmx055_internal\.h:[0-9]+: warning: Member REG_MAG_PWRCTRL \(macro definition\) of file bmx055_internal\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_PARAMS \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_PARAM_ACC_ADDR \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_PARAM_ACC_RANGE \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_PARAM_GYRO_ADDR \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_PARAM_GYRO_SCALE \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_PARAM_I2C \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_PARAM_INT1 \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_PARAM_INT2 \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_PARAM_MAG_ADDR \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_PARAM_MAG_RATE \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx055/include/bmx055_params\.h:[0-9]+: warning: Member BMX055_SAULINFO \(macro definition\) of file bmx055_params\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_CTRL_HUM_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_DIG_H1_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_DIG_H2_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_DIG_H2_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_DIG_H3_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_DIG_H4_H5_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_DIG_H4_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_DIG_H5_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_DIG_H6_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_HUMIDITY_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BME280_HUMIDITY_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMEX80_RST_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_CHIP_ID_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_CHIP_ID_VAL \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_CONFIG_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_CTRL_MEAS_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P1_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P1_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P2_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P2_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P3_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P3_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P4_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P4_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P5_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P5_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P6_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P6_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P7_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P7_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P8_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P8_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P9_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_P9_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_T1_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_T1_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_T2_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_T2_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_T3_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_DIG_T3_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_PRESSURE_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_PRESSURE_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_PRESSURE_XLSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_STAT_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_TEMPERATURE_LSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_TEMPERATURE_MSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member BMX280_TEMPERATURE_XLSB_REG \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member CALIB_T_P_BASE \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member CALIB_T_P_LEN \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member DATA_BASE \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member MEAS_OSRS_P_POS \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member MEAS_OSRS_T_POS \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member OFFSET_T_P\(x\) \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member RESET_WORD \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_internals\.h:[0-9]+: warning: Member STAT_MEASURING \(macro definition\) of file bmx280_internals\.h is not documented\. -drivers/bmx280/include/bmx280_params\.h:[0-9]+: warning: Member BMX280_PARAMS \(macro definition\) of file bmx280_params\.h is not documented\. -drivers/bmx280/include/bmx280_params\.h:[0-9]+: warning: Member BMX280_PARAM_I2C_ADDR \(macro definition\) of file bmx280_params\.h is not documented\. -drivers/bmx280/include/bmx280_params\.h:[0-9]+: warning: Member BMX280_PARAM_I2C_DEV \(macro definition\) of file bmx280_params\.h is not documented\. -drivers/bmx280/include/bmx280_params\.h:[0-9]+: warning: Member BMX280_PARAM_MISC \(macro definition\) of file bmx280_params\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG00_IINLIM_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG00_IINLIM_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG00_VINDPM_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG01_CHG_DISABLE \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG01_CHG_ENABLE \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG01_CHG_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG01_CHG_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG01_OTG_DISABLE \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG01_OTG_ENABLE \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG01_OTG_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG01_OTG_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG02_ICHG_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG02_ICHG_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG04_VREG_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG04_VREG_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG05_WD_DISABLE \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG05_WD_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG05_WD_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_CHG_STAT_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_CHG_STAT_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_DPM_STAT_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_DPM_STAT_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_PG_STAT_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_PG_STAT_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_THERM_STAT_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_THERM_STAT_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_VBUS_STATUS_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_VBUS_STATUS_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_VSYS_STAT_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG08_VSYS_STAT_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_BAT_FAULT_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_BAT_FAULT_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_CHRG_FAULT_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_CHRG_FAULT_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_NTC_FAULT_0_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_NTC_FAULT_0_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_NTC_FAULT_1_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_NTC_FAULT_1_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_OTG_FAULT_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_OTG_FAULT_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_WD_FAULT_m \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_internal\.h:[0-9]+: warning: Member BQ2429X_REG09_WD_FAULT_s \(macro definition\) of file bq2429x_internal\.h is not documented\. -drivers/bq2429x/include/bq2429x_params\.h:[0-9]+: warning: Member BQ2429X_PARAMS \(macro definition\) of file bq2429x_params\.h is not documented\. -drivers/bq2429x/include/bq2429x_params\.h:[0-9]+: warning: Member BQ2429X_PARAM_I2C \(macro definition\) of file bq2429x_params\.h is not documented\. -drivers/bq2429x/include/bq2429x_params\.h:[0-9]+: warning: Member BQ2429X_PARAM_ICHG \(macro definition\) of file bq2429x_params\.h is not documented\. -drivers/bq2429x/include/bq2429x_params\.h:[0-9]+: warning: Member BQ2429X_PARAM_ILIM \(macro definition\) of file bq2429x_params\.h is not documented\. -drivers/bq2429x/include/bq2429x_params\.h:[0-9]+: warning: Member BQ2429X_PARAM_INT_PIN \(macro definition\) of file bq2429x_params\.h is not documented\. -drivers/bq2429x/include/bq2429x_params\.h:[0-9]+: warning: Member BQ2429X_PARAM_VLIM \(macro definition\) of file bq2429x_params\.h is not documented\. -drivers/bq2429x/include/bq2429x_params\.h:[0-9]+: warning: Member BQ2429X_PARAM_VREG \(macro definition\) of file bq2429x_params\.h is not documented\. -drivers/bq2429x/include/bq2429x_params\.h:[0-9]+: warning: Member BQ2429X_PARMA_CE_PIN \(macro definition\) of file bq2429x_params\.h is not documented\. -drivers/bq2429x/include/bq2429x_params\.h:[0-9]+: warning: Member BQ2429X_PARMA_OTG_PIN \(macro definition\) of file bq2429x_params\.h is not documented\. -drivers/bq2429x/include/bq2429x_params\.h:[0-9]+: warning: Member bq2429x_params\[\] \(variable\) of file bq2429x_params\.h is not documented\. -drivers/cc2420/include/cc2420_internal\.h:[0-9]+: warning: Member CC2420_XOSCON_DELAY \(macro definition\) of file cc2420_internal\.h is not documented\. -drivers/cc2420/include/cc2420_internal\.h:[0-9]+: warning: Member cc2420_strobe\(const cc2420_t \*dev, const uint8_t command\) \(function\) of file cc2420_internal\.h is not documented\. -drivers/cc2420/include/cc2420_params\.h:[0-9]+: warning: Member CC2420_PARAMS \(macro definition\) of file cc2420_params\.h is not documented\. -drivers/cc2420/include/cc2420_params\.h:[0-9]+: warning: Member CC2420_PARAM_CCA \(macro definition\) of file cc2420_params\.h is not documented\. -drivers/cc2420/include/cc2420_params\.h:[0-9]+: warning: Member CC2420_PARAM_CS \(macro definition\) of file cc2420_params\.h is not documented\. -drivers/cc2420/include/cc2420_params\.h:[0-9]+: warning: Member CC2420_PARAM_FIFO \(macro definition\) of file cc2420_params\.h is not documented\. -drivers/cc2420/include/cc2420_params\.h:[0-9]+: warning: Member CC2420_PARAM_FIFOP \(macro definition\) of file cc2420_params\.h is not documented\. -drivers/cc2420/include/cc2420_params\.h:[0-9]+: warning: Member CC2420_PARAM_RESET \(macro definition\) of file cc2420_params\.h is not documented\. -drivers/cc2420/include/cc2420_params\.h:[0-9]+: warning: Member CC2420_PARAM_SFD \(macro definition\) of file cc2420_params\.h is not documented\. -drivers/cc2420/include/cc2420_params\.h:[0-9]+: warning: Member CC2420_PARAM_SPI \(macro definition\) of file cc2420_params\.h is not documented\. -drivers/cc2420/include/cc2420_params\.h:[0-9]+: warning: Member CC2420_PARAM_SPI_CLK \(macro definition\) of file cc2420_params\.h is not documented\. -drivers/cc2420/include/cc2420_params\.h:[0-9]+: warning: Member CC2420_PARAM_VREFEN \(macro definition\) of file cc2420_params\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_CRCCOR_COR_MASK \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_FIFO_READ \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_FIFO_WRITE \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_FSCTRL_CAL_DONE \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_FSCTRL_CAL_RUNNING \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_FSCTRL_FREQ_MASK \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_FSCTRL_LOCK_LENGTH \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_FSCTRL_LOCK_STATUS \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_FSCTRL_LOCK_THR_MASK \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_MANFIDH_VAL \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_MANFIDL_VAL \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_MDMCTRL0_ADR_DECODE \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_MDMCTRL0_AUTOACK \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_MDMCTRL0_AUTOCRC \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_MDMCTRL0_PAN_COORD \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_MDMCTRL0_PREAMBLE_3B \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_MDMCTRL0_PREAMBLE_M \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_MDMCTRL0_RES_FRM \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_CBCSTATE \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_IEEEADR \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_KEY0 \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_KEY1 \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_PANID \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_RXCTR \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_RXFIFO \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_RXNONCE \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_SABUF \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_SHORTADR \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_TXCTR \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_TXFIFO \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RAM_TXNONCE \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_RXCTRL1_RXBPF_LOCUR \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_SECCTRL0_RXFIFO_PROT \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_STATUS_ENC_BUSY \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_STATUS_PLL_LOCK \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_STATUS_RSSI_VALID \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_STATUS_TX_ACTIVE \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_STATUS_TX_UNDERFLOW \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_STATUS_XOSC_STABLE \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/cc2420/include/cc2420_registers\.h:[0-9]+: warning: Member CC2420_TXCTRL_PA_MASK \(macro definition\) of file cc2420_registers\.h is not documented\. -drivers/ccs811/include/ccs811_params\.h:[0-9]+: warning: Member CCS811_PARAMS \(macro definition\) of file ccs811_params\.h is not documented\. -drivers/ccs811/include/ccs811_params\.h:[0-9]+: warning: Member CCS811_PARAM_I2C_ADDR \(macro definition\) of file ccs811_params\.h is not documented\. -drivers/ccs811/include/ccs811_params\.h:[0-9]+: warning: Member CCS811_PARAM_I2C_DEV \(macro definition\) of file ccs811_params\.h is not documented\. -drivers/ccs811/include/ccs811_params\.h:[0-9]+: warning: Member CCS811_PARAM_INT_MODE \(macro definition\) of file ccs811_params\.h is not documented\. -drivers/ccs811/include/ccs811_params\.h:[0-9]+: warning: Member CCS811_PARAM_INT_PIN \(macro definition\) of file ccs811_params\.h is not documented\. -drivers/ccs811/include/ccs811_params\.h:[0-9]+: warning: Member CCS811_PARAM_MODE \(macro definition\) of file ccs811_params\.h is not documented\. -drivers/ccs811/include/ccs811_params\.h:[0-9]+: warning: Member CCS811_PARAM_RESET_PIN \(macro definition\) of file ccs811_params\.h is not documented\. -drivers/ccs811/include/ccs811_params\.h:[0-9]+: warning: Member CCS811_PARAM_WAKE_PIN \(macro definition\) of file ccs811_params\.h is not documented\. -drivers/ccs811/include/ccs811_params\.h:[0-9]+: warning: Member CCS811_SAUL_INFO \(macro definition\) of file ccs811_params\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_ALG_RESULT_DATA \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_APP_DATA \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_APP_ERASE \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_APP_START \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_APP_VERIFY \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_BASELINE \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_ENV_DATA \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_ERROR_ID \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_FW_APP_VER \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_FW_BOOT_VER \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_HW_ID \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_HW_VER \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_MEAS_MODE \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_NTC \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_RAW_DATA \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_STATUS \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_SW_RESET \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/ccs811/include/ccs811_regs\.h:[0-9]+: warning: Member CCS811_REG_THRESHOLDS \(macro definition\) of file ccs811_regs\.h is not documented\. -drivers/cst816s/include/cst816s_internal\.h:[0-9]+: warning: Member CST816S_RESET_DURATION_HIGH \(macro definition\) of file cst816s_internal\.h is not documented\. -drivers/cst816s/include/cst816s_internal\.h:[0-9]+: warning: Member CST816S_RESET_DURATION_LOW \(macro definition\) of file cst816s_internal\.h is not documented\. -drivers/cst816s/include/cst816s_params\.h:[0-9]+: warning: Member CST816S_PARAMS \(macro definition\) of file cst816s_params\.h is not documented\. -drivers/cst816s/include/cst816s_params\.h:[0-9]+: warning: Member CST816S_PARAM_I2C_ADDR \(macro definition\) of file cst816s_params\.h is not documented\. -drivers/cst816s/include/cst816s_params\.h:[0-9]+: warning: Member CST816S_PARAM_I2C_DEV \(macro definition\) of file cst816s_params\.h is not documented\. -drivers/cst816s/include/cst816s_params\.h:[0-9]+: warning: Member CST816S_PARAM_IRQ \(macro definition\) of file cst816s_params\.h is not documented\. -drivers/cst816s/include/cst816s_params\.h:[0-9]+: warning: Member CST816S_PARAM_IRQ_FLANK \(macro definition\) of file cst816s_params\.h is not documented\. -drivers/cst816s/include/cst816s_params\.h:[0-9]+: warning: Member CST816S_PARAM_RESET \(macro definition\) of file cst816s_params\.h is not documented\. -drivers/dac_dds/include/dac_dds_params\.h:[0-9]+: warning: Member DAC_DDS_PARAMS \(macro definition\) of file dac_dds_params\.h is not documented\. -drivers/dac_dds/include/dac_dds_params\.h:[0-9]+: warning: Member DAC_DDS_PARAM_DAC \(macro definition\) of file dac_dds_params\.h is not documented\. -drivers/dac_dds/include/dac_dds_params\.h:[0-9]+: warning: Member DAC_DDS_PARAM_TIMER \(macro definition\) of file dac_dds_params\.h is not documented\. -drivers/dac_dds/include/dac_dds_params\.h:[0-9]+: warning: Member DAC_DDS_PARAM_TIMER_HZ \(macro definition\) of file dac_dds_params\.h is not documented\. -drivers/dcf77/include/dcf77_params\.h:[0-9]+: warning: Member DCF77_PARAMS \(macro definition\) of file dcf77_params\.h is not documented\. -drivers/dcf77/include/dcf77_params\.h:[0-9]+: warning: Member DCF77_PARAM_PIN \(macro definition\) of file dcf77_params\.h is not documented\. -drivers/dcf77/include/dcf77_params\.h:[0-9]+: warning: Member DCF77_PARAM_PULL \(macro definition\) of file dcf77_params\.h is not documented\. -drivers/dht/include/dht_params\.h:[0-9]+: warning: Member DHT_PARAMS \(macro definition\) of file dht_params\.h is not documented\. -drivers/dht/include/dht_params\.h:[0-9]+: warning: Member DHT_PARAM_PIN \(macro definition\) of file dht_params\.h is not documented\. -drivers/dht/include/dht_params\.h:[0-9]+: warning: Member DHT_PARAM_PULL \(macro definition\) of file dht_params\.h is not documented\. -drivers/dht/include/dht_params\.h:[0-9]+: warning: Member DHT_PARAM_TYPE \(macro definition\) of file dht_params\.h is not documented\. -drivers/dht/include/dht_params\.h:[0-9]+: warning: Member DHT_SAULINFO \(macro definition\) of file dht_params\.h is not documented\. -drivers/dose/include/dose_params\.h:[0-9]+: warning: Member DOSE_PARAMS \(macro definition\) of file dose_params\.h is not documented\. -drivers/dose/include/dose_params\.h:[0-9]+: warning: Member DOSE_PARAM_BAUDRATE \(macro definition\) of file dose_params\.h is not documented\. -drivers/dose/include/dose_params\.h:[0-9]+: warning: Member DOSE_PARAM_SENSE_PIN \(macro definition\) of file dose_params\.h is not documented\. -drivers/dose/include/dose_params\.h:[0-9]+: warning: Member DOSE_PARAM_UART \(macro definition\) of file dose_params\.h is not documented\. -drivers/ds1307/include/ds1307_params\.h:[0-9]+: warning: Member DS1307_PARAMS \(macro definition\) of file ds1307_params\.h is not documented\. -drivers/ds1307/include/ds1307_params\.h:[0-9]+: warning: Member DS1307_PARAM_I2C \(macro definition\) of file ds1307_params\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_ALARMSEARCH \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_CONVERT \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_COPYSCRATCHPAD \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_MATCHROM \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_READROM \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_RECALLE \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_RPWRSPPLY \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_RSCRATCHPAD \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_SEARCHROM \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_SKIPROM \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_CMD_WRITESCRATCHPAD \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_DELAY_CONVERT \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_DELAY_PRESENCE \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_DELAY_RESET \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_DELAY_RW_PULSE \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_DELAY_R_RECOVER \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_DELAY_SLOT \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/ds18_internal\.h:[0-9]+: warning: Member DS18_SAMPLE_TIME \(macro definition\) of file ds18_internal\.h is not documented\. -drivers/ds18/include/ds18_params\.h:[0-9]+: warning: Member DS18_PARAMS_DEFAULT \(macro definition\) of file ds18_params\.h is not documented\. -drivers/ds18/include/ds18_params\.h:[0-9]+: warning: Member DS18_PARAM_PULL \(macro definition\) of file ds18_params\.h is not documented\. -drivers/ds3231/include/ds3231_params\.h:[0-9]+: warning: Member DS3231_PARAMS \(macro definition\) of file ds3231_params\.h is not documented\. -drivers/ds3231/include/ds3231_params\.h:[0-9]+: warning: Member DS3231_PARAM_I2C \(macro definition\) of file ds3231_params\.h is not documented\. -drivers/ds3231/include/ds3231_params\.h:[0-9]+: warning: Member DS3231_PARAM_OPT \(macro definition\) of file ds3231_params\.h is not documented\. -drivers/ds3234/include/ds3234_params\.h:[0-9]+: warning: Member DS3234_PARAMS \(macro definition\) of file ds3234_params\.h is not documented\. -drivers/ds3234/include/ds3234_params\.h:[0-9]+: warning: Member DS3234_PARAM_CLK \(macro definition\) of file ds3234_params\.h is not documented\. -drivers/ds3234/include/ds3234_params\.h:[0-9]+: warning: Member DS3234_PARAM_CS \(macro definition\) of file ds3234_params\.h is not documented\. -drivers/ds3234/include/ds3234_params\.h:[0-9]+: warning: Member DS3234_PARAM_SPI \(macro definition\) of file ds3234_params\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_CONF_F0_MASK \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_CONF_F0_POS \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_CONF_POL_POS \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_CONF_R0_MASK \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_CONF_R0_POS \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_CONF_SD_POS \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_CONF_TM_POS \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_REG_CONFIGURATION \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_REG_TEMPERATURE \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_REG_T_HYST \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_internals\.h:[0-9]+: warning: Member DS75LX_REG_T_OS \(macro definition\) of file ds75lx_internals\.h is not documented\. -drivers/ds75lx/include/ds75lx_params\.h:[0-9]+: warning: Member DS75LX_PARAMS \(macro definition\) of file ds75lx_params\.h is not documented\. -drivers/ds75lx/include/ds75lx_params\.h:[0-9]+: warning: Member DS75LX_PARAM_I2C_ADDR \(macro definition\) of file ds75lx_params\.h is not documented\. -drivers/ds75lx/include/ds75lx_params\.h:[0-9]+: warning: Member DS75LX_PARAM_I2C_DEV \(macro definition\) of file ds75lx_params\.h is not documented\. -drivers/ds75lx/include/ds75lx_params\.h:[0-9]+: warning: Member DS75LX_PARAM_RESOLUTION \(macro definition\) of file ds75lx_params\.h is not documented\. -drivers/ds75lx/include/ds75lx_params\.h:[0-9]+: warning: Member DS75LX_SAUL_INFO \(macro definition\) of file ds75lx_params\.h is not documented\. -drivers/dsp0401/include/dsp0401_params\.h:[0-9]+: warning: Member DSP0401_PARAMS \(macro definition\) of file dsp0401_params\.h is not documented\. -drivers/dsp0401/include/dsp0401_params\.h:[0-9]+: warning: Member DSP0401_PARAM_BRIGHTNESS \(macro definition\) of file dsp0401_params\.h is not documented\. -drivers/dsp0401/include/dsp0401_params\.h:[0-9]+: warning: Member DSP0401_PARAM_CLK_PIN \(macro definition\) of file dsp0401_params\.h is not documented\. -drivers/dsp0401/include/dsp0401_params\.h:[0-9]+: warning: Member DSP0401_PARAM_LAT_PIN \(macro definition\) of file dsp0401_params\.h is not documented\. -drivers/dsp0401/include/dsp0401_params\.h:[0-9]+: warning: Member DSP0401_PARAM_MODULE_COUNT \(macro definition\) of file dsp0401_params\.h is not documented\. -drivers/dsp0401/include/dsp0401_params\.h:[0-9]+: warning: Member DSP0401_PARAM_PWM_CHAN \(macro definition\) of file dsp0401_params\.h is not documented\. -drivers/dsp0401/include/dsp0401_params\.h:[0-9]+: warning: Member DSP0401_PARAM_PWM_DEV \(macro definition\) of file dsp0401_params\.h is not documented\. -drivers/dsp0401/include/dsp0401_params\.h:[0-9]+: warning: Member DSP0401_PARAM_SDI_PIN \(macro definition\) of file dsp0401_params\.h is not documented\. -drivers/dynamixel/include/dynamixel_crc\.h:[0-9]+: warning: Member dynamixel_crc_update\(uint16_t crc_accum, const uint8_t \*buffer, size_t size\) \(function\) of file dynamixel_crc\.h is not documented\. -drivers/dynamixel/include/dynamixel_protocol\.h:[0-9]+: warning: Member DXL_HEADER \(macro definition\) of file dynamixel_protocol\.h is not documented\. -drivers/dynamixel/include/dynamixel_protocol\.h:[0-9]+: warning: Member dynamixel_intruction_t \(enumeration\) of file dynamixel_protocol\.h is not documented\. -drivers/dynamixel/include/dynamixel_protocol\.h:[0-9]+: warning: Member xl320_baudrate_t \(enumeration\) of file dynamixel_protocol\.h is not documented\. -drivers/dynamixel/include/dynamixel_protocol\.h:[0-9]+: warning: Member xl320_register16_t \(enumeration\) of file dynamixel_protocol\.h is not documented\. -drivers/dynamixel/include/dynamixel_protocol\.h:[0-9]+: warning: Member xl320_register8_t \(enumeration\) of file dynamixel_protocol\.h is not documented\. -drivers/dynamixel/include/dynamixel_reader\.h:[0-9]+: warning: Member DXL_PING_SIZE \(macro definition\) of file dynamixel_reader\.h is not documented\. -drivers/dynamixel/include/dynamixel_reader\.h:[0-9]+: warning: Member DXL_READ_SIZE \(macro definition\) of file dynamixel_reader\.h is not documented\. -drivers/dynamixel/include/dynamixel_reader\.h:[0-9]+: warning: Member DXL_STATUS_SIZE\(len\) \(macro definition\) of file dynamixel_reader\.h is not documented\. -drivers/dynamixel/include/dynamixel_reader\.h:[0-9]+: warning: Member DXL_WRITE_SIZE\(len\) \(macro definition\) of file dynamixel_reader\.h is not documented\. -drivers/enc28j60/include/enc28j60_params\.h:[0-9]+: warning: Member ENC28J60_PARAMS \(macro definition\) of file enc28j60_params\.h is not documented\. -drivers/enc28j60/include/enc28j60_params\.h:[0-9]+: warning: Member ENC28J60_PARAM_CS \(macro definition\) of file enc28j60_params\.h is not documented\. -drivers/enc28j60/include/enc28j60_params\.h:[0-9]+: warning: Member ENC28J60_PARAM_INT \(macro definition\) of file enc28j60_params\.h is not documented\. -drivers/enc28j60/include/enc28j60_params\.h:[0-9]+: warning: Member ENC28J60_PARAM_RESET \(macro definition\) of file enc28j60_params\.h is not documented\. -drivers/enc28j60/include/enc28j60_params\.h:[0-9]+: warning: Member ENC28J60_PARAM_SPI \(macro definition\) of file enc28j60_params\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member CMD_BFC \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member CMD_BFS \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member CMD_RBM \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member CMD_RCR \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member CMD_SRC \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member CMD_WBM \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member CMD_WCR \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON1_BSEL0 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON1_BSEL1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON1_BSEL_MASK \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON1_CSUMEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON1_DMAST \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON1_RXEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON1_RXRST \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON1_TXRST \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON1_TXRTS \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON2_AUTOINC \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON2_PKTDEC \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON2_PWRSV \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ECON2_VRPS \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EFLOCON_FCEN0 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EFLOCON_FCEN1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EFLOCON_FCEN_MASK \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EFLOCON_FULDPXS \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIE_DMAIE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIE_INTIE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIE_LINKIE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIE_PKTIE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIE_RXERIE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIE_TXERIE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIE_TXIE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIR_DMAIF \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIR_LINKIF \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIR_PKTIF \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIR_RXERIF \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIR_TXERIF \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member EIR_TXIF \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ERXFCON_ANDOR \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ERXFCON_BCEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ERXFCON_CRCEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ERXFCON_HTEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ERXFCON_MCEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ERXFCON_MPEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ERXFCON_PMEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ERXFCON_UCEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ESTAT_BUFFER \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ESTAT_CLKRDY \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ESTAT_INT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ESTAT_LATECOL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ESTAT_RXBUSY \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member ESTAT_TXABRT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_4_CARRIER_EVT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_4_CRC_ERR \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_4_LENGTH_ERR \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_4_LENGTH_OOR \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_4_LONG_EVT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_4_RECV_OK \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_5_BCAST \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_5_DRIPPLE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_5_MCAST \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_5_PAUSE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_5_RCV_CTRL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_5_UKWN_OPCODE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member FRAME_5_VLAN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MABBIPG_FD \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MABBIPG_HD \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON1_MARXEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON1_PASSALL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON1_RXPAUS \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON1_TXPAUS \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON3_FRMLNEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON3_FULDPX \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON3_HFRMEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON3_PADCFG0 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON3_PADCFG1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON3_PADCFG2 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON3_PHDREN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON3_TXCRCEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON4_BPEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON4_DEFER \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MACON4_NOBKOFF \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MAIPGL_FD \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MICMD_MIIRD \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MICMD_MIISCAN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MISTAT_BUSY \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MISTAT_NVALID \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member MISTAT_SCAN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHCON1_PDPXMD \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHCON1_PLOOPBK \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHCON1_PPWRSV \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHCON1_PRST \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHCON2_FRCLNK \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHCON2_HDLDIS \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHCON2_JABBER \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHCON2_TXDIS \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHIE_PGEIE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHIE_PLNKIE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHIR_PGIF \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHIR_PLNKIF \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHLCON_LACFG\(x\) \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHLCON_LBCFG\(x\) \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHLCON_LFRQ\(x\) \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHLCON_STRCH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHSTAT1_JBSTAT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHSTAT1_LLSTAT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHSTAT1_PFDPX \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHSTAT1_PHDPX \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHSTAT2_COLSTAT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHSTAT2_DPXSTAT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHSTAT2_LSTAT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHSTAT2_PLRITY \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHSTAT2_RXSTAT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member PHSTAT2_TXSTAT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_EDMACSH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_EDMACSL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_EDMADSTH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_EDMADSTL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_EDMANDH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_EDMANDL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_EDMASTH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_EDMASTL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ERDPTH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ERDPTL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ERXNDH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ERXNDL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ERXRDPTH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ERXRDPTL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ERXSTH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ERXSTL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ERXWRPTH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ERXWRPTL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ETXNDH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ETXNDL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ETXSTH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_ETXSTL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_EWRPTH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B0_EWRPTL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EHT0 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EHT1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EHT2 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EHT3 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EHT4 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EHT5 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EHT6 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EHT7 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPKTCNT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMCSH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMCSL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMM0 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMM1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMM2 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMM3 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMM4 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMM5 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMM6 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMM7 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMOH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_EPMOL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B1_ERXFCON \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MABBIPG \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MACLCON1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MACLCON2 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MACON1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MACON3 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MACON4 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MAIPGH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MAIPGL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MAMXFLH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MAMXFLL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MICMD \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MIRDH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MIRDL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MIREGADR \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MIWRH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B2_MIWRL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_EBSTCON \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_EBSTCSH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_EBSTCSL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_EBSTSD \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_ECOCON \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_EFLOCON \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_EPAUSH \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_EPAUSL \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_EREVID \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_MAADR1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_MAADR2 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_MAADR3 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_MAADR4 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_MAADR5 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_MAADR6 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_B3_MISTAT \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_PHY_PHCON1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_PHY_PHCON2 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_PHY_PHID1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_PHY_PHID2 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_PHY_PHIE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_PHY_PHIR \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_PHY_PHLCON \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_PHY_PHSTAT1 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member REG_PHY_PHSTAT2 \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member TX_PCRCEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member TX_PHUGEEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member TX_POVERRIDE \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/enc28j60/include/enc28j60_regs\.h:[0-9]+: warning: Member TX_PPADEN \(macro definition\) of file enc28j60_regs\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_AESIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_AESIF \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_AESOP0 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_AESOP1 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_AESST \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_AUTOFC \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_B0SEL \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_B1SEL \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_B2SEL \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_B3SEL \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_BFC \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_BFCU \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_BFS \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_BFSU \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_CLKRDY \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_CLREIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_CRYPTEN \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_DISABLERX \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_DMACPY \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_DMACSSD \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_DMAIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_DMAIF \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_DMANOCS \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_DMAST \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ECON1 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ECON2 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_EGPRDPT \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_EGPWRPT \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_EIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_EIR \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ENABLERX \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ERXFCON \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ERXHEAD \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ERXRDPT \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ERXST \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ERXTAIL \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ERXWRPT \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ESTAT \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ETHRST \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ETXLEN \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ETXST \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ETXSTAT \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_ETXWIRE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_EUDAST \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_FCOP0 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_FCOP1 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_HASHEN \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_HASHIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_HASHIF \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_HASHLST \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_HASHOP \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_INTIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_LINKIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_LINKIF \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MAADR1 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MAADR2 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MAADR3 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MACON2 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MAMXFL \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MCEN \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MIREGADR \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MIWR \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MODEXIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MODEXIF \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_MODEXST \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PCFULIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PCFULIF \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PHANA \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PHANE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PHANLPA \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PHCON1 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PHCON2 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PHSTAT1 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PHSTAT2 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PHSTAT3 \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PHYLNK \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PKTDEC \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PKTIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_PKTIF \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_RBSEL \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_RCR \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_RCRU \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_RGPDATA \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_RRXDATA \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_RUDADATA \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_RXABTIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_RXABTIF \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_RXEN \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_SETEIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_SETETHRST \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_SETPKTDEC \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_SETTXRTS \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_TXABTIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_TXABTIF \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_TXIE \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_TXIF \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_TXRTS \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_WCR \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_WCRU \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_WGPDATA \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_WRXDATA \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/encx24j600/include/encx24j600_defines\.h:[0-9]+: warning: Member ENC_WUDADATA \(macro definition\) of file encx24j600_defines\.h is not documented\. -drivers/ethos/include/ethos_params\.h:[0-9]+: warning: Member ETHOS_PARAMS \(macro definition\) of file ethos_params\.h is not documented\. -drivers/feetech/include/feetech_protocol\.h:[0-9]+: warning: Member FEETECH_START \(macro definition\) of file feetech_protocol\.h is not documented\. -drivers/feetech/include/feetech_protocol\.h:[0-9]+: warning: Member feetech_intruction_t \(enumeration\) of file feetech_protocol\.h is not documented\. -drivers/feetech/include/feetech_protocol\.h:[0-9]+: warning: Member scs15_baudrate_t \(enumeration\) of file feetech_protocol\.h is not documented\. -drivers/feetech/include/feetech_protocol\.h:[0-9]+: warning: Member scs15_register16_t \(enumeration\) of file feetech_protocol\.h is not documented\. -drivers/feetech/include/feetech_protocol\.h:[0-9]+: warning: Member scs15_register8_t \(enumeration\) of file feetech_protocol\.h is not documented\. -drivers/feetech/include/feetech_reader\.h:[0-9]+: warning: Member FEETECH_ACK_SIZE \(macro definition\) of file feetech_reader\.h is not documented\. -drivers/feetech/include/feetech_reader\.h:[0-9]+: warning: Member FEETECH_RESPONSE_SIZE\(len\) \(macro definition\) of file feetech_reader\.h is not documented\. -drivers/fxos8700/include/fxos8700_regs\.h:[0-9]+: warning: Member FXOS8700_WHO_AM_I_VAL \(macro definition\) of file fxos8700_regs\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_1LINE \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_2LINE \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_4BITMODE \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_5x10DOTS \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_5x8DOTS \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_8BITMODE \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_BLINKOFF \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_BLINKON \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_CLEARDISPLAY \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_CMD_WAIT \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_CURSORMOVE \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_CURSOROFF \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_CURSORON \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_CURSORSHIFT \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_DISPLAYCONTROL \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_DISPLAYMOVE \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_DISPLAYOFF \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_DISPLAYON \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_ENTRYLEFT \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_ENTRYMODESET \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_ENTRYRIGHT \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_ENTRYSHIFTDECREMENT \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_ENTRYSHIFTINCREMENT \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_FUNCTIONSET \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_INIT_WAIT_LONG \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_INIT_WAIT_SHORT \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_INIT_WAIT_XXL \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_MOVELEFT \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_MOVERIGHT \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_PULSE_WAIT_LONG \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_PULSE_WAIT_SHORT \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_RETURNHOME \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_SETCGRAMADDR \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_internal\.h:[0-9]+: warning: Member HD44780_SETDDRAMADDR \(macro definition\) of file hd44780_internal\.h is not documented\. -drivers/hd44780/include/hd44780_params\.h:[0-9]+: warning: Member HD44780_PARAMS \(macro definition\) of file hd44780_params\.h is not documented\. -drivers/hd44780/include/hd44780_params\.h:[0-9]+: warning: Member HD44780_PARAM_COLS \(macro definition\) of file hd44780_params\.h is not documented\. -drivers/hd44780/include/hd44780_params\.h:[0-9]+: warning: Member HD44780_PARAM_PINS_DATA \(macro definition\) of file hd44780_params\.h is not documented\. -drivers/hd44780/include/hd44780_params\.h:[0-9]+: warning: Member HD44780_PARAM_PIN_ENABLE \(macro definition\) of file hd44780_params\.h is not documented\. -drivers/hd44780/include/hd44780_params\.h:[0-9]+: warning: Member HD44780_PARAM_PIN_RS \(macro definition\) of file hd44780_params\.h is not documented\. -drivers/hd44780/include/hd44780_params\.h:[0-9]+: warning: Member HD44780_PARAM_PIN_RW \(macro definition\) of file hd44780_params\.h is not documented\. -drivers/hd44780/include/hd44780_params\.h:[0-9]+: warning: Member HD44780_PARAM_ROWS \(macro definition\) of file hd44780_params\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_BTST_LOW \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_CONFIG \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_DEVICE_ID \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_DID_VALUE \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_HEAT \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_HRES11 \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_HRES14 \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_HRES8 \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_HRES_MSK \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_HUMIDITY \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_MANUFACTURER_ID \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_MID_VALUE \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_RST \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_SEQ_MOD \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_SID1 \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_SID2 \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_SID3 \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_TEMPERATURE \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_TRES11 \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_TRES14 \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hdc1000/include/hdc1000_regs\.h:[0-9]+: warning: Member HDC1000_TRES_MSK \(macro definition\) of file hdc1000_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_params\.h:[0-9]+: warning: Member HMC5883L_PARAMS \(macro definition\) of file hmc5883l_params\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_params\.h:[0-9]+: warning: Member HMC5883L_PARAM_DEV \(macro definition\) of file hmc5883l_params\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_params\.h:[0-9]+: warning: Member HMC5883L_PARAM_DOR \(macro definition\) of file hmc5883l_params\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_params\.h:[0-9]+: warning: Member HMC5883L_PARAM_GAIN \(macro definition\) of file hmc5883l_params\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_params\.h:[0-9]+: warning: Member HMC5883L_PARAM_INT_PIN \(macro definition\) of file hmc5883l_params\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_params\.h:[0-9]+: warning: Member HMC5883L_PARAM_MEAS_AVG \(macro definition\) of file hmc5883l_params\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_params\.h:[0-9]+: warning: Member HMC5883L_PARAM_MEAS_MODE \(macro definition\) of file hmc5883l_params\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_params\.h:[0-9]+: warning: Member HMC5883L_PARAM_OP_MODE \(macro definition\) of file hmc5883l_params\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_params\.h:[0-9]+: warning: Member HMC5883L_SAUL_INFO \(macro definition\) of file hmc5883l_params\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_CFG_A \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_CFG_B \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_ID_A \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_ID_B \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_ID_C \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_MODE \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_OUT_X_LSB \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_OUT_X_MSB \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_OUT_Y_LSB \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_OUT_Y_MSB \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_OUT_Z_LSB \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_OUT_Z_MSB \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hmc5883l/include/hmc5883l_regs\.h:[0-9]+: warning: Member HMC5883L_REG_STATUS \(macro definition\) of file hmc5883l_regs\.h is not documented\. -drivers/hsc/include/hsc_params\.h:[0-9]+: warning: Member HSC_PARAMS \(macro definition\) of file hsc_params\.h is not documented\. -drivers/hsc/include/hsc_params\.h:[0-9]+: warning: Member HSC_PARAM_I2C_ADDR \(macro definition\) of file hsc_params\.h is not documented\. -drivers/hsc/include/hsc_params\.h:[0-9]+: warning: Member HSC_PARAM_I2C_DEV \(macro definition\) of file hsc_params\.h is not documented\. -drivers/hsc/include/hsc_params\.h:[0-9]+: warning: Member HSC_PARAM_RANGE \(macro definition\) of file hsc_params\.h is not documented\. -drivers/hsc/include/hsc_params\.h:[0-9]+: warning: Member HSC_SAUL_INFO \(macro definition\) of file hsc_params\.h is not documented\. -drivers/hts221/include/hts221_params\.h:[0-9]+: warning: Member HTS221_PARAMS \(macro definition\) of file hts221_params\.h is not documented\. -drivers/hts221/include/hts221_params\.h:[0-9]+: warning: Member HTS221_PARAM_ADDR \(macro definition\) of file hts221_params\.h is not documented\. -drivers/hts221/include/hts221_params\.h:[0-9]+: warning: Member HTS221_PARAM_AVGX \(macro definition\) of file hts221_params\.h is not documented\. -drivers/hts221/include/hts221_params\.h:[0-9]+: warning: Member HTS221_PARAM_I2C \(macro definition\) of file hts221_params\.h is not documented\. -drivers/hts221/include/hts221_params\.h:[0-9]+: warning: Member HTS221_PARAM_RATE \(macro definition\) of file hts221_params\.h is not documented\. -drivers/hts221/include/hts221_params\.h:[0-9]+: warning: Member HTS221_SAULINFO \(macro definition\) of file hts221_params\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_DEVICE_ID \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_AV_CONF \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_CTRL_REG1 \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_CTRL_REG2 \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_H0_RH_X2 \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_H0_T0_OUT_H \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_H0_T0_OUT_L \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_H1_RH_X2 \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_H1_T0_OUT_H \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_H1_T0_OUT_L \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_HUMIDITY_OUT_H \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_HUMIDITY_OUT_L \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_STATUS_REG \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_T0_DEGC_X8 \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_T0_OUT_H \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_T0_OUT_L \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_T1_DEGC_X8 \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_T1_OUT_H \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_T1_OUT_L \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_T1_T0_MSB \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_TEMP_OUT_H \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_TEMP_OUT_L \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/hts221/include/hts221_regs\.h:[0-9]+: warning: Member HTS221_REGS_WHO_AM_I \(macro definition\) of file hts221_regs\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAMS \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAM_CS \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAM_DCX \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAM_INVERTED \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAM_NUM_LINES \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAM_RGB \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAM_ROTATION \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAM_RST \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAM_SPI \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAM_SPI_CLK \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ili9341/include/ili9341_params\.h:[0-9]+: warning: Member ILI9341_PARAM_SPI_MODE \(macro definition\) of file ili9341_params\.h is not documented\. -drivers/ina2xx/include/ina2xx_params\.h:[0-9]+: warning: Member INA2XX_PARAMS \(macro definition\) of file ina2xx_params\.h is not documented\. -drivers/ina2xx/include/ina2xx_params\.h:[0-9]+: warning: Member INA2XX_SAULINFO \(macro definition\) of file ina2xx_params\.h is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_CT_POL\(x\) \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_CT_POL_MASK \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_CT_POL_SHIFT \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_FAULT_QUEUE\(x\) \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_FAULT_QUEUE_MASK \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_FAULT_QUEUE_SHIFT \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_INTCT_MODE\(x\) \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_INTCT_MODE_MASK \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_INTCT_MODE_SHIFT \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_INT_POL\(x\) \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_INT_POL_MASK \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_INT_POL_SHIFT \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_OPERATION_MODE\(x\) \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_OPERATION_MODE_MASK \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_OPERATION_MODE_SHIFT \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_RESOLUTION\(x\) \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_RESOLUTION_MASK \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/adt7310\.h:[0-9]+: warning: Member ADT7310_CONF_RESOLUTION_SHIFT \(macro definition\) of group drivers_adt7310 is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_BUS_FREE_TIME_US \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CMD__GENERAL_CALL_RELATCH \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CMD__GENERAL_CALL_RESET \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CMD__RESTORE_FROM_NVRAM \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CMD__SAVE_TO_NVRAM \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CONFIG__ALARM_MODE_BIT \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CONFIG__ALERT_POL_BIT \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CONFIG__FTQ_MASK \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CONFIG__FTQ_SHIFT \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CONFIG__OS_BIT \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CONFIG__RESOLUTION_MASK \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CONFIG__RESOLUTION_SHIFT \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_CONFIG__SHUTDOWN_BIT \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_EEPROM_ADDR \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_FRACTIONAL_BASE \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_FRACTIONAL_MASK \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_FRACTIONAL_SHIFT \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_INTEGER_MASK \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_INTEGER_SHIFT \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_REG__CONFIG \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_REG__LIMIT_HIGH \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_REG__LIMIT_LOW \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_REG__NV_CONFIG \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_REG__NV_LIMIR_HIGH \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_REG__NV_LIMIT_LOW \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_REG__TEMPERATURE \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at30tse75x\.h:[0-9]+: warning: Member AT30TSE75X_TEMP_ADDR \(macro definition\) of group drivers_at30tse75x is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_BATMON_THRESHOLD \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_CHANNEL \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_MR_FSK_FEC \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_MR_FSK_MOD_IDX \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_MR_FSK_MORD \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_MR_FSK_SRATE \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_MR_OFDM_MCS \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_MR_OFDM_OPT \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_MR_OQPSK_CHIPS \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_MR_OQPSK_RATE \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_OQPSK_RATE \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_PHY_MODE \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_DEFAULT_SUBGHZ_CHANNEL \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member CONFIG_AT86RF215_RPC_EN \(macro definition\) of group drivers_at86rf215_config is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member at86rf215_clko_cur_t \(enumeration\) of group drivers_at86rf215 is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member at86rf215_clko_freq_t \(enumeration\) of group drivers_at86rf215 is not documented\. -drivers/include/at86rf215\.h:[0-9]+: warning: Member at86rf215_state_t \(enumeration\) of group drivers_at86rf215 is not documented\. -drivers/include/at86rf2xx\.h:[0-9]+: warning: Member AT86RF2XX_DEFAULT_CHANNEL \(macro definition\) of group drivers_at86rf2xx is not documented\. -drivers/include/at86rf2xx\.h:[0-9]+: warning: Member AT86RF2XX_DEFAULT_PAGE \(macro definition\) of group drivers_at86rf2xx is not documented\. -drivers/include/at86rf2xx\.h:[0-9]+: warning: Member AT86RF2XX_MAX_CHANNEL \(macro definition\) of group drivers_at86rf2xx is not documented\. -drivers/include/at86rf2xx\.h:[0-9]+: warning: Member AT86RF2XX_MIN_CHANNEL \(macro definition\) of group drivers_at86rf2xx is not documented\. -drivers/include/bh1900nux\.h:[0-9]+: warning: Member BH1900NUX_REG_ADDR \(macro definition\) of group drivers_bh1900nux is not documented\. -drivers/include/candev_mcp2515\.h:[0-9]+: warning: Member MCP2515_FILTERS \(macro definition\) of group drivers_mcp2515 is not documented\. -drivers/include/candev_mcp2515\.h:[0-9]+: warning: Member MCP2515_FILTERS_MB0 \(macro definition\) of group drivers_mcp2515 is not documented\. -drivers/include/candev_mcp2515\.h:[0-9]+: warning: Member MCP2515_FILTERS_MB1 \(macro definition\) of group drivers_mcp2515 is not documented\. -drivers/include/candev_mcp2515\.h:[0-9]+: warning: Member MCP2515_RX_MAILBOXES \(macro definition\) of group drivers_mcp2515 is not documented\. -drivers/include/cc2420\.h:[0-9]+: warning: Member CC2420_CHAN_DEFAULT \(macro definition\) of group drivers_cc2420 is not documented\. -drivers/include/cc2420\.h:[0-9]+: warning: Member CC2420_CHAN_MAX \(macro definition\) of group drivers_cc2420 is not documented\. -drivers/include/cc2420\.h:[0-9]+: warning: Member CC2420_CHAN_MIN \(macro definition\) of group drivers_cc2420 is not documented\. -drivers/include/cc2420\.h:[0-9]+: warning: Member CC2420_TXPOWER_DEFAULT \(macro definition\) of group drivers_cc2420 is not documented\. -drivers/include/cc2420\.h:[0-9]+: warning: Member CC2420_TXPOWER_MAX \(macro definition\) of group drivers_cc2420 is not documented\. -drivers/include/cc2420\.h:[0-9]+: warning: Member CC2420_TXPOWER_MIN \(macro definition\) of group drivers_cc2420 is not documented\. -drivers/include/ccs811\.h:[0-9]+: warning: Member CCS811_I2C_ADDRESS_2 \(macro definition\) of file ccs811\.h is not documented\. -drivers/include/dose\.h:[0-9]+: warning: Member dose_signal_t \(enumeration\) of group drivers_dose is not documented\. -drivers/include/dose\.h:[0-9]+: warning: Member dose_state_t \(enumeration\) of group drivers_dose is not documented\. -drivers/include/ds18\.h:[0-9]+: warning: Member DS18_ERROR \(macro definition\) of group drivers_ds18 is not documented\. -drivers/include/ds18\.h:[0-9]+: warning: Member DS18_OK \(macro definition\) of group drivers_ds18 is not documented\. -drivers/include/ds3231\.h:[0-9]+: warning: Member DS3231_FLAG_ALARM_2 \(macro definition\) of group drivers_ds3231 is not documented\. -drivers/include/ethos\.h:[0-9]+: warning: Member ETHOS_ESC_CHAR \(macro definition\) of group drivers_ethos is not documented\. -drivers/include/ethos\.h:[0-9]+: warning: Member ETHOS_FRAME_DELIMITER \(macro definition\) of group drivers_ethos is not documented\. -drivers/include/ethos\.h:[0-9]+: warning: Member ETHOS_FRAME_TYPE_DATA \(macro definition\) of group drivers_ethos is not documented\. -drivers/include/ethos\.h:[0-9]+: warning: Member ETHOS_FRAME_TYPE_HELLO \(macro definition\) of group drivers_ethos is not documented\. -drivers/include/ethos\.h:[0-9]+: warning: Member ETHOS_FRAME_TYPE_HELLO_REPLY \(macro definition\) of group drivers_ethos is not documented\. -drivers/include/ethos\.h:[0-9]+: warning: Member ETHOS_FRAME_TYPE_TEXT \(macro definition\) of group drivers_ethos is not documented\. -drivers/include/grove_ledbar\.h:[0-9]+: warning: Member GROVE_LEDBAR_G2R \(macro definition\) of group drivers_grove_ledbar is not documented\. -drivers/include/grove_ledbar\.h:[0-9]+: warning: Member GROVE_LEDBAR_R2G \(macro definition\) of group drivers_grove_ledbar is not documented\. -drivers/include/jc42\.h:[0-9]+: warning: Member JC42_NODEV \(macro definition\) of group drivers_jc42 is not documented\. -drivers/include/jc42\.h:[0-9]+: warning: Member JC42_NOI2C \(macro definition\) of group drivers_jc42 is not documented\. -drivers/include/jc42\.h:[0-9]+: warning: Member JC42_OK \(macro definition\) of group drivers_jc42 is not documented\. -drivers/include/kw2xrf\.h:[0-9]+: warning: Member KW2XRF_MAX_CHANNEL \(macro definition\) of group drivers_kw2xrf is not documented\. -drivers/include/kw2xrf\.h:[0-9]+: warning: Member KW2XRF_MIN_CHANNEL \(macro definition\) of group drivers_kw2xrf is not documented\. -drivers/include/kw41zrf\.h:[0-9]+: warning: Member KW41ZRF_MAX_CHANNEL \(macro definition\) of group drivers_kw41zrf is not documented\. -drivers/include/lis2dh12\.h:[0-9]+: warning: Member lis2dh12_saul_temp_driver \(variable\) of group drivers_lis2dh12 is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FM0_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FM1_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FM_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FM_SHIFT \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FTH0_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FTH1_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FTH2_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FTH3_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FTH4_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FTH_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_FTH_SHIFT \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_CTRL_REG_TR_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_SRC_REG_EMPTY_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_SRC_REG_FSS0_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_SRC_REG_FSS1_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_SRC_REG_FSS2_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_SRC_REG_FSS3_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_SRC_REG_FSS4_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_SRC_REG_FSS_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_SRC_REG_FSS_SHIFT \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_SRC_REG_OVRN_FIFO_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_FIFO_SRC_REG_WTM_MASK \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_CLICK_CFG \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_CLICK_SRC \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_CLICK_THS \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_CTRL_REG1 \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_CTRL_REG2 \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_CTRL_REG3 \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_CTRL_REG4 \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_CTRL_REG5 \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_CTRL_REG6 \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_FIFO_CTRL_REG \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_FIFO_SRC_REG \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_INT1_CFG \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_INT1_DURATION \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_INT1_SOURCE \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_INT1_THS \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_INT_COUNTER_REG \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_AUX_ADC1_H \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_AUX_ADC1_L \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_AUX_ADC2_H \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_AUX_ADC2_L \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_AUX_ADC3_H \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_AUX_ADC3_L \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_X_H \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_X_L \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_Y_H \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_Y_L \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_Z_H \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_OUT_Z_L \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_REFERENCE \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_STATUS_AUX \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_STATUS_REG \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_TEMP_CFG_REG \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_TIME_LATENCY \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_TIME_LIMIT \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_TIME_WINDOW \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lis3dh\.h:[0-9]+: warning: Member LIS3DH_REG_WHO_AM_I \(macro definition\) of group drivers_lis3dh is not documented\. -drivers/include/lsm303dlhc\.h:[0-9]+: warning: Member LSM303DLHC_ACC_DEFAULT_ADDRESS \(macro definition\) of group drivers_lsm303dlhc is not documented\. -drivers/include/lsm303dlhc\.h:[0-9]+: warning: Member LSM303DLHC_MAG_DEFAULT_ADDRESS \(macro definition\) of group drivers_lsm303dlhc is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_ADDR \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_INTSOURCE_AUTOSLEEP \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_INTSOURCE_FB \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_INTSOURCE_MEASURE \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_INTSOURCE_NONE \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_INTSOURCE_SHX \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_INTSOURCE_SHY \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_INTSOURCE_SHZ \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_INTSOURCE_TAP \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_INTSOURCE_UDLR \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_MG_PER_COUNT \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_PDET_X \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_PDET_Y \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_PDET_Z \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AM1 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AM16 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AM2 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AM32 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AM4 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AM64 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AM8 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AMPD \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AW1 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AW16 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AW32 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MMA7660_SR_AW8 \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MODE_ACTIVE_SHIFT \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MODE_AUTOSLEEP_SHIFT \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MODE_AUTOWAKE_SHIFT \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MODE_INTERRUPT_DEFAULT \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mma7660\.h:[0-9]+: warning: Member MODE_PRESCALE_SHIFT \(macro definition\) of group drivers_mma7660 is not documented\. -drivers/include/mpu9x50\.h:[0-9]+: warning: Member MPU9X50_DEFAULT_SAMPLE_RATE \(macro definition\) of group drivers_mpu9x50 is not documented\. -drivers/include/mpu9x50\.h:[0-9]+: warning: Member MPU9X50_MAX_COMP_SMPL_RATE \(macro definition\) of group drivers_mpu9x50 is not documented\. -drivers/include/mpu9x50\.h:[0-9]+: warning: Member MPU9X50_MAX_SAMPLE_RATE \(macro definition\) of group drivers_mpu9x50 is not documented\. -drivers/include/mpu9x50\.h:[0-9]+: warning: Member MPU9X50_MIN_COMP_SMPL_RATE \(macro definition\) of group drivers_mpu9x50 is not documented\. -drivers/include/mpu9x50\.h:[0-9]+: warning: Member MPU9X50_MIN_SAMPLE_RATE \(macro definition\) of group drivers_mpu9x50 is not documented\. -drivers/include/pcd8544\.h:[0-9]+: warning: Member PCD8544_DEFAULT_BIAS \(macro definition\) of group drivers_pcd8544 is not documented\. -drivers/include/pcd8544\.h:[0-9]+: warning: Member PCD8544_DEFAULT_CONTRAST \(macro definition\) of group drivers_pcd8544 is not documented\. -drivers/include/pcd8544\.h:[0-9]+: warning: Member PCD8544_DEFAULT_TEMPCOEF \(macro definition\) of group drivers_pcd8544 is not documented\. -drivers/include/pn532\.h:[0-9]+: warning: Member PN532_FW_FEATURES\(fwver\) \(macro definition\) of group drivers_pn532 is not documented\. -drivers/include/pn532\.h:[0-9]+: warning: Member PN532_FW_REVISION\(fwver\) \(macro definition\) of group drivers_pn532 is not documented\. -drivers/include/pn532\.h:[0-9]+: warning: Member PN532_FW_VERSION\(fwver\) \(macro definition\) of group drivers_pn532 is not documented\. -drivers/include/pn532\.h:[0-9]+: warning: Member PN532_IC_VERSION\(fwver\) \(macro definition\) of group drivers_pn532 is not documented\. -drivers/include/sht2x\.h:[0-9]+: warning: Member SHT2X_USER_EOB_MASK \(macro definition\) of group drivers_sht2x is not documented\. -drivers/include/sht2x\.h:[0-9]+: warning: Member SHT2X_USER_HEATER_MASK \(macro definition\) of group drivers_sht2x is not documented\. -drivers/include/sht2x\.h:[0-9]+: warning: Member SHT2X_USER_OTP_MASK \(macro definition\) of group drivers_sht2x is not documented\. -drivers/include/sht2x\.h:[0-9]+: warning: Member SHT2X_USER_RESERVED_MASK \(macro definition\) of group drivers_sht2x is not documented\. -drivers/include/sx127x\.h:[0-9]+: warning: Member SX127X_CHANNEL_HOPPING_FLAG \(macro definition\) of group drivers_sx127x is not documented\. -drivers/include/sx127x\.h:[0-9]+: warning: Member SX127X_ENABLE_CRC_FLAG \(macro definition\) of group drivers_sx127x is not documented\. -drivers/include/sx127x\.h:[0-9]+: warning: Member SX127X_ENABLE_FIXED_HEADER_LENGTH_FLAG \(macro definition\) of group drivers_sx127x is not documented\. -drivers/include/sx127x\.h:[0-9]+: warning: Member SX127X_IQ_INVERTED_FLAG \(macro definition\) of group drivers_sx127x is not documented\. -drivers/include/sx127x\.h:[0-9]+: warning: Member SX127X_LOW_DATARATE_OPTIMIZE_FLAG \(macro definition\) of group drivers_sx127x is not documented\. -drivers/include/sx127x\.h:[0-9]+: warning: Member SX127X_RX_CONTINUOUS_FLAG \(macro definition\) of group drivers_sx127x is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_ADDR_FLOAT \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_ADDR_HIGH \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_ADDR_LOW \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_BADDEV \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_GAIN_16X \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_GAIN_1X \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_INTEGRATIONTIME_101MS \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_INTEGRATIONTIME_13MS \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_INTEGRATIONTIME_402MS \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_INTEGRATIONTIME_NA \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_NOI2C \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl2561\.h:[0-9]+: warning: Member TSL2561_OK \(macro definition\) of group drivers_tsl2561 is not documented\. -drivers/include/tsl4531x\.h:[0-9]+: warning: Member TSL45311_PARTNO \(macro definition\) of group drivers_tsl4531x is not documented\. -drivers/include/tsl4531x\.h:[0-9]+: warning: Member TSL45313_ADDR \(macro definition\) of group drivers_tsl4531x is not documented\. -drivers/include/tsl4531x\.h:[0-9]+: warning: Member TSL45313_PARTNO \(macro definition\) of group drivers_tsl4531x is not documented\. -drivers/include/tsl4531x\.h:[0-9]+: warning: Member TSL45315_ADDR \(macro definition\) of group drivers_tsl4531x is not documented\. -drivers/include/tsl4531x\.h:[0-9]+: warning: Member TSL45315_PARTNO \(macro definition\) of group drivers_tsl4531x is not documented\. -drivers/include/tsl4531x\.h:[0-9]+: warning: Member TSL45317_ADDR \(macro definition\) of group drivers_tsl4531x is not documented\. -drivers/include/tsl4531x\.h:[0-9]+: warning: Member TSL45317_PARTNO \(macro definition\) of group drivers_tsl4531x is not documented\. -drivers/include/usbdev_mock\.h:[0-9]+: warning: Member usbdev_mock_ep_state_t \(enumeration\) of group drivers_usbdev_mock is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_GPIO1_PIN \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_GPIO2_PIN \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_LED_PIN \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_LIGHT_ADC_LINE \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_LIGHT_ADC_RES \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_SDCARD_SPI_PARAM_CLK \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_SDCARD_SPI_PARAM_CS \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_SDCARD_SPI_PARAM_DETECT \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_SDCARD_SPI_PARAM_MISO \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_SDCARD_SPI_PARAM_MOSI \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_SDCARD_SPI_PARAM_POWER \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_SDCARD_SPI_PARAM_POWER_AH \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_SDCARD_SPI_PARAM_SPI \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_TEMPERATURE_BASE_ADDR \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_internals\.h:[0-9]+: warning: Member IO1_TEMPERATURE_DEFAULT_ADDR \(macro definition\) of file io1_xplained_internals\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_params\.h:[0-9]+: warning: Member IO1_XPLAINED_PARAMS \(macro definition\) of file io1_xplained_params\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_params\.h:[0-9]+: warning: Member IO1_XPLAINED_PARAM_ADDR \(macro definition\) of file io1_xplained_params\.h is not documented\. -drivers/io1_xplained/include/io1_xplained_params\.h:[0-9]+: warning: Member IO1_XPLAINED_SAUL_INFO \(macro definition\) of file io1_xplained_params\.h is not documented\. -drivers/ir_nec/include/ir_nec_params\.h:35: warning: Member IR_NEC_PARAM_PIN \(macro definition\) of file ir_nec_params\.h is not documented\. -drivers/ir_nec/include/ir_nec_params\.h:39: warning: Member IR_NEC_PARAMS \(macro definition\) of file ir_nec_params\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_CMD_EN \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_CMD_LIGHT \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_CMD_MODE \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_CMD_RAGNE \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_CMD_RES \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_RANGE_1 \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_RANGE_2 \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_RANGE_3 \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_RANGE_4 \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_REG_CMD \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_REG_HDATA \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_REG_LDATA \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_RES_EXT_ADC \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_RES_EXT_TIM \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_RES_INT_12 \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_RES_INT_16 \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_RES_INT_4 \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020-internal\.h:[0-9]+: warning: Member ISL29020_RES_INT_8 \(macro definition\) of file isl29020-internal\.h is not documented\. -drivers/isl29020/include/isl29020_params\.h:[0-9]+: warning: Member ISL29020_PARAMS \(macro definition\) of file isl29020_params\.h is not documented\. -drivers/isl29020/include/isl29020_params\.h:[0-9]+: warning: Member ISL29020_PARAM_ADDR \(macro definition\) of file isl29020_params\.h is not documented\. -drivers/isl29020/include/isl29020_params\.h:[0-9]+: warning: Member ISL29020_PARAM_MODE \(macro definition\) of file isl29020_params\.h is not documented\. -drivers/isl29020/include/isl29020_params\.h:[0-9]+: warning: Member ISL29020_PARAM_RANGE \(macro definition\) of file isl29020_params\.h is not documented\. -drivers/isl29020/include/isl29020_params\.h:[0-9]+: warning: Member ISL29020_SAUL_INFO \(macro definition\) of file isl29020_params\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_CMD_RESET \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_CON1_MASK_MODE \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_CON1_MASK_RANGE \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_CON1_MASK_RES \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_CON1_MASK_SYNC \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_CON1_SYNCOFF \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_CON1_SYNCON \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_ID \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_BDHB \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_BDLB \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_CONF1 \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_CONF2 \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_CONF3 \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_GDHB \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_GDLB \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_HTHHB \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_HTHLB \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_ID \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_LTHHB \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_LTHLB \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_RDHB \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_RDLB \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_RESET \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125-internal\.h:[0-9]+: warning: Member ISL29125_REG_STATUS \(macro definition\) of file isl29125-internal\.h is not documented\. -drivers/isl29125/include/isl29125_params\.h:[0-9]+: warning: Member ISL29125_PARAMS \(macro definition\) of file isl29125_params\.h is not documented\. -drivers/isl29125/include/isl29125_params\.h:[0-9]+: warning: Member ISL29125_PARAM_GPIO \(macro definition\) of file isl29125_params\.h is not documented\. -drivers/isl29125/include/isl29125_params\.h:[0-9]+: warning: Member ISL29125_PARAM_MODE \(macro definition\) of file isl29125_params\.h is not documented\. -drivers/isl29125/include/isl29125_params\.h:[0-9]+: warning: Member ISL29125_PARAM_RANGE \(macro definition\) of file isl29125_params\.h is not documented\. -drivers/isl29125/include/isl29125_params\.h:[0-9]+: warning: Member ISL29125_PARAM_RES \(macro definition\) of file isl29125_params\.h is not documented\. -drivers/itg320x/include/itg320x_params\.h:[0-9]+: warning: Member ITG320X_PARAMS \(macro definition\) of file itg320x_params\.h is not documented\. -drivers/itg320x/include/itg320x_params\.h:[0-9]+: warning: Member ITG320X_PARAM_ADDR \(macro definition\) of file itg320x_params\.h is not documented\. -drivers/itg320x/include/itg320x_params\.h:[0-9]+: warning: Member ITG320X_PARAM_CLK_SEL \(macro definition\) of file itg320x_params\.h is not documented\. -drivers/itg320x/include/itg320x_params\.h:[0-9]+: warning: Member ITG320X_PARAM_DEV \(macro definition\) of file itg320x_params\.h is not documented\. -drivers/itg320x/include/itg320x_params\.h:[0-9]+: warning: Member ITG320X_PARAM_INT_DRIVE \(macro definition\) of file itg320x_params\.h is not documented\. -drivers/itg320x/include/itg320x_params\.h:[0-9]+: warning: Member ITG320X_PARAM_INT_LEVEL \(macro definition\) of file itg320x_params\.h is not documented\. -drivers/itg320x/include/itg320x_params\.h:[0-9]+: warning: Member ITG320X_PARAM_INT_PIN \(macro definition\) of file itg320x_params\.h is not documented\. -drivers/itg320x/include/itg320x_params\.h:[0-9]+: warning: Member ITG320X_PARAM_ISR_DIV \(macro definition\) of file itg320x_params\.h is not documented\. -drivers/itg320x/include/itg320x_params\.h:[0-9]+: warning: Member ITG320X_PARAM_LPF_BW \(macro definition\) of file itg320x_params\.h is not documented\. -drivers/itg320x/include/itg320x_params\.h:[0-9]+: warning: Member ITG320X_SAUL_INFO \(macro definition\) of file itg320x_params\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_DLPFS \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_GYRO_XOUT_H \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_GYRO_XOUT_L \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_GYRO_YOUT_H \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_GYRO_YOUT_L \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_GYRO_ZOUT_H \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_GYRO_ZOUT_L \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_INT_CFG \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_INT_STATUS \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_PWR_MGM \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_SMPLRT_DIV \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_TEMP_OUT_H \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_TEMP_OUT_L \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/itg320x/include/itg320x_regs\.h:[0-9]+: warning: Member ITG320X_REG_WHO_AM_I \(macro definition\) of file itg320x_regs\.h is not documented\. -drivers/jc42/include/jc42_internal\.h:[0-9]+: warning: Member JC42_BUS_FREE_TIME_US \(macro definition\) of file jc42_internal\.h is not documented\. -drivers/jc42/include/jc42_internal\.h:[0-9]+: warning: Member JC42_REG_CAP \(macro definition\) of file jc42_internal\.h is not documented\. -drivers/jc42/include/jc42_internal\.h:[0-9]+: warning: Member JC42_REG_CONFIG \(macro definition\) of file jc42_internal\.h is not documented\. -drivers/jc42/include/jc42_internal\.h:[0-9]+: warning: Member JC42_REG_DEVICEID \(macro definition\) of file jc42_internal\.h is not documented\. -drivers/jc42/include/jc42_internal\.h:[0-9]+: warning: Member JC42_REG_MANID \(macro definition\) of file jc42_internal\.h is not documented\. -drivers/jc42/include/jc42_internal\.h:[0-9]+: warning: Member JC42_REG_TEMP \(macro definition\) of file jc42_internal\.h is not documented\. -drivers/jc42/include/jc42_internal\.h:[0-9]+: warning: Member JC42_REG_TEMP_CRITICAL \(macro definition\) of file jc42_internal\.h is not documented\. -drivers/jc42/include/jc42_internal\.h:[0-9]+: warning: Member JC42_REG_TEMP_LOWER \(macro definition\) of file jc42_internal\.h is not documented\. -drivers/jc42/include/jc42_internal\.h:[0-9]+: warning: Member JC42_REG_TEMP_UPPER \(macro definition\) of file jc42_internal\.h is not documented\. -drivers/jc42/include/jc42_params\.h:[0-9]+: warning: Member JC42_PARAMS \(macro definition\) of file jc42_params\.h is not documented\. -drivers/jc42/include/jc42_params\.h:[0-9]+: warning: Member JC42_PARAM_ADDR \(macro definition\) of file jc42_params\.h is not documented\. -drivers/jc42/include/jc42_params\.h:[0-9]+: warning: Member JC42_PARAM_I2C_DEV \(macro definition\) of file jc42_params\.h is not documented\. -drivers/jc42/include/jc42_params\.h:[0-9]+: warning: Member JC42_PARAM_SPEED \(macro definition\) of file jc42_params\.h is not documented\. -drivers/jc42/include/jc42_params\.h:[0-9]+: warning: Member JC42_SAUL_INFO \(macro definition\) of file jc42_params\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_params\.h:[0-9]+: warning: Member KW2XRF_PARAMS \(macro definition\) of file kw2xrf_params\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_params\.h:[0-9]+: warning: Member KW2XRF_PARAM_CS \(macro definition\) of file kw2xrf_params\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_params\.h:[0-9]+: warning: Member KW2XRF_PARAM_INT \(macro definition\) of file kw2xrf_params\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_params\.h:[0-9]+: warning: Member KW2XRF_PARAM_RESET \(macro definition\) of file kw2xrf_params\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_params\.h:[0-9]+: warning: Member KW2XRF_PARAM_SLEEP \(macro definition\) of file kw2xrf_params\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_params\.h:[0-9]+: warning: Member KW2XRF_PARAM_SPI \(macro definition\) of file kw2xrf_params\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_params\.h:[0-9]+: warning: Member KW2XRF_PARAM_SPI_CLK \(macro definition\) of file kw2xrf_params\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ABORT_STS_PLL_ABORTED \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ABORT_STS_SW_ABORTED \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ABORT_STS_TC3_ABORTED \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_AGC_CTRL_AD_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_AGC_CTRL_AGC_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_AGC_CTRL_AGC_LEVEL\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_AGC_CTRL_AGC_LEVEL_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_AGC_CTRL_AGC_LEVEL_SHIFT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_AGC_CTRL_ANTX \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_AGC_CTRL_SNF_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_CTRLMODE \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_EN\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_EN_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_HZ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_POL0 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_POL1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_POL2 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_POL3 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA2_CORR_PEAKS_CCA2_MIN_NUM_CORR_TH\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA2_CORR_PEAKS_CCA2_MIN_NUM_CORR_TH_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA2_CORR_PEAKS_CCA2_MIN_NUM_CORR_TH_SHIFT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA2_CORR_PEAKS_CCA2_NUM_CORR_PEAKS_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA_CTRL_AGC_FRZ_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA_CTRL_CCA3_AND_NOT_OR \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA_CTRL_CONT_RSSI_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA_CTRL_OWER_COMP_EN_CCA1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA_CTRL_OWER_COMP_EN_ED \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA_CTRL_OWER_COMP_EN_LQI \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_CCA_CTRL_QI_RSSI_NOT_CORR \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DTM_CTRL1_ATM_LOCKED \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DTM_CTRL1_DTM_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DTM_CTRL1_PAGE0 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DTM_CTRL1_PAGE1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DTM_CTRL1_PAGE2 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DTM_CTRL1_PAGE3 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DTM_CTRL1_PAGE4 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DTM_CTRL1_PAGE5 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DUAL_PAN_CTRL_ACTIVE_NETWORK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DUAL_PAN_CTRL_CURRENT_NETWORK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DUAL_PAN_CTRL_DUAL_PAN_AUTO \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DUAL_PAN_CTRL_DUAL_PAN_SAM_LVL\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DUAL_PAN_CTRL_DUAL_PAN_SAM_LVL_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DUAL_PAN_CTRL_DUAL_PAN_SAM_LVL_SHIFT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DUAL_PAN_CTRL_PANCORDNTR1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DUAL_PAN_STS_DUAL_PAN_REMAIN_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DUAL_PAN_STS_RECD_ON_PAN0 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_DUAL_PAN_STS_RECD_ON_PAN1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DATA1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DATA2 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DATA3 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DATA4 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DATA5 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DATA6 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DATA7 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DATA8 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DIR1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DIR2 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DIR3 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DIR4 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DIR5 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DIR6 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DIR7 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DIR8 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DS1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DS2 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DS3 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DS4 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DS5 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DS6 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DS7 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_DS8 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_EN1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_EN2 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_EN3 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_EN4 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_EN5 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_EN6 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_EN7 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_EN8 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_SEL1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_SEL2 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_SEL3 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_SEL4 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_SEL5 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_SEL6 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_SEL7 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_GPIO_PUL_SEL8 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_LPPS_CTRL_LPPS_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_MISC_PAD_CTRL_ANTX_CURR \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_MISC_PAD_CTRL_IRQ_B_OD \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_MISC_PAD_CTRL_MISO_HIZ_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_MISC_PAD_CTRL_NON_GPIO_DS \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_PART_ID_MANUF_ID_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_PART_ID_MASK_SET_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_PART_ID_VERSION_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_PLL_INT1_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_RX_FRAME_FILTER_ACK_FT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_RX_FRAME_FILTER_ACTIVE_PROMISCUOUS \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_RX_FRAME_FILTER_BEACON_FT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_RX_FRAME_FILTER_CMD_FT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_RX_FRAME_FILTER_DATA_FT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_RX_FRAME_FILTER_FRM_VER\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_RX_FRAME_FILTER_FRM_VER_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_RX_FRAME_FILTER_FRM_VER_SHIFT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_RX_FRAME_FILTER_NS_FT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_CTRL_CLR_NEW_SEQ_INHIBIT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_CTRL_EVENT_TMR_DO_NOT_LATCH \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_CTRL_LATCH_PREAMBLE \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_CTRL_NO_RX_RECYCLE \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_CTRL_PLL_ABORT_OVRD \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_CTRL_PSM_LOCK_DIS \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_CTRL_SEQ_STATE_CTRL_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_CTRL_SEQ_STATE_CTRL_SHIFT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_STS_NEW_SEQ_INHIBIT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_STS_RX_MODE \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_STS_RX_TIMEOUT_PENDING \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_STS_SEQ_IDLE \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_STS_TMR2_SEQ_TRIG_ARMED \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SEQ_MGR_STS_XCVSEQ_ACTUAL_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SOFT_RESET_PLL_RST \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SOFT_RESET_REGS_RST \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SOFT_RESET_RX_RST \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SOFT_RESET_SEQ_MGR_RST \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SOFT_RESET_SOG_RST \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_SOFT_RESET_TX_RST \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TESTMODE_CTRL_CONTINUOUS_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TESTMODE_CTRL_FPGA_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TESTMODE_CTRL_HOT_ANT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TESTMODE_CTRL_IDEAL_PFC_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TESTMODE_CTRL_IDEAL_RSSI_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TMR_PRESCALE_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TMR_PRESCALE_SET\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TMR_PRESCALE_SHIFT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TX_MODE_CTRL_BT_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TX_MODE_CTRL_DTS0 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TX_MODE_CTRL_DTS1 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TX_MODE_CTRL_DTS2 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TX_MODE_CTRL_DTS_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDMI_TX_MODE_CTRL_TX_INV \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_CLK_OUT_DIV\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_CLK_OUT_DIV_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_CLK_OUT_DS \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_CLK_OUT_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_CLK_OUT_EXTEND \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_CLK_OUT_HIZ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_CLK_OUT_SR \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS1_CCAIRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS1_FILTERFAIL_IRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS1_PLL_UNLOCK_IRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS1_RXIRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS1_RXWTRMRKIRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS1_RX_FRM_PEND \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS1_SEQIRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS1_TXIRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS2_CCA \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS2_CRCVALID \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS2_PB_ERR_IRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS2_PI \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS2_SRCADDR \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS2_TMRSTATUS \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS2_WAKE_IRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR1IRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR1MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR2IRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR2MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR3IRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR3MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR4IRQ \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR4MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR_IRQ\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR_IRQ_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_IRQSTS3_TMR_IRQ_SHIFT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PA_PWR\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PA_PWR_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL1_AUTOACK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL1_CCABFRTX \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL1_RXACKRQD \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL1_SLOTTED \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL1_TMRTRIGEN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL1_XCVSEQ\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL1_XCVSEQ_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL2_CCAMSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL2_CRC_MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL2_FILTERFAIL_MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL2_PLL_UNLOCK_MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL2_RXMSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL2_RX_WMRK_MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL2_SEQMSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL2_TXMSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL3_PB_ERR_MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL3_TMR1CMP_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL3_TMR2CMP_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL3_TMR3CMP_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL3_TMR4CMP_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL3_WAKE_MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL4_CCATYPE\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL4_CCATYPE_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL4_CCATYPE_SHIFT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL4_PANCORDNTR0 \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL4_PROMISCUOUS \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL4_TC2PRIME_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL4_TC3TMOUT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL4_TMRLOAD \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PHY_CTRL4_TRCV_MSK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PLL_INT0_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PLL_INT0_VAL\(x\) \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PWR_MODES_AUTODOZE \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PWR_MODES_PMC_MODE \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PWR_MODES_XTALEN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_PWR_MODES_XTAL_READY \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_RX_FRM_LENGTH_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_SRC_CTRL_ACK_FRM_PND \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_SRC_CTRL_INDEX_DISABLE \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_SRC_CTRL_INDEX_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_SRC_CTRL_INDEX_MASK \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_SRC_CTRL_INDEX_SHIFT \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member MKW2XDM_SRC_CTRL_SRCADDR_EN \(macro definition\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member mkw2xdrf_dregister \(enumeration\) of file kw2xrf_reg\.h is not documented\. -drivers/kw2xrf/include/kw2xrf_reg\.h:[0-9]+: warning: Member mkw2xdrf_iregister \(enumeration\) of file kw2xrf_reg\.h is not documented\. -drivers/kw41zrf/include/kw41zrf_intern\.h:[0-9]+: warning: Member KW41ZRF_ENABLE_LEDS \(macro definition\) of file kw41zrf_intern\.h is not documented\. -drivers/kw41zrf/include/kw41zrf_intern\.h:[0-9]+: warning: Member KW41ZRF_LED_IRQ_OFF \(macro definition\) of file kw41zrf_intern\.h is not documented\. -drivers/kw41zrf/include/kw41zrf_intern\.h:[0-9]+: warning: Member KW41ZRF_LED_IRQ_ON \(macro definition\) of file kw41zrf_intern\.h is not documented\. -drivers/kw41zrf/include/kw41zrf_intern\.h:[0-9]+: warning: Member KW41ZRF_LED_NDSM_OFF \(macro definition\) of file kw41zrf_intern\.h is not documented\. -drivers/kw41zrf/include/kw41zrf_intern\.h:[0-9]+: warning: Member KW41ZRF_LED_NDSM_ON \(macro definition\) of file kw41zrf_intern\.h is not documented\. -drivers/kw41zrf/include/kw41zrf_intern\.h:[0-9]+: warning: Member KW41ZRF_LED_RX_OFF \(macro definition\) of file kw41zrf_intern\.h is not documented\. -drivers/kw41zrf/include/kw41zrf_intern\.h:[0-9]+: warning: Member KW41ZRF_LED_RX_ON \(macro definition\) of file kw41zrf_intern\.h is not documented\. -drivers/kw41zrf/include/kw41zrf_intern\.h:[0-9]+: warning: Member KW41ZRF_LED_TX_OFF \(macro definition\) of file kw41zrf_intern\.h is not documented\. -drivers/kw41zrf/include/kw41zrf_intern\.h:[0-9]+: warning: Member KW41ZRF_LED_TX_ON \(macro definition\) of file kw41zrf_intern\.h is not documented\. -drivers/kw41zrf/include/kw41zrf_intern\.h:[0-9]+: warning: Member KW41ZRF_PM_BLOCKER \(macro definition\) of file kw41zrf_intern\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL1_ALLON \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL1_MODE_POS \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL1_PD \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL1_XEN \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL1_YEN \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL1_ZEN \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL4_BDU \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL4_BLE \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL4_FS1 \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL4_FS2 \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL4_FS_POS \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL4_SIM \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL4_ST1 \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_CTRL4_ST2 \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_CTRL1 \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_CTRL2 \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_CTRL3 \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_CTRL4 \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_CTRL5 \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_FIFO_CTRL \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_FIFO_SRC \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_INT1_CFG \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_INT1_DURATION \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_INT1_SRC \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_INT1_THS_XH \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_INT1_THS_XL \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_INT1_THS_YH \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_INT1_THS_YL \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_INT1_THS_ZH \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_INT1_THS_ZL \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_OUT_TEMP \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_OUT_X_H \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_OUT_X_L \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_OUT_Y_H \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_OUT_Y_L \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_OUT_Z_H \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_OUT_Z_L \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_REF \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_STATUS \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d-regs\.h:[0-9]+: warning: Member L3G4200D_REG_WHO_AM_I \(macro definition\) of file l3g4200d-regs\.h is not documented\. -drivers/l3g4200d/include/l3g4200d_params\.h:[0-9]+: warning: Member L3G4200D_PARAMS \(macro definition\) of file l3g4200d_params\.h is not documented\. -drivers/l3g4200d/include/l3g4200d_params\.h:[0-9]+: warning: Member L3G4200D_PARAM_ADDR \(macro definition\) of file l3g4200d_params\.h is not documented\. -drivers/l3g4200d/include/l3g4200d_params\.h:[0-9]+: warning: Member L3G4200D_PARAM_I2C \(macro definition\) of file l3g4200d_params\.h is not documented\. -drivers/l3g4200d/include/l3g4200d_params\.h:[0-9]+: warning: Member L3G4200D_PARAM_INT1 \(macro definition\) of file l3g4200d_params\.h is not documented\. -drivers/l3g4200d/include/l3g4200d_params\.h:[0-9]+: warning: Member L3G4200D_PARAM_INT2 \(macro definition\) of file l3g4200d_params\.h is not documented\. -drivers/l3g4200d/include/l3g4200d_params\.h:[0-9]+: warning: Member L3G4200D_PARAM_MODE \(macro definition\) of file l3g4200d_params\.h is not documented\. -drivers/l3g4200d/include/l3g4200d_params\.h:[0-9]+: warning: Member L3G4200D_PARAM_SCALE \(macro definition\) of file l3g4200d_params\.h is not documented\. -drivers/l3g4200d/include/l3g4200d_params\.h:[0-9]+: warning: Member L3G4200D_SAUL_INFO \(macro definition\) of file l3g4200d_params\.h is not documented\. -drivers/lc709203f/include/lc709203f_params\.h:[0-9]+: warning: Member LC709203F_PARAMS \(macro definition\) of file lc709203f_params\.h is not documented\. -drivers/lc709203f/include/lc709203f_params\.h:[0-9]+: warning: Member LC709203F_PARAMS_ADDR \(macro definition\) of file lc709203f_params\.h is not documented\. -drivers/lc709203f/include/lc709203f_params\.h:[0-9]+: warning: Member LC709203F_PARAMS_ALARM_PIN \(macro definition\) of file lc709203f_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_params\.h:[0-9]+: warning: Member LIS2DH12_PARAMS \(macro definition\) of file lis2dh12_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_params\.h:[0-9]+: warning: Member LIS2DH12_PARAMS_BUSCFG \(macro definition\) of file lis2dh12_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_params\.h:[0-9]+: warning: Member LIS2DH12_PARAM_ADDR \(macro definition\) of file lis2dh12_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_params\.h:[0-9]+: warning: Member LIS2DH12_PARAM_I2C \(macro definition\) of file lis2dh12_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_params\.h:[0-9]+: warning: Member LIS2DH12_PARAM_INT_PIN1 \(macro definition\) of file lis2dh12_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_params\.h:[0-9]+: warning: Member LIS2DH12_PARAM_INT_PIN2 \(macro definition\) of file lis2dh12_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_params\.h:[0-9]+: warning: Member LIS2DH12_PARAM_RATE \(macro definition\) of file lis2dh12_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_params\.h:[0-9]+: warning: Member LIS2DH12_PARAM_RESOLUTION \(macro definition\) of file lis2dh12_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_params\.h:[0-9]+: warning: Member LIS2DH12_PARAM_SCALE \(macro definition\) of file lis2dh12_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_params\.h:[0-9]+: warning: Member LIS2DH12_SAULINFO \(macro definition\) of file lis2dh12_params\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_registers\.h:[0-9]+: warning: Member LIS2DH12_CLICK_THS_LIR \(macro definition\) of file lis2dh12_registers\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_registers\.h:[0-9]+: warning: Member LIS2DH12_CTRL_REG2_FDS \(macro definition\) of file lis2dh12_registers\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_registers\.h:[0-9]+: warning: Member LIS2DH12_CTRL_REG2_HPCLICK \(macro definition\) of file lis2dh12_registers\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_registers\.h:[0-9]+: warning: Member LIS2DH12_CTRL_REG2_HP_IA1 \(macro definition\) of file lis2dh12_registers\.h is not documented\. -drivers/lis2dh12/include/lis2dh12_registers\.h:[0-9]+: warning: Member LIS2DH12_CTRL_REG2_HP_IA2 \(macro definition\) of file lis2dh12_registers\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member CTRL_REG0_DEFAULT \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_ACT_DUR \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_ACT_THS \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_CLICK_CFG \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_CLICK_SRC \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_CLICK_THS \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_CTRL_REG0 \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_CTRL_REG1 \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_CTRL_REG2 \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_CTRL_REG3 \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_CTRL_REG4 \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_CTRL_REG5 \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_CTRL_REG6 \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_FIFO_CTRL_REG \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_FIFO_SRC_REG \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_INT1_CFG \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_INT1_DURATION \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_INT1_SRC \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_INT1_THS \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_INT2_CFG \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_INT2_DURATION \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_INT2_SRC \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_INT2_THS \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_OUT_TEMP_H \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_OUT_TEMP_L \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_OUT_X_H \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_OUT_X_L \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_OUT_Y_H \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_OUT_Y_L \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_OUT_Z_H \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_OUT_Z_L \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_REFERENCE \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_STATUS_REG \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_STATUS_REG_AUX \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_TEMP_CFG_REG \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_TIME_LATENCY \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_TIME_LIMIT \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_TIME_WINDOW \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member REG_WHO_AM_I \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis2dh12/lis2dh12_internal\.h:[0-9]+: warning: Member WHO_AM_I_VAL \(macro definition\) of file lis2dh12_internal\.h is not documented\. -drivers/lis3dh/include/lis3dh_params\.h:[0-9]+: warning: Member LIS3DH_PARAMS \(macro definition\) of file lis3dh_params\.h is not documented\. -drivers/lis3dh/include/lis3dh_params\.h:[0-9]+: warning: Member LIS3DH_PARAM_CLK \(macro definition\) of file lis3dh_params\.h is not documented\. -drivers/lis3dh/include/lis3dh_params\.h:[0-9]+: warning: Member LIS3DH_PARAM_CS \(macro definition\) of file lis3dh_params\.h is not documented\. -drivers/lis3dh/include/lis3dh_params\.h:[0-9]+: warning: Member LIS3DH_PARAM_INT1 \(macro definition\) of file lis3dh_params\.h is not documented\. -drivers/lis3dh/include/lis3dh_params\.h:[0-9]+: warning: Member LIS3DH_PARAM_INT2 \(macro definition\) of file lis3dh_params\.h is not documented\. -drivers/lis3dh/include/lis3dh_params\.h:[0-9]+: warning: Member LIS3DH_PARAM_ODR \(macro definition\) of file lis3dh_params\.h is not documented\. -drivers/lis3dh/include/lis3dh_params\.h:[0-9]+: warning: Member LIS3DH_PARAM_SCALE \(macro definition\) of file lis3dh_params\.h is not documented\. -drivers/lis3dh/include/lis3dh_params\.h:[0-9]+: warning: Member LIS3DH_PARAM_SPI \(macro definition\) of file lis3dh_params\.h is not documented\. -drivers/lis3dh/include/lis3dh_params\.h:[0-9]+: warning: Member LIS3DH_SAUL_INFO \(macro definition\) of file lis3dh_params\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3DML_WHO_AM_I_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_CHIP_ADDR \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_CHIP_ID \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_CTRL_REG1 \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_CTRL_REG2 \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_CTRL_REG3 \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_CTRL_REG4 \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_CTRL_REG5 \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_INT_CFG_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_INT_SRC_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_INT_THS_H_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_INT_THS_L_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_CFG_IEA \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_CFG_IEN \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_CFG_LIR \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_CFG_XIEN \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_CFG_YIEN \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_CFG_ZIEN \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_SRC_INT \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_SRC_MROI \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_SRC_NTH_X \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_SRC_NTH_Y \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_SRC_NTH_Z \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_SRC_PTH_X \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_SRC_PTH_Y \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_INT_SRC_PTH_Z \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_REG1_TEMP_EN \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_REG2_REBOOT \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_REG2_SOFT_RST \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_REG3_CONT_CONV_MODE \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_REG3_LOW_POWER_EN \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_REG3_Z_LOW_POWER \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_REG3_Z_MEDIUM_POWER \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_REG5_BDU \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_MASK_REG5_BDU_OFF \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_OUT_X_H_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_OUT_X_L_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_OUT_Y_H_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_OUT_Y_L_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_OUT_Z_H_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_OUT_Z_L_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_STATUS_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_TEMP_OUT_H_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl-internal\.h:[0-9]+: warning: Member LIS3MDL_TEMP_OUT_L_REG \(macro definition\) of file lis3mdl-internal\.h is not documented\. -drivers/lis3mdl/include/lis3mdl_params\.h:[0-9]+: warning: Member LIS3MDL_PARAMS \(macro definition\) of file lis3mdl_params\.h is not documented\. -drivers/lis3mdl/include/lis3mdl_params\.h:[0-9]+: warning: Member LIS3MDL_PARAM_ADDR \(macro definition\) of file lis3mdl_params\.h is not documented\. -drivers/lis3mdl/include/lis3mdl_params\.h:[0-9]+: warning: Member LIS3MDL_PARAM_I2C \(macro definition\) of file lis3mdl_params\.h is not documented\. -drivers/lis3mdl/include/lis3mdl_params\.h:[0-9]+: warning: Member LIS3MDL_PARAM_ODR \(macro definition\) of file lis3mdl_params\.h is not documented\. -drivers/lis3mdl/include/lis3mdl_params\.h:[0-9]+: warning: Member LIS3MDL_PARAM_OPMODE \(macro definition\) of file lis3mdl_params\.h is not documented\. -drivers/lis3mdl/include/lis3mdl_params\.h:[0-9]+: warning: Member LIS3MDL_PARAM_SCALE \(macro definition\) of file lis3mdl_params\.h is not documented\. -drivers/lis3mdl/include/lis3mdl_params\.h:[0-9]+: warning: Member LIS3MDL_PARAM_XYMODE \(macro definition\) of file lis3mdl_params\.h is not documented\. -drivers/lis3mdl/include/lis3mdl_params\.h:[0-9]+: warning: Member LIS3MDL_PARAM_ZMODE \(macro definition\) of file lis3mdl_params\.h is not documented\. -drivers/lis3mdl/include/lis3mdl_params\.h:[0-9]+: warning: Member LIS3MDL_SAUL_INFO \(macro definition\) of file lis3mdl_params\.h is not documented\. -drivers/lpd8808/include/lpd8808_params\.h:[0-9]+: warning: Member LPD8808_PARAMS \(macro definition\) of file lpd8808_params\.h is not documented\. -drivers/lpd8808/include/lpd8808_params\.h:[0-9]+: warning: Member LPD8808_PARAM_LED_CNT \(macro definition\) of file lpd8808_params\.h is not documented\. -drivers/lpd8808/include/lpd8808_params\.h:[0-9]+: warning: Member LPD8808_PARAM_PIN_CLK \(macro definition\) of file lpd8808_params\.h is not documented\. -drivers/lpd8808/include/lpd8808_params\.h:[0-9]+: warning: Member LPD8808_PARAM_PIN_DAT \(macro definition\) of file lpd8808_params\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_internal\.h:[0-9]+: warning: Member LPSXXX_CTRL_REG1_ODR \(macro definition\) of file lpsxxx_internal\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_internal\.h:[0-9]+: warning: Member LPSXXX_CTRL_REG1_ODR_POS \(macro definition\) of file lpsxxx_internal\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_internal\.h:[0-9]+: warning: Member LPSXXX_CTRL_REG1_SIM \(macro definition\) of file lpsxxx_internal\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_internal\.h:[0-9]+: warning: Member LPSXXX_REG_PRESS_OUT_H \(macro definition\) of file lpsxxx_internal\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_internal\.h:[0-9]+: warning: Member LPSXXX_REG_PRESS_OUT_L \(macro definition\) of file lpsxxx_internal\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_internal\.h:[0-9]+: warning: Member LPSXXX_REG_PRESS_OUT_XL \(macro definition\) of file lpsxxx_internal\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_internal\.h:[0-9]+: warning: Member LPSXXX_REG_STATUS \(macro definition\) of file lpsxxx_internal\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_internal\.h:[0-9]+: warning: Member LPSXXX_REG_TEMP_OUT_H \(macro definition\) of file lpsxxx_internal\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_internal\.h:[0-9]+: warning: Member LPSXXX_REG_TEMP_OUT_L \(macro definition\) of file lpsxxx_internal\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_internal\.h:[0-9]+: warning: Member LPSXXX_REG_WHO_AM_I \(macro definition\) of file lpsxxx_internal\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_params\.h:[0-9]+: warning: Member LPSXXX_PARAMS \(macro definition\) of file lpsxxx_params\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_params\.h:[0-9]+: warning: Member LPSXXX_PARAM_ADDR \(macro definition\) of file lpsxxx_params\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_params\.h:[0-9]+: warning: Member LPSXXX_PARAM_I2C \(macro definition\) of file lpsxxx_params\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_params\.h:[0-9]+: warning: Member LPSXXX_PARAM_RATE \(macro definition\) of file lpsxxx_params\.h is not documented\. -drivers/lpsxxx/include/lpsxxx_params\.h:[0-9]+: warning: Member LPSXXX_SAUL_INFO \(macro definition\) of file lpsxxx_params\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_100HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_10HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_1620HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_1HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_200HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_25HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_400HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_50HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_LOW_POWER \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_N1344HZ_L5376HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_POWEROFF \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_XEN \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_YEN \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL1_A_ZEN \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL3_A_I1_AOI1 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL3_A_I1_AOI2 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL3_A_I1_CLICK \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL3_A_I1_DRDY1 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL3_A_I1_DRDY2 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL3_A_I1_NONE \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL3_A_I1_OVERRUN \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL3_A_I1_WTM \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL4_A_BDU \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL4_A_BLE \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL4_A_HR \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL4_A_SCALE_16G \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL4_A_SCALE_2G \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL4_A_SCALE_4G \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_CTRL4_A_SCALE_8G \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_GAIN_1 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_GAIN_2 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_GAIN_3 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_GAIN_4 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_GAIN_5 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_GAIN_6 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_GAIN_7 \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_MAG_MODE_CONTINUOUS \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_MAG_MODE_SINGLE \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_MAG_MODE_SLEEP \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_CRA_M \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_CRB_M \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_CTRL1_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_CTRL2_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_CTRL3_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_CTRL4_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_CTRL5_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_CTRL5_A_BOOT \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_CTRL5_A_FIFO_EN \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_CTRL6_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_MR_M \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_X_H_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_X_H_M \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_X_L_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_X_L_M \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_Y_H_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_Y_H_M \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_Y_L_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_Y_L_M \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_Z_H_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_Z_H_M \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_Z_L_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_OUT_Z_L_M \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_REFERENCE_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_SR_M \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_STATUS_A \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_TEMP_OUT_H \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_REG_TEMP_OUT_L \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_STATUS_XDA \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_STATUS_XOR \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_STATUS_YDA \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_STATUS_YOR \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_STATUS_ZDA \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_STATUS_ZOR \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_STATUS_ZYXDA \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_STATUS_ZYXOR \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_TEMP_DIS \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_TEMP_EN \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_TEMP_SAMPLE_0_75HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_TEMP_SAMPLE_15HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_TEMP_SAMPLE_1_5HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_TEMP_SAMPLE_220HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_TEMP_SAMPLE_30HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_TEMP_SAMPLE_3HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_TEMP_SAMPLE_75HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc-internal\.h:[0-9]+: warning: Member LSM303DLHC_TEMP_SAMPLE_7_5HZ \(macro definition\) of file lsm303dlhc-internal\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc_params\.h:[0-9]+: warning: Member LSM303DLHC_PARAMS \(macro definition\) of file lsm303dlhc_params\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc_params\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_ACC_ADDR \(macro definition\) of file lsm303dlhc_params\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc_params\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_ACC_PIN \(macro definition\) of file lsm303dlhc_params\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc_params\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_ACC_RATE \(macro definition\) of file lsm303dlhc_params\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc_params\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_ACC_SCALE \(macro definition\) of file lsm303dlhc_params\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc_params\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_MAG_ADDR \(macro definition\) of file lsm303dlhc_params\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc_params\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_MAG_GAIN \(macro definition\) of file lsm303dlhc_params\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc_params\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_MAG_PIN \(macro definition\) of file lsm303dlhc_params\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc_params\.h:[0-9]+: warning: Member LSM303DLHC_PARAM_MAG_RATE \(macro definition\) of file lsm303dlhc_params\.h is not documented\. -drivers/lsm303dlhc/include/lsm303dlhc_params\.h:[0-9]+: warning: Member LSM303DLHC_SAUL_INFO \(macro definition\) of file lsm303dlhc_params\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_CTRL3_C_BOOT \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_CTRL_FS_MASK \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_CTRL_FS_SHIFT \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_CTRL_ODR_MASK \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_CTRL_ODR_SHIFT \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_FIFO_CTRL3_GYRO_DEC_SHIFT \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_FIFO_CTRL5_CONTINUOUS_MODE \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_FIFO_CTRL5_FIFO_ODR_SHIFT \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_CTRL10_C \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_CTRL1_XL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_CTRL2_G \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_CTRL3_C \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_CTRL4_C \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_CTRL5_C \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_CTRL6_C \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_CTRL7_G \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_CTRL8_XL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_CTRL9_XL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_D6D_SRC \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_DRDY_PULSE_CFG_G \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_CTRL1 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_CTRL2 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_CTRL3 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_CTRL4 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_CTRL5 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_DATA_OUT_H \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_DATA_OUT_L \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_STATUS1 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_STATUS2 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_STATUS3 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FIFO_STATUS4 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FREE_FALL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FUNC_CFG_ACCESS \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FUNC_SRC_1 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_FUNC_SRC_2 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_INT1_CTRL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_INT2_CTRL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_INT_DUR2 \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_MASTER_CMD_CODE \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_MASTER_CONFIG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_MD1_CFG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_MD2_CFG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTX_H_G \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTX_H_XL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTX_L_G \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTX_L_XL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTY_H_G \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTY_H_XL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTY_L_G \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTY_L_XL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTZ_H_G \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTZ_H_XL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTZ_L_G \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUTZ_L_XL \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUT_MAG_RAW_X_H \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUT_MAG_RAW_X_L \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUT_MAG_RAW_Y_H \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUT_MAG_RAW_Y_L \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUT_MAG_RAW_Z_H \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUT_MAG_RAW_Z_L \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUT_TEMP_H \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_OUT_TEMP_L \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB10_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB11_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB12_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB13_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB14_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB15_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB16_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB17_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB18_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB1_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB2_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB3_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB4_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB5_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB6_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB7_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB8_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSORHUB9_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSOR_SYC_RES_RATIO \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENSOR_SYNC_TIME_FRAME \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_SENS_SYNC_SPI_ERR_CODE \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_STATUS_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_STEP_COUNTER_H \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_STEP_COUNTER_L \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_STEP_TIMESTAMP_H \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_STEP_TIMESTAMP_L \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_TAP_CFG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_TAP_SRC \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_TAP_THS_6D \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_TIMESTAMP0_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_TIMESTAMP1_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_TIMESTAMP2_REG \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_WAKE_UP_DUR \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_WAKE_UP_SRC \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_WAKE_UP_THS \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_WHO_AM_I \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_WRIST_TILT_IA \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_X_OFS_USR \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_Y_OFS_USR \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_internal\.h:[0-9]+: warning: Member LSM6DSL_REG_Z_OFS_USR \(macro definition\) of file lsm6dsl_internal\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_params\.h:[0-9]+: warning: Member LSM6DSL_PARAMS \(macro definition\) of file lsm6dsl_params\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_params\.h:[0-9]+: warning: Member LSM6DSL_PARAM_ACC_FIFO_DEC \(macro definition\) of file lsm6dsl_params\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_params\.h:[0-9]+: warning: Member LSM6DSL_PARAM_ACC_FS \(macro definition\) of file lsm6dsl_params\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_params\.h:[0-9]+: warning: Member LSM6DSL_PARAM_ACC_ODR \(macro definition\) of file lsm6dsl_params\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_params\.h:[0-9]+: warning: Member LSM6DSL_PARAM_ADDR \(macro definition\) of file lsm6dsl_params\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_params\.h:[0-9]+: warning: Member LSM6DSL_PARAM_GYRO_FIFO_DEC \(macro definition\) of file lsm6dsl_params\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_params\.h:[0-9]+: warning: Member LSM6DSL_PARAM_GYRO_FS \(macro definition\) of file lsm6dsl_params\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_params\.h:[0-9]+: warning: Member LSM6DSL_PARAM_GYRO_ODR \(macro definition\) of file lsm6dsl_params\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_params\.h:[0-9]+: warning: Member LSM6DSL_PARAM_I2C \(macro definition\) of file lsm6dsl_params\.h is not documented\. -drivers/lsm6dsl/include/lsm6dsl_params\.h:[0-9]+: warning: Member LSM6DSL_SAUL_INFO \(macro definition\) of file lsm6dsl_params\.h is not documented\. -drivers/ltc4150/include/ltc4150_params\.h:[0-9]+: warning: Member LTC4150_PARAMS \(macro definition\) of file ltc4150_params\.h is not documented\. -drivers/ltc4150/include/ltc4150_params\.h:[0-9]+: warning: Member LTC4150_PARAM_FLAGS \(macro definition\) of file ltc4150_params\.h is not documented\. -drivers/ltc4150/include/ltc4150_params\.h:[0-9]+: warning: Member LTC4150_PARAM_INT \(macro definition\) of file ltc4150_params\.h is not documented\. -drivers/ltc4150/include/ltc4150_params\.h:[0-9]+: warning: Member LTC4150_PARAM_POL \(macro definition\) of file ltc4150_params\.h is not documented\. -drivers/ltc4150/include/ltc4150_params\.h:[0-9]+: warning: Member LTC4150_PARAM_PULSES \(macro definition\) of file ltc4150_params\.h is not documented\. -drivers/ltc4150/include/ltc4150_params\.h:[0-9]+: warning: Member LTC4150_PARAM_RECDATA \(macro definition\) of file ltc4150_params\.h is not documented\. -drivers/ltc4150/include/ltc4150_params\.h:[0-9]+: warning: Member LTC4150_PARAM_RECS \(macro definition\) of file ltc4150_params\.h is not documented\. -drivers/ltc4150/include/ltc4150_params\.h:[0-9]+: warning: Member LTC4150_PARAM_SHUTDOWN \(macro definition\) of file ltc4150_params\.h is not documented\. -drivers/ltc4150/include/ltc4150_params\.h:[0-9]+: warning: Member LTC4150_SAULINFO \(macro definition\) of file ltc4150_params\.h is not documented\. -drivers/mag3110/include/mag3110_params\.h:[0-9]+: warning: Member MAG3110_PARAMS \(macro definition\) of file mag3110_params\.h is not documented\. -drivers/mag3110/include/mag3110_params\.h:[0-9]+: warning: Member MAG3110_PARAM_ADDR \(macro definition\) of file mag3110_params\.h is not documented\. -drivers/mag3110/include/mag3110_params\.h:[0-9]+: warning: Member MAG3110_PARAM_I2C \(macro definition\) of file mag3110_params\.h is not documented\. -drivers/mag3110/include/mag3110_params\.h:[0-9]+: warning: Member MAG3110_PARAM_OFFSET \(macro definition\) of file mag3110_params\.h is not documented\. -drivers/mag3110/include/mag3110_params\.h:[0-9]+: warning: Member MAG3110_SAUL_INFO \(macro definition\) of file mag3110_params\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_CTRL_REG1_AC \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_CTRL_REG1_DROS\(x\) \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_CTRL_REG1_DROS_MASK \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_CTRL_REG1_DROS_SHIFT \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_CTRL_REG1_FR \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_CTRL_REG1_TM \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_CTRL_REG2_AUTO_MRST_EN \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_CTRL_REG2_MAG_RST \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_CTRL_REG2_RAW \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_DR_STATUS_XDR \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_DR_STATUS_XOW \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_DR_STATUS_YDR \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_DR_STATUS_YOW \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_DR_STATUS_ZDR \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_DR_STATUS_ZOW \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_DR_STATUS_ZYXDR \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_DR_STATUS_ZYXOW \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_SYSMOD_ACTIVE \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_SYSMOD_ACTIVE_RAW \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mag3110/include/mag3110_reg\.h:[0-9]+: warning: Member MAG3110_SYSMOD_STANDBY \(macro definition\) of file mag3110_reg\.h is not documented\. -drivers/mcp2515/include/mcp2515_params\.h:[0-9]+: warning: Member MCP2515_DEFAULT_CONFIG \(macro definition\) of file mcp2515_params\.h is not documented\. -drivers/mcp2515/include/mcp2515_params\.h:[0-9]+: warning: Member MCP2515_PARAM_CS \(macro definition\) of file mcp2515_params\.h is not documented\. -drivers/mcp2515/include/mcp2515_params\.h:[0-9]+: warning: Member MCP2515_PARAM_INT \(macro definition\) of file mcp2515_params\.h is not documented\. -drivers/mcp2515/include/mcp2515_params\.h:[0-9]+: warning: Member MCP2515_PARAM_RST \(macro definition\) of file mcp2515_params\.h is not documented\. -drivers/mcp2515/include/mcp2515_params\.h:[0-9]+: warning: Member MCP2515_PARAM_SPI \(macro definition\) of file mcp2515_params\.h is not documented\. -drivers/mcp2515/include/mcp2515_params\.h:[0-9]+: warning: Member MCP2515_PARAM_SPI_CLK \(macro definition\) of file mcp2515_params\.h is not documented\. -drivers/mcp2515/include/mcp2515_params\.h:[0-9]+: warning: Member MCP2515_PARAM_SPI_MODE \(macro definition\) of file mcp2515_params\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_BFPCTRL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_BFPCTRL_B0BFE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_BFPCTRL_B0BFM \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_BFPCTRL_B0BFS \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_BFPCTRL_B1BFE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_BFPCTRL_B1BFM \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_BFPCTRL_B1BFS \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_ABAT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_CLKEN \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_CLKPRE0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_CLKPRE1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_CLKPRE_MASK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_OSM \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_REQOP0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_REQOP1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_REQOP2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_REQOP_CONFIGURATION \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_REQOP_LISTEN_ONLY \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_REQOP_LOOPBACK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_REQOP_MASK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_REQOP_NORMAL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANCTRL_REQOP_SLEEP \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTE_ERRIE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTE_MERRE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTE_RX0IE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTE_RX1IE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTE_TX0IE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTE_TX1IE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTE_TX2IE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTE_WAKIE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTF_ERRIF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTF_MERRF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTF_RX0IF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTF_RX1IF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTF_TX0IF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTF_TX1IF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTF_TX2IF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANINTF_WAKIF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_ICOD0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_ICOD1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_ICOD2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_ICOD_MASK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_OPMOD0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_OPMOD1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_OPMOD2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_OPMOD_CONFIGURATION \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_OPMOD_LISTEN_ONLY \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_OPMOD_LOOPBACK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_OPMOD_MASK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_OPMOD_NORMAL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CANSTAT_OPMOD_SLEEP \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1_BRP0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1_BRP1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1_BRP2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1_BRP3 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1_BRP4 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1_BRP5 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1_BRP_MASK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1_SJW0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1_SJW1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF1_SJW_MASK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2_BTLMODE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2_PHSEG10 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2_PHSEG11 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2_PHSEG12 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2_PHSEG_MASK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2_PRSEG0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2_PRSEG1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2_PRSEG2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2_PRSEG_MASK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF2_SAM \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF3 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF3_PHSEG20 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF3_PHSEG21 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF3_PHSEG22 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF3_PHSEG_MASK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF3_SOF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_CNF3_WAKFIL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_EFLG \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_EFLG_EWARN \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_EFLG_RX0OVR \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_EFLG_RX1OVR \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_EFLG_RXEP \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_EFLG_RXWAR \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_EFLG_TXBO \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_EFLG_TXEP \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_EFLG_TXWAR \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_IRQ_ERROR \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_IRQ_FLAGGED \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_IRQ_HANDLED \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_IRQ_RX \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_IRQ_TX \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_IRQ_WAKEUP \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_ABORT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_CLOCKOUT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_LISTEN_ONLY \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_LOOPBACK \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_MULTISAMPLE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_ONESHOT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_ROLLOVER \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_SLEEP \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_SOFOUT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_WAKE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_OPTION_WAKE_GLITCH_FILTER \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_REC \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_BUKT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_BUKT1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_FILHIT0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_MODE_RECV_ALL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_MODE_RECV_FILTER \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_MODE_RECV_EXT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_MODE_RECV_STD \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_MODE_RECV_STD_OR_EXT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_RXM0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_RXM1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0CTRL_RXRTR \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0D0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0D1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0D2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0D3 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0D4 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0D5 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0D6 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0D7 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0DLC \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB0SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_FILHIT0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_FILHIT1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_FILHIT2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_MODE_RECV_ALL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_MODE_RECV_FILTER \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_MODE_RECV_EXT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_MODE_RECV_STD \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_MODE_RECV_STD_OR_EXT \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_RXM0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_RXM1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1CTRL_RXRTR \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1D0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1D1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1D2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1D3 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1D4 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1D5 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1D6 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1D7 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1DLC \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXB1SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXBUF_RXB0D0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXBUF_RXB0SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXBUF_RXB1D0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXBUF_RXB1SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF0EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF0EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF0SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF0SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF1EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF1EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF1SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF1SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF2EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF2EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF2SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF2SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF3EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF3EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF3SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF3SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF4EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF4EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF4SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF4SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF5EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF5EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF5SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXF5SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXM0EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXM0EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXM0SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXM0SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXM1EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXM1EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXM1SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RXM1SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_RX_IDE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_SPI_BITMOD \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_SPI_LOAD_TXBUF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_SPI_READ \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_SPI_READ_RXBUF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_SPI_READ_STATUS \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_SPI_RESET \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_SPI_RTS \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_SPI_RX_STATUS \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_SPI_WRITE \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TEC \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0CTRL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0D0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0D1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0D2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0D3 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0D4 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0D5 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0D6 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0D7 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0DLC \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB0SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1CTRL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1D0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1D1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1D2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1D3 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1D4 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1D5 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1D6 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1D7 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1DLC \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB1SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2CTRL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2D0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2D1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2D2 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2D3 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2D4 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2D5 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2D6 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2D7 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2DLC \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2EID0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2EID8 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXB2SIDL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBCTRL_ABTF \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBCTRL_MLOA \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBCTRL_TXERR \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBCTRL_TXP0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBCTRL_TXP1 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBCTRL_TXREQ \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBUF_TXB0D0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBUF_TXB0SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBUF_TXB1D0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBUF_TXB1SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBUF_TXB2D0 \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXBUF_TXB2SIDH \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXRTSCTRL \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXRTSCTRL_B0RTS \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXRTSCTRL_B0RTSM \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXRTSCTRL_B1RTS \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXRTSCTRL_B1RTSM \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXRTSCTRL_B2RTS \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mcp2515/mcp2515_defines\.h:[0-9]+: warning: Member MCP2515_TXRTSCTRL_B2RTSM \(macro definition\) of file mcp2515_defines\.h is not documented\. -drivers/mhz19/include/mhz19_internals\.h:[0-9]+: warning: Member MHZ19_BUF_SIZE \(macro definition\) of file mhz19_internals\.h is not documented\. -drivers/mhz19/include/mhz19_internals\.h:[0-9]+: warning: Member MHZ19_TIMEOUT_CMD \(macro definition\) of file mhz19_internals\.h is not documented\. -drivers/mhz19/include/mhz19_internals\.h:[0-9]+: warning: Member MHZ19_TIMEOUT_READ \(macro definition\) of file mhz19_internals\.h is not documented\. -drivers/mhz19/include/mhz19_internals\.h:[0-9]+: warning: Member MHZ19_UART_BAUDRATE \(macro definition\) of file mhz19_internals\.h is not documented\. -drivers/mhz19/include/mhz19_params\.h:[0-9]+: warning: Member MHZ19_SAUL_INFO \(macro definition\) of file mhz19_params\.h is not documented\. -drivers/mma7660/include/mma7660_params\.h:[0-9]+: warning: Member MMA7660_PARAMS \(macro definition\) of file mma7660_params\.h is not documented\. -drivers/mma7660/include/mma7660_params\.h:[0-9]+: warning: Member MMA7660_PARAM_ADDR \(macro definition\) of file mma7660_params\.h is not documented\. -drivers/mma7660/include/mma7660_params\.h:[0-9]+: warning: Member MMA7660_PARAM_AMSR \(macro definition\) of file mma7660_params\.h is not documented\. -drivers/mma7660/include/mma7660_params\.h:[0-9]+: warning: Member MMA7660_PARAM_AWSR \(macro definition\) of file mma7660_params\.h is not documented\. -drivers/mma7660/include/mma7660_params\.h:[0-9]+: warning: Member MMA7660_PARAM_FILT \(macro definition\) of file mma7660_params\.h is not documented\. -drivers/mma7660/include/mma7660_params\.h:[0-9]+: warning: Member MMA7660_PARAM_I2C \(macro definition\) of file mma7660_params\.h is not documented\. -drivers/mma7660/include/mma7660_params\.h:[0-9]+: warning: Member MMA7660_SAUL_INFO \(macro definition\) of file mma7660_params\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_params\.h:[0-9]+: warning: Member MMA8X5X_PARAMS \(macro definition\) of file mma8x5x_params\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_params\.h:[0-9]+: warning: Member MMA8X5X_PARAM_ADDR \(macro definition\) of file mma8x5x_params\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_params\.h:[0-9]+: warning: Member MMA8X5X_PARAM_I2C \(macro definition\) of file mma8x5x_params\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_params\.h:[0-9]+: warning: Member MMA8X5X_PARAM_OFFSET \(macro definition\) of file mma8x5x_params\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_params\.h:[0-9]+: warning: Member MMA8X5X_PARAM_RANGE \(macro definition\) of file mma8x5x_params\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_params\.h:[0-9]+: warning: Member MMA8X5X_PARAM_RATE \(macro definition\) of file mma8x5x_params\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_params\.h:[0-9]+: warning: Member MMA8X5X_SAUL_INFO \(macro definition\) of file mma8x5x_params\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG1_ACTIVE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG1_ASR_12HZ5 \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG1_ASR_1HZ56 \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG1_ASR_50HZ \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG1_ASR_6HZ25 \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG1_ASR_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG1_DR\(x\) \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG1_DR_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG1_DR_SHIFT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG1_F_READ \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_MODS_HR \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_MODS_LNLP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_MODS_LP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_MODS_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_MODS_NORMAL \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_RST \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_SLPE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_SMODS_HR \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_SMODS_LNLP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_SMODS_LP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_SMODS_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_SMODS_NORMAL \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG2_ST \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG3_FIFO_GATE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG3_IPOL \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG3_PP_OD \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG3_WAKE_FF_MT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG3_WAKE_LNDPRT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG3_WAKE_PULSE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG3_WAKE_TRANS \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG4_INT_EN_ASLP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG4_INT_EN_DRDY \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG4_INT_EN_FF_MT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG4_INT_EN_FIFO \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG4_INT_EN_LNDPRT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG4_INT_EN_PULSE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG4_INT_EN_TRANS \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG5_INT_CFG_ASLP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG5_INT_CFG_DRDY \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG5_INT_CFG_FF_MT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG5_INT_CFG_FIFO \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG5_INT_CFG_LNDPRT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG5_INT_CFG_PULSE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_CTRL_REG5_INT_CFG_TRANS \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_CFG_ELE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_CFG_OAE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_CFG_XEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_CFG_YEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_CFG_ZEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_SRC_EA \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_SRC_XHE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_SRC_XHP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_SRC_YHE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_SRC_YHP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_SRC_ZHE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_SRC_ZHP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_THS_DBCNTM \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_FF_MT_THS_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_F_SETUP_F_WMRK_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_F_SETUP_MODE_CIRCULAR \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_F_SETUP_MODE_DISABLED \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_F_SETUP_MODE_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_F_SETUP_MODE_STOP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_F_SETUP_MODE_TRIGGER \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_F_STATUS_F_CNT_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_F_STATUS_F_OVF \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_F_STATUS_F_WMRK_FLAG \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_HP_FILTER_HPF_BYP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_HP_FILTER_LPF_EN \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_HP_FILTER_SEL_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_INT_SOURCE_ASLP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_INT_SOURCE_DRDY \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_INT_SOURCE_FF_MT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_INT_SOURCE_FIFO \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_INT_SOURCE_LNDPRT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_INT_SOURCE_PULSE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_INT_SOURCE_TRANS \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_BF_ZCOMP_BKFR_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_BF_ZCOMP_ZLOCK_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_CFG_DBCNTM \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_CFG_PL_EN \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_STATUS_BAFRO \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_STATUS_LAPO_L_LEFT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_STATUS_LAPO_L_RIGHT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_STATUS_LAPO_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_STATUS_LAPO_P_DOWN \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_STATUS_LAPO_P_UP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_STATUS_LO \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PL_STATUS_NEWLP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_CFG_DPA \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_CFG_ELE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_CFG_XDPEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_CFG_XSPEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_CFG_YDPEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_CFG_YSPEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_CFG_ZDPEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_CFG_ZSPEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_SRC_AXX \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_SRC_AXY \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_SRC_AXZ \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_SRC_DPE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_SRC_EA \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_SRC_POLX \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_SRC_POLY \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_SRC_POLZ \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_THSX_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_THSY_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_PULSE_THSZ_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_P_L_HYS_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_P_L_THS_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_STATUS_XOW \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_STATUS_YDR \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_STATUS_YOW \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_STATUS_ZDR \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_STATUS_ZOW \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_STATUS_ZYXDR \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_STATUS_ZYXOW \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_SYSMOD_FGERR \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_SYSMOD_FGT_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_SYSMOD_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_SYSMOD_SLEEP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_SYSMOD_STANDBY \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_SYSMOD_WAKE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_CFG_ELE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_CFG_HPF_BYP \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_CFG_XTEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_CFG_YTEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_CFG_ZTEFE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_SRC_EA \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_SRC_XTEVENT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_SRC_XTPOL \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_SRC_YTEVENT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_SRC_YTPOL \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_SRC_ZTEVENT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_SRC_ZTPOL \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_THS_DBCNTM \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRANSIENT_THS_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRIG_CFG_FF_MT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRIG_CFG_LNDPRT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRIG_CFG_PULSE \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_TRIG_CFG_TRANS \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_XYZ_DATA_CFG_FS_MASK \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mma8x5x/include/mma8x5x_regs\.h:[0-9]+: warning: Member MMA8X5X_XYZ_DATA_CFG_HPF_OUT \(macro definition\) of file mma8x5x_regs\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_params\.h:[0-9]+: warning: Member MPL3115A2_PARAMS \(macro definition\) of file mpl3115a2_params\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_params\.h:[0-9]+: warning: Member MPL3115A2_PARAM_ADDR \(macro definition\) of file mpl3115a2_params\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_params\.h:[0-9]+: warning: Member MPL3115A2_PARAM_I2C \(macro definition\) of file mpl3115a2_params\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_params\.h:[0-9]+: warning: Member MPL3115A2_PARAM_RATIO \(macro definition\) of file mpl3115a2_params\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_params\.h:[0-9]+: warning: Member MPL3115A2_SAUL_INFO \(macro definition\) of file mpl3115a2_params\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG1_ALT \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG1_OST \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG1_OS\(x\) \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG1_OS_MASK \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG1_OS_SHIFT \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG1_RAW \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG1_RST \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG1_SBYB \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG2_ALARM_SEL \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG2_LOAD_OPUT \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG2_ST\(x\) \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG2_ST_MASK \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG2_ST_SHIFT \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG3_IPOL1 \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG3_IPOL2 \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG3_PP_OD1 \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG3_PP_OD2 \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG4_INT_EN_DRDY \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG4_INT_EN_FIFO \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG4_INT_EN_PCHG \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG4_INT_EN_PTH \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG4_INT_EN_PW \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG4_INT_EN_TCHG \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG4_INT_EN_TTH \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG4_INT_EN_TW \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG5_INT_DRDY \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG5_INT_FIFO \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG5_INT_PCHG \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG5_INT_PTH \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG5_INT_PW \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG5_INT_TCHG \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG5_INT_TTH \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_CTRL_REG5_INT_TW \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_PT_DATA_CFG_DREM \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_PT_DATA_CFG_PDEFE \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_PT_DATA_CFG_TDEFE \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_STATUS_PDR \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_STATUS_POW \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_STATUS_PTDR \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_STATUS_PTOW \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_STATUS_TDR \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpl3115a2/include/mpl3115a2_reg\.h:[0-9]+: warning: Member MPL3115A2_STATUS_TOW \(macro definition\) of file mpl3115a2_reg\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_BYPASS_SLEEP_US \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_COMP_FUSE_ROM \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_COMP_MODE_SLEEP_US \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_COMP_POWER_DOWN \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_COMP_SELF_TEST \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_COMP_SINGLE_MEASURE \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_PWR_ACCEL \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_PWR_CHANGE_SLEEP_US \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_PWR_GYRO \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_PWR_PLL \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_PWR_RESET \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_PWR_WAKEUP \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_internal\.h:[0-9]+: warning: Member MPU9X50_RESET_SLEEP_US \(macro definition\) of file mpu9x50_internal\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_params\.h:[0-9]+: warning: Member MPU9X50_PARAMS \(macro definition\) of file mpu9x50_params\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_params\.h:[0-9]+: warning: Member MPU9X50_PARAM_ADDR \(macro definition\) of file mpu9x50_params\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_params\.h:[0-9]+: warning: Member MPU9X50_PARAM_COMP_ADDR \(macro definition\) of file mpu9x50_params\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_params\.h:[0-9]+: warning: Member MPU9X50_PARAM_I2C \(macro definition\) of file mpu9x50_params\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_params\.h:[0-9]+: warning: Member MPU9X50_PARAM_SAMPLE_RATE \(macro definition\) of file mpu9x50_params\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_params\.h:[0-9]+: warning: Member MPU9X50_SAUL_INFO \(macro definition\) of file mpu9x50_params\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member BIT_DMP_EN \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member BIT_I2C_BYPASS_EN \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member BIT_I2C_MST_EN \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member BIT_I2C_MST_VDDIO \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member BIT_PWR_MGMT1_SLEEP \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member BIT_SLAVE_EN \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member BIT_SLAVE_RW \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member BIT_SLV0_DELAY_EN \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member BIT_SLV1_DELAY_EN \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member BIT_WAIT_FOR_ES \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member COMPASS_ASAX_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member COMPASS_ASAY_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member COMPASS_ASAZ_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member COMPASS_ASTC_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member COMPASS_CNTL_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member COMPASS_DATA_START_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member COMPASS_ST1_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member COMPASS_ST2_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member COMPASS_WHOAMI_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_ACCEL_CFG_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_ACCEL_START_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_COMPASS_DATA_START_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_DMP_INT_STATUS \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_EXT_SENS_DATA_START_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_FIFO_COUNT_START_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_FIFO_EN_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_FIFO_RW_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_GYRO_CFG_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_GYRO_START_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_I2C_DELAY_CTRL_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_I2C_MST_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_INT_ENABLE_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_INT_PIN_CFG_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_INT_STATUS \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_LPF_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_PWR_MGMT_1_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_PWR_MGMT_2_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_RATE_DIV_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE0_ADDR_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE0_CTRL_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE0_DATA_OUT_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE0_REG_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE1_ADDR_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE1_CTRL_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE1_DATA_OUT_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE1_REG_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE2_DATA_OUT_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE3_DATA_OUT_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_SLAVE4_CTRL_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_TEMP_START_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_USER_CTRL_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_WHO_AM_I_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mpu9x50/include/mpu9x50_regs\.h:[0-9]+: warning: Member MPU9X50_YG_OFFS_TC_REG \(macro definition\) of file mpu9x50_regs\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_params\.h:[0-9]+: warning: Member MRF24J40_PARAMS \(macro definition\) of file mrf24j40_params\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_params\.h:[0-9]+: warning: Member MRF24J40_PARAM_CS \(macro definition\) of file mrf24j40_params\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_params\.h:[0-9]+: warning: Member MRF24J40_PARAM_INT \(macro definition\) of file mrf24j40_params\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_params\.h:[0-9]+: warning: Member MRF24J40_PARAM_RESET \(macro definition\) of file mrf24j40_params\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_params\.h:[0-9]+: warning: Member MRF24J40_PARAM_SPI \(macro definition\) of file mrf24j40_params\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_params\.h:[0-9]+: warning: Member MRF24J40_PARAM_SPI_CLK \(macro definition\) of file mrf24j40_params\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ACCESS_READ \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ACCESS_WRITE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ACCESS_WRITE_LNG \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ADDR_OFFSET \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_BBREG1_RXDECINV \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_BBREG2_CCACSTH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_BBREG2_CCAMODE2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_BBREG2_CCAMODE3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_BBREG2_RSSIRDY \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_BBREG6_RSSIMODE1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_BBREG6_RSSIMODE2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_GPIO_0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_GPIO_1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_GPIO_2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_GPIO_3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_GPIO_4 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_GPIO_5 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTCON_HSYMTMRIE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTCON_RXIE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTCON_SECIE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTCON_SLPIE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTCON_TXG1IE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTCON_TXG2IE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTCON_TXNIE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTCON_WAKEIE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTSTAT_HSYMTMRIF \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTSTAT_RXIF \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTSTAT_SECIF \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTSTAT_SLPIF \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTSTAT_TXG1IF \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTSTAT_TXG2IF \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTSTAT_TXNIF \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_INTSTAT_WAKEIF \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_LONG_ADDR_TRANS \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_PACON2_FIFOEN \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_PACON2_TXONT7 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_PACON2_TXONT8 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_PACON2_TXONTS0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_PACON2_TXONTS1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_PACON2_TXONTS2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_PACON2_TXONTS3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ACKTMOUT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ACKTMOUT_MAWD0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ACKTMOUT_MAWD1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ACKTMOUT_MAWD2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ACKTMOUT_MAWD3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ACKTMOUT_MAWD4 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ACKTMOUT_MAWD5 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_ACKTMOUT_MAWD6 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ASSOEADR0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ASSOEADR1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ASSOEADR2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ASSOEADR3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ASSOEADR4 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ASSOEADR5 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ASSOEADR6 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ASSOEADR7 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ASSOSADR0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ASSOSADR1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_BBREG0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_BBREG1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_BBREG2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_BBREG3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_BBREG4 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_BBREG6 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_CCAEDTH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_EADR0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_EADR1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_EADR2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_EADR3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_EADR4 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_EADR5 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_EADR6 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_EADR7 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ESLOTG1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ESLOTG23 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ESLOTG45 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ESLOTG67 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_FRMOFFSET \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_GATECLK \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_GPIO \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_HSYMTMRH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_HSYMTMRL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_INTCON \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_INTSTAT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_MAINCNT0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_MAINCNT1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_MAINCNT2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_MAINCNT3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_ORDER \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_PACON0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_PACON1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_PACON2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_PANIDH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_PANIDL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_REMCNTH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_REMCNTL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RFCON0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RFCON1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RFCON2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RFCON3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RFCON5 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RFCON6 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RFCON7 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RFCON8 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RFCTL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RFSTATE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RSSI \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RXFLUSH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RXMCR \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_RXSR \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SADRH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SADRL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SECCON0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SECCON1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SECCR2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SLPACK \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SLPCAL0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SLPCAL1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SLPCAL2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SLPCON0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SLPCON1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SOFTRST \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SYMTICKH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_SYMTICKL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TESTMODE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TRISGPIO \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TXBCON0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TXBCON1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TXG1CON \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TXG2CON \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TXMCR \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TXNCON \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TXPEND \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TXSTAT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TXSTBL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_TXTIME \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE10 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE11 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE12 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE4 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE5 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE6 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE7 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE8 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_UPNONCE9 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_WAKECON \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_WAKETIMEH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_REG_WAKETIMEL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RESET_DELAY \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RESET_PULSE_WIDTH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON1_VCOOPT0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON1_VCOOPT1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON1_VCOOPT2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON1_VCOOPT3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON1_VCOOPT4 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON1_VCOOPT5 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON1_VCOOPT6 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON1_VCOOPT7 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON2_PLLEN \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON6_20MRECVR \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON6_BATEN \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON6_TXFIL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON7_SLPCLKSEL1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON7_SLPCLKSEL2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCON8_RFVCO \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCTL_RFRST \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCTL_RFRXMODE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCTL_RFTXMODE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCTL_WAKECNT7 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFCTL_WAKECNT8 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFSTATE_CALFIL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFSTATE_CALVCO \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFSTATE_MASK \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFSTATE_RESET \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFSTATE_RTSEL1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFSTATE_RTSEL2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFSTATE_RX \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFSTATE_SLEEP \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RFSTATE_TX \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXFLUSH_BCNONLY \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXFLUSH_CMDONLY \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXFLUSH_DATAONLY \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXFLUSH_RXFLUSH \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXFLUSH_WAKEPAD \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXFLUSH_WAKEPOL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXMCR_COORD \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXMCR_ERRPKT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXMCR_NOACKRSP \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXMCR_PANCOORD \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RXMCR_PROMI \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_RX_FIFO \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SHORT_ADDR_TRANS \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SLPACK_SLPACK \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SLPCON0_INTEDGE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SLPCON0_SLPCLKEN \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SLPCON1_CLKOUTEN \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SLPCON1_SLPCLKDIV0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SLPCON1_SLPCLKDIV1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SLPCON1_SLPCLKDIV2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SLPCON1_SLPCLKDIV3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SLPCON1_SLPCLKDIV4 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SOFTRST_RSTBB \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SOFTRST_RSTMAC \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_SOFTRST_RSTPWR \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_STATE_RESET_DELAY \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TESTMODE_RSSIWAIT0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TESTMODE_RSSIWAIT1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TESTMODE_TESTMODE0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TESTMODE_TESTMODE1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TESTMODE_TESTMODE2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TRISGPIO_TRISGP0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TRISGPIO_TRISGP1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TRISGPIO_TRISGP2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TRISGPIO_TRISGP3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TRISGPIO_TRISGP4 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TRISGPIO_TRISGP5 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXMCR_BATLIFEXT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXMCR_CSMABF0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXMCR_CSMABF1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXMCR_CSMABF2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXMCR_MACMINBE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXMCR_MACMINBE0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXMCR_MACMINBE1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXMCR_NOCSMA \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXMCR_SLOTTED \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXNCON_FPSTAT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXNCON_INDIRECT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXNCON_TXNACKREQ \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXNCON_TXNSECEN \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXNCON_TXNTRIG \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_CCAFAIL \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_CCAFAIL_SHIFT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_MAX_FRAME_RETRIES \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_MAX_FRAME_RETRIES_SHIFT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_TXG1FNT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_TXG1STAT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_TXG2FNT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_TXG2STAT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_TXNRETRY0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_TXNRETRY1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTAT_TXNSTAT \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTBL_MSIFS0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTBL_MSIFS1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTBL_MSIFS2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTBL_MSIFS3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTBL_RFSTBL0 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTBL_RFSTBL1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTBL_RFSTBL2 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TXSTBL_RFSTBL3 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TX_BEACON_FIFO \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TX_GTS1_FIFO \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TX_GTS2_FIFO \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_TX_NORMAL_FIFO \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_WAKECON_IMMWAKE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_WAKECON_REGWAKE \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF24J40_WAKEUP_DELAY \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/mrf24j40/include/mrf24j40_registers\.h:[0-9]+: warning: Member MRF25J40_BBREG2_CCAMODE1 \(macro definition\) of file mrf24j40_registers\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member ALL_INT_MASK \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_FLUSH_RX \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_FLUSH_TX \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_NOOP \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_REUSE_TX_PL \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_R_REGISTER \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_R_RX_PAYLOAD \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_R_RX_PL_WID \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_W_ACK_PAYLOAD \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_W_REGISTER \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_W_TX_PAYLOAD \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CMD_W_TX_PAYLOAD_NOACK \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member CRCO \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DELAY_AFTER_FUNC_US \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DELAY_CE_HIGH_US \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DELAY_CE_START_US \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DELAY_CHANGE_PWR_MODE_US \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DELAY_CHANGE_TXRX_US \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DELAY_CS_TOGGLE_US \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DELAY_DATA_ON_AIR \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DYNPD_DPL_P0 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DYNPD_DPL_P1 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DYNPD_DPL_P2 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DYNPD_DPL_P3 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DYNPD_DPL_P4 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member DYNPD_DPL_P5 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member ENAA_P0 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member ENAA_P1 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member ENAA_P2 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member ENAA_P3 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member ENAA_P4 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member ENAA_P5 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member EN_CRC \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member FEATURE_EN_ACK_PAY \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member FEATURE_EN_DPL \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member FEATURE_EN_DYN_ACK \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member INITIAL_ADDRESS_WIDTH \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member INITIAL_RF_CHANNEL \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member INITIAL_RX_POWER_0dB \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member MASK_MAX_RT \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member MASK_RX_DR \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member MASK_TX_DS \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member MAX_RT \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member NRF24L01P_MAX_DATA_LENGTH \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member PRIM_RX \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member PWR_UP \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REGISTER_MASK \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_CONFIG \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_DYNPD \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_EN_AA \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_EN_RXADDR \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_FEATURE \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_FIFO_STATUS \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_OBSERVE_TX \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RF_CH \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RF_SETUP \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RPD \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_ADDR_P0 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_ADDR_P1 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_ADDR_P2 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_ADDR_P3 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_ADDR_P4 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_ADDR_P5 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_PW_P0 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_PW_P1 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_PW_P2 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_PW_P3 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_PW_P4 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_RX_PW_P5 \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_SETUP_AW \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_SETUP_RETR \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_STATUS \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member REG_TX_ADDR \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member RF_CH_MASK \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member RF_SETUP_CONT_WAVE \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member RF_SETUP_PLL_LOCK \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member RF_SETUP_RF_DR_HIGH \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member RF_SETUP_RF_DR_LOW \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member RF_SETUP_RF_PWR \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member RX_DR \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member RX_P_NO \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member TX_DS \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/nrf24l01p/include/nrf24l01p_settings\.h:[0-9]+: warning: Member TX_FULL \(macro definition\) of file nrf24l01p_settings\.h is not documented\. -drivers/opt3001/include/opt3001_params\.h:[0-9]+: warning: Member OPT3001_PARAMS \(macro definition\) of file opt3001_params\.h is not documented\. -drivers/opt3001/include/opt3001_params\.h:[0-9]+: warning: Member OPT3001_PARAM_I2C_ADDR \(macro definition\) of file opt3001_params\.h is not documented\. -drivers/opt3001/include/opt3001_params\.h:[0-9]+: warning: Member OPT3001_PARAM_I2C_DEV \(macro definition\) of file opt3001_params\.h is not documented\. -drivers/opt3001/include/opt3001_params\.h:[0-9]+: warning: Member OPT3001_SAUL_INFO \(macro definition\) of file opt3001_params\.h is not documented\. -drivers/pca9633/include/pca9633_params\.h:[0-9]+: warning: Member PCA9633_PARAMS \(macro definition\) of file pca9633_params\.h is not documented\. -drivers/pca9685/include/pca9685_params\.h:[0-9]+: warning: Member PCA9685_PARAMS \(macro definition\) of file pca9685_params\.h is not documented\. -drivers/pca9685/include/pca9685_regs\.h:[0-9]+: warning: Member PCA9685_ALL_LED_OFF \(macro definition\) of file pca9685_regs\.h is not documented\. -drivers/pca9685/include/pca9685_regs\.h:[0-9]+: warning: Member PCA9685_ALL_LED_OFF_H \(macro definition\) of file pca9685_regs\.h is not documented\. -drivers/pca9685/include/pca9685_regs\.h:[0-9]+: warning: Member PCA9685_ALL_LED_ON \(macro definition\) of file pca9685_regs\.h is not documented\. -drivers/pca9685/include/pca9685_regs\.h:[0-9]+: warning: Member PCA9685_ALL_LED_ON_H \(macro definition\) of file pca9685_regs\.h is not documented\. -drivers/pca9685/include/pca9685_regs\.h:[0-9]+: warning: Member PCA9685_LED_OFF \(macro definition\) of file pca9685_regs\.h is not documented\. -drivers/pca9685/include/pca9685_regs\.h:[0-9]+: warning: Member PCA9685_LED_OFF_H \(macro definition\) of file pca9685_regs\.h is not documented\. -drivers/pca9685/include/pca9685_regs\.h:[0-9]+: warning: Member PCA9685_LED_ON \(macro definition\) of file pca9685_regs\.h is not documented\. -drivers/pca9685/include/pca9685_regs\.h:[0-9]+: warning: Member PCA9685_LED_ON_H \(macro definition\) of file pca9685_regs\.h is not documented\. -drivers/ph_oem/include/ph_oem_params\.h:[0-9]+: warning: Member PH_OEM_PARAMS \(macro definition\) of file ph_oem_params\.h is not documented\. -drivers/ph_oem/include/ph_oem_params\.h:[0-9]+: warning: Member PH_OEM_PARAM_ADDR \(macro definition\) of file ph_oem_params\.h is not documented\. -drivers/ph_oem/include/ph_oem_params\.h:[0-9]+: warning: Member PH_OEM_PARAM_I2C \(macro definition\) of file ph_oem_params\.h is not documented\. -drivers/ph_oem/include/ph_oem_params\.h:[0-9]+: warning: Member PH_OEM_PARAM_INTERRUPT_GPIO_MODE \(macro definition\) of file ph_oem_params\.h is not documented\. -drivers/ph_oem/include/ph_oem_params\.h:[0-9]+: warning: Member PH_OEM_PARAM_INTERRUPT_OPTION \(macro definition\) of file ph_oem_params\.h is not documented\. -drivers/ph_oem/include/ph_oem_params\.h:[0-9]+: warning: Member PH_OEM_PARAM_INTERRUPT_PIN \(macro definition\) of file ph_oem_params\.h is not documented\. -drivers/ph_oem/include/ph_oem_params\.h:[0-9]+: warning: Member PH_OEM_SAUL_INFO \(macro definition\) of file ph_oem_params\.h is not documented\. -drivers/qmc5883l/include/qmc5883l_params\.h:[0-9]+: warning: Member QMC5883L_PARAMS \(macro definition\) of file qmc5883l_params\.h is not documented\. -drivers/qmc5883l/include/qmc5883l_params\.h:[0-9]+: warning: Member QMC5883L_PARAM_I2C \(macro definition\) of file qmc5883l_params\.h is not documented\. -drivers/qmc5883l/include/qmc5883l_params\.h:[0-9]+: warning: Member QMC5883L_PARAM_ODR \(macro definition\) of file qmc5883l_params\.h is not documented\. -drivers/qmc5883l/include/qmc5883l_params\.h:[0-9]+: warning: Member QMC5883L_PARAM_OSR \(macro definition\) of file qmc5883l_params\.h is not documented\. -drivers/qmc5883l/include/qmc5883l_params\.h:[0-9]+: warning: Member QMC5883L_PARAM_PIN_DRDY \(macro definition\) of file qmc5883l_params\.h is not documented\. -drivers/qmc5883l/include/qmc5883l_params\.h:[0-9]+: warning: Member QMC5883L_PARAM_RNG \(macro definition\) of file qmc5883l_params\.h is not documented\. -drivers/qmc5883l/include/qmc5883l_params\.h:[0-9]+: warning: Member QMC5883L_SAUL_INFO \(macro definition\) of file qmc5883l_params\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_CONT \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_CTRL1 \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_CTRL2 \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_DOR \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_DOXH \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_DOXL \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_DOYH \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_DOYL \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_DOZH \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_DOZL \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_DRDY \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_INT_ENB \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_OVL \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_ROL_PNT \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_SETRESET \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_SOFT_RST \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_STANDBY \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_STATUS \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_TOUTH \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/qmc5883l/qmc5883l_internal\.h:[0-9]+: warning: Member QMC5883L_TOUTL \(macro definition\) of file qmc5883l_internal\.h is not documented\. -drivers/rn2xx3/include/rn2xx3_params\.h:[0-9]+: warning: Member RN2XX3_PARAMS \(macro definition\) of file rn2xx3_params\.h is not documented\. -drivers/rn2xx3/include/rn2xx3_params\.h:[0-9]+: warning: Member RN2XX3_PARAM_BAUDRATE \(macro definition\) of file rn2xx3_params\.h is not documented\. -drivers/rn2xx3/include/rn2xx3_params\.h:[0-9]+: warning: Member RN2XX3_PARAM_PIN_RESET \(macro definition\) of file rn2xx3_params\.h is not documented\. -drivers/rn2xx3/include/rn2xx3_params\.h:[0-9]+: warning: Member RN2XX3_PARAM_UART \(macro definition\) of file rn2xx3_params\.h is not documented\. -drivers/scd30/include/scd30_internal\.h:[0-9]+: warning: Member SCD30_DATA_RDY_TIMEOUT \(macro definition\) of file scd30_internal\.h is not documented\. -drivers/scd30/include/scd30_internal\.h:[0-9]+: warning: Member SCD30_MAX_INTERVAL \(macro definition\) of file scd30_internal\.h is not documented\. -drivers/scd30/include/scd30_internal\.h:[0-9]+: warning: Member SCD30_MAX_PRESSURE_COMP \(macro definition\) of file scd30_internal\.h is not documented\. -drivers/scd30/include/scd30_internal\.h:[0-9]+: warning: Member SCD30_MIN_INTERVAL \(macro definition\) of file scd30_internal\.h is not documented\. -drivers/scd30/include/scd30_internal\.h:[0-9]+: warning: Member SCD30_MIN_PRESSURE_COMP \(macro definition\) of file scd30_internal\.h is not documented\. -drivers/scd30/include/scd30_internal\.h:[0-9]+: warning: Member SCD30_READ_WRITE_SLEEP_US \(macro definition\) of file scd30_internal\.h is not documented\. -drivers/scd30/include/scd30_internal\.h:[0-9]+: warning: Member SCD30_RESET_SLEEP_US \(macro definition\) of file scd30_internal\.h is not documented\. -drivers/scd30/include/scd30_params\.h:[0-9]+: warning: Member SCD30_I2C_ADDR \(macro definition\) of file scd30_params\.h is not documented\. -drivers/scd30/include/scd30_params\.h:[0-9]+: warning: Member SCD30_PARAMS \(macro definition\) of file scd30_params\.h is not documented\. -drivers/scd30/include/scd30_params\.h:[0-9]+: warning: Member SCD30_PARAM_I2C_ADDR \(macro definition\) of file scd30_params\.h is not documented\. -drivers/scd30/include/scd30_params\.h:[0-9]+: warning: Member SCD30_PARAM_I2C_DEV \(macro definition\) of file scd30_params\.h is not documented\. -drivers/scd30/include/scd30_params\.h:[0-9]+: warning: Member SCD30_SAUL_INFO \(macro definition\) of file scd30_params\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member DATA_RESPONSE_ACCEPTED\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member DATA_RESPONSE_CRC_ERR\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member DATA_RESPONSE_IS_VALID\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member DATA_RESPONSE_WRITE_ERR\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member OCR_CCS \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member OCR_POWER_UP_STATUS \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member OCR_VOLTAGE_3_2_TO_3_3 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member OCR_VOLTAGE_3_3_TO_3_4 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member R1_ADDR_ERR\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member R1_CMD_CRC_ERR\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member R1_ERASE_ERR\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member R1_ERROR\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member R1_IDLE_BIT_SET\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member R1_ILL_CMD_ERR\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member R1_PARAM_ERR\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member R1_VALID\(X\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_ACMD_41_ARG_HC \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_BLOCKS_FOR_REG_READ \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CARD_PREINIT_CLOCK_PERIOD_US \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CARD_WAIT_AFTER_POWER_UP_US \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_0 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_1 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_10 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_12 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_13 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_16 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_17 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_18 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_24 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_25 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_41 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_55 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_58 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_59 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_59_ARG_DIS \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_59_ARG_EN \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_8 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_8_CHECK_PATTERN \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_8_VHS_2_7_V_TO_3_6_V \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_9 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_NO_ARG \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CMD_PREFIX_MASK \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CSD_V1 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CSD_V2 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_CSD_VUNSUPPORTED \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_DATA_TOKEN_CMD_17_18_24 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_DATA_TOKEN_CMD_25 \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_DATA_TOKEN_CMD_25_STOP \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_GET_CSD_STRUCTURE\(CSD_RAW_DATA\) \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_INVALID_R1_RESPONSE \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_POWERSEQUENCE_CLOCK_COUNT \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_R1_RESPONSE_ADDR_ERROR \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_R1_RESPONSE_CMD_CRC_ERROR \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_R1_RESPONSE_ERASE_RESET \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_R1_RESPONSE_ERASE_SEQ_ERROR \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_R1_RESPONSE_ILLEGAL_CMD_ERROR \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_R1_RESPONSE_IN_IDLE_STATE \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_R1_RESPONSE_PARAM_ERROR \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_SIZE_OF_CID_AND_CSD_REG \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SD_SIZE_OF_SD_STATUS \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_internal\.h:[0-9]+: warning: Member SYSTEM_VOLTAGE \(macro definition\) of file sdcard_spi_internal\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAMS \(macro definition\) of file sdcard_spi_params\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CLK \(macro definition\) of file sdcard_spi_params\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_CS \(macro definition\) of file sdcard_spi_params\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MISO \(macro definition\) of file sdcard_spi_params\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_MOSI \(macro definition\) of file sdcard_spi_params\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_POWER \(macro definition\) of file sdcard_spi_params\.h is not documented\. -drivers/sdcard_spi/include/sdcard_spi_params\.h:[0-9]+: warning: Member SDCARD_SPI_PARAM_SPI \(macro definition\) of file sdcard_spi_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP31_PRODUCT_NO_BYTE_0 \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP31_PRODUCT_NO_BYTE_1 \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP31_PRODUCT_NO_BYTE_3 \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP3X_ADDR1 \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP3X_ADDR2 \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP3X_ADDR3 \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP3X_MODEL_31 \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP3X_MODEL_32 \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP3X_PARAMS \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP3X_PARAM_I2C_ADDR \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP3X_PARAM_I2C_DEV \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP3X_PARAM_IRQ_PIN \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sdp3x/include/sdp3x_params\.h:[0-9]+: warning: Member SDP3X_SAUL_INFO \(macro definition\) of file sdp3x_params\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMDID_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMDID_QUERY \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_DB1_CHECK_FIRMWARE \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_DB1_QUERY_DATA \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_DB1_SET_DEV_ID \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_DB1_SET_DR_MODE \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_DB1_SET_SLEEP_WORK \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_DB1_SET_WORK_PERIOD \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_OPT_QUERY \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_OPT_REPORT_ACTIVE \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_OPT_REPORT_QUERY \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_OPT_SET \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_OPT_SLEEP \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_CMD_OPT_WORK \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_DB1_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_DB2_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_DB3_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_DB4_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_DB5_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_DB6_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_DEVID1_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_DEVID2_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_FRAME_CSUM_MSK \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_FRAME_HEAD \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_FRAME_HEAD_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_FRAME_RECV_CSUM_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_FRAME_RECV_LEN \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_FRAME_RECV_TAIL_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_FRAME_SEND_CSUM_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_FRAME_SEND_LEN \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_FRAME_SEND_TAIL_IDX \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_FRAME_TAIL \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_RCMDID_DATA \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_internal\.h:[0-9]+: warning: Member SDS011_RCMDID_REPLY \(macro definition\) of file sds011_internal\.h is not documented\. -drivers/sds011/include/sds011_params\.h:[0-9]+: warning: Member SDS011_PARAMS \(macro definition\) of file sds011_params\.h is not documented\. -drivers/sds011/include/sds011_params\.h:[0-9]+: warning: Member SDS011_PARAM_PWR_PIN \(macro definition\) of file sds011_params\.h is not documented\. -drivers/sds011/include/sds011_params\.h:[0-9]+: warning: Member SDS011_PARAM_PWR_PIN_AH \(macro definition\) of file sds011_params\.h is not documented\. -drivers/sds011/include/sds011_params\.h:[0-9]+: warning: Member SDS011_PARAM_UART_DEV \(macro definition\) of file sds011_params\.h is not documented\. -drivers/sds011/include/sds011_params\.h:[0-9]+: warning: Member SDS011_SAUL_INFO \(macro definition\) of file sds011_params\.h is not documented\. -drivers/seesaw_soil/include/seesaw_soil_params\.h:[0-9]+: warning: Member SEESAW_SOIL_PARAMS \(macro definition\) of file seesaw_soil_params\.h is not documented\. -drivers/seesaw_soil/include/seesaw_soil_params\.h:[0-9]+: warning: Member SEESAW_SOIL_PARAM_ADDR \(macro definition\) of file seesaw_soil_params\.h is not documented\. -drivers/seesaw_soil/include/seesaw_soil_params\.h:[0-9]+: warning: Member SEESAW_SOIL_PARAM_I2C \(macro definition\) of file seesaw_soil_params\.h is not documented\. -drivers/seesaw_soil/include/seesaw_soil_params\.h:[0-9]+: warning: Member SEESAW_SOIL_SAUL_INFO \(macro definition\) of file seesaw_soil_params\.h is not documented\. -drivers/seesaw_soil/include/seesaw_soil_regs\.h:[0-9]+: warning: Member SEESAW_SOIL_MANUFACTURER_ID \(macro definition\) of file seesaw_soil_regs\.h is not documented\. -drivers/seesaw_soil/include/seesaw_soil_regs\.h:[0-9]+: warning: Member SEESAW_SOIL_MID_VALUE \(macro definition\) of file seesaw_soil_regs\.h is not documented\. -drivers/seesaw_soil/include/seesaw_soil_regs\.h:[0-9]+: warning: Member SEESAW_SOIL_MOISTURE \(macro definition\) of file seesaw_soil_regs\.h is not documented\. -drivers/seesaw_soil/include/seesaw_soil_regs\.h:[0-9]+: warning: Member SEESAW_SOIL_RST \(macro definition\) of file seesaw_soil_regs\.h is not documented\. -drivers/seesaw_soil/include/seesaw_soil_regs\.h:[0-9]+: warning: Member SEESAW_SOIL_TEMPERATURE \(macro definition\) of file seesaw_soil_regs\.h is not documented\. -drivers/sgp30/include/sgp30_params\.h:[0-9]+: warning: Member SGP30_PARAMS \(macro definition\) of file sgp30_params\.h is not documented\. -drivers/sgp30/include/sgp30_params\.h:[0-9]+: warning: Member SGP30_PARAM_I2C_DEV \(macro definition\) of file sgp30_params\.h is not documented\. -drivers/sgp30/include/sgp30_params\.h:[0-9]+: warning: Member SGP30_SAUL_INFO \(macro definition\) of file sgp30_params\.h is not documented\. -drivers/sht2x/include/sht2x_params\.h:[0-9]+: warning: Member SHT2X_PARAMS_DEFAULT \(macro definition\) of file sht2x_params\.h is not documented\. -drivers/sht2x/include/sht2x_params\.h:[0-9]+: warning: Member SHT2X_PARAM_CRC_MODE \(macro definition\) of file sht2x_params\.h is not documented\. -drivers/sht2x/include/sht2x_params\.h:[0-9]+: warning: Member SHT2X_PARAM_I2C_ADDR \(macro definition\) of file sht2x_params\.h is not documented\. -drivers/sht2x/include/sht2x_params\.h:[0-9]+: warning: Member SHT2X_PARAM_MEASURE_MODE \(macro definition\) of file sht2x_params\.h is not documented\. -drivers/sht2x/include/sht2x_params\.h:[0-9]+: warning: Member SHT2X_PARAM_RESOLUTION \(macro definition\) of file sht2x_params\.h is not documented\. -drivers/sht2x/include/sht2x_params\.h:[0-9]+: warning: Member SHT2X_SAUL_INFO \(macro definition\) of file sht2x_params\.h is not documented\. -drivers/sht3x/include/sht3x_params\.h:[0-9]+: warning: Member SHT3X_PARAMS \(macro definition\) of file sht3x_params\.h is not documented\. -drivers/sht3x/include/sht3x_params\.h:[0-9]+: warning: Member SHT3X_PARAM_I2C_ADDR \(macro definition\) of file sht3x_params\.h is not documented\. -drivers/sht3x/include/sht3x_params\.h:[0-9]+: warning: Member SHT3X_PARAM_I2C_DEV \(macro definition\) of file sht3x_params\.h is not documented\. -drivers/sht3x/include/sht3x_params\.h:[0-9]+: warning: Member SHT3X_PARAM_MODE \(macro definition\) of file sht3x_params\.h is not documented\. -drivers/sht3x/include/sht3x_params\.h:[0-9]+: warning: Member SHT3X_PARAM_REPEAT \(macro definition\) of file sht3x_params\.h is not documented\. -drivers/sht3x/include/sht3x_params\.h:[0-9]+: warning: Member SHT3X_SAUL_INFO \(macro definition\) of file sht3x_params\.h is not documented\. -drivers/shtcx/include/shtcx_params\.h:[0-9]+: warning: Member SHTCX_PARAMS \(macro definition\) of file shtcx_params\.h is not documented\. -drivers/shtcx/include/shtcx_params\.h:[0-9]+: warning: Member SHTCX_PARAM_I2C_ADDR \(macro definition\) of file shtcx_params\.h is not documented\. -drivers/shtcx/include/shtcx_params\.h:[0-9]+: warning: Member SHTCX_PARAM_I2C_DEV \(macro definition\) of file shtcx_params\.h is not documented\. -drivers/shtcx/include/shtcx_params\.h:[0-9]+: warning: Member SHTCX_SAUL_INFO \(macro definition\) of file shtcx_params\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCCONFIG_ADCMUX_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCCONFIG_ADCMUX_SHIFT \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCCONFIG_DECIM_RATE_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCCONFIG_DECIM_RATE_SHIFT \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCMUX_DEEP_UV \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCMUX_LARGE_IR \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCMUX_LARGE_WHITE \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCMUX_MEDIUM_IR \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCMUX_SMALL_IR \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCMUX_UV \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCMUX_WHITE \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCPOST_24BIT_OUT_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCPOST_POSTSHIFT_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCPOST_POSTSHIFT_SHIFT \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCPOST_THRESH_SEL_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCPOST_THRESH_SEL_SHIFT \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCSENS_HSIG_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCSENS_HW_GAIN_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCSENS_HW_GAIN_SHIFT \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCSENS_SW_GAIN_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ADCSENS_SW_GAIN_SHIFT \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_CMD_FORCE \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_CMD_PARAM_QUERY \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_CMD_PARAM_SET \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_CMD_PAUSE \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_CMD_RESET_CMD_CTR \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_CMD_RESET_SW \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_CMD_START \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_ID \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_MEASCONFIG_COUNTER_IDX_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_MEASCONFIG_COUNTER_IDX_SHIFT \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_NUM_CHANNELS \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCCONFIG0 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCCONFIG1 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCCONFIG2 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCCONFIG3 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCCONFIG4 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCCONFIG5 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCPOST0 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCPOST1 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCPOST2 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCPOST3 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCPOST4 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCPOST5 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCSENS0 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCSENS1 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCSENS2 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCSENS3 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCSENS4 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_ADCSENS5 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_BURST \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_CHAN_LIST \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_I2C_ADDR \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASCONFIG0 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASCONFIG1 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASCONFIG2 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASCONFIG3 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASCONFIG4 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASCONFIG5 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASCOUNT0 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASCOUNT1 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASCOUNT2 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASRATE_H \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_MEASRATE_L \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_THRESHOLD0_H \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_THRESHOLD0_L \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_THRESHOLD1_H \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_THRESHOLD1_L \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_THRESHOLD2_H \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_PARAM_THRESHOLD2_L \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_COMMAND \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_HOSTIN0 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_HOSTOUTx \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_HW_ID \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_INFO0 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_INFO1 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_IRQENABLE \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_IRQ_STATUS \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_PART_ID \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_RESPONSE0 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_RESPONSE1 \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_REG_REV_ID \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_RESP0_CMD_ERR_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_RESP0_COUNTER_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_RESP0_ERR_ADC_OVERFLOW \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_RESP0_ERR_BUFFER_OVERFLOW \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_RESP0_ERR_INVALID_COMMAND \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_RESP0_ERR_INVALID_PARAM_ADDR \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_RESP0_RUNNING_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_RESP0_SLEEP_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_RESP0_SUSPEND_MASK \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_internals\.h:[0-9]+: warning: Member SI1133_STARTUP_TIME_MS \(macro definition\) of file si1133_internals\.h is not documented\. -drivers/si1133/include/si1133_params\.h:[0-9]+: warning: Member SI1133_PARAMS \(macro definition\) of file si1133_params\.h is not documented\. -drivers/si1133/include/si1133_params\.h:[0-9]+: warning: Member SI1133_PARAM_ADDR \(macro definition\) of file si1133_params\.h is not documented\. -drivers/si1133/include/si1133_params\.h:[0-9]+: warning: Member SI1133_PARAM_I2C_DEV \(macro definition\) of file si1133_params\.h is not documented\. -drivers/si1133/include/si1133_params\.h:[0-9]+: warning: Member SI1133_SAUL_INFO \(macro definition\) of file si1133_params\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI1145_ID \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI1146_ID \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI1147_ID \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_ADC_REC_CLK \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_ALS_AUTO \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_ALS_FORCE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_ALS_IR_ADC_OVERFLOW \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_ALS_IR_ALIGN \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_ALS_PAUSE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_ALS_VIS_ADC_OVERFLOW \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_ALS_VIS_ALIGN \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_BUSADDR \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_EN_ALS_IE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_EN_ALS_IR \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_EN_ALS_VIS \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_EN_AUX \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_EN_PS1_IE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_EN_PS2_IE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_EN_PS3_IE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_EN_UV \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_GET_CAL \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_I2C_ADDR \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_INIT_VALUE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_INTCFG_INTMODE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_INTCFG_INTOE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_INVALID_SETTING \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_IR_RANGE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_NOP \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_NO_ERROR \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ADCMUX_LARGEIR \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ADCMUX_SMALLIR \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ALSENCODE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ALSIRADCGAIN \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ALSIRADCMISC \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ALSIRADCMISC_RANGE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ALSIRADCMUX \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ALSIRADCOUNTER \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ALSVISADCGAIN \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ALSVISADCMISC \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ALSVISADCMISC_VISRANGE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_ALSVISADCOUNTER \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_AUXADCMUX \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_CHLIST \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_CHLIST_ENALSIR \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_CHLIST_ENALSVIS \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_CHLIST_ENAUX \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_CHLIST_ENPS1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_CHLIST_ENPS2 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_CHLIST_ENPS3 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_CHLIST_ENUV \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PS1ADCMUX \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PS2ADCMUX \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PS3ADCMUX \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSADCGAIN \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSADCMISC \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSADCMISC_PSMODE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSADCMISC_RANGE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSADCOUNTER \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSENCODE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSLED12SEL \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSLED12SEL_PS1LED1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSLED12SEL_PS1LED2 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSLED12SEL_PS1LED3 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSLED12SEL_PS1NONE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSLED12SEL_PS2LED1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSLED12SEL_PS2LED2 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSLED12SEL_PS2LED3 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSLED12SEL_PS2NONE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_PSLED3SEL \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_QUERY \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PARAM_SET \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS1_ADC_OVERFLOW \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS1_ALIGN \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS2_ADC_OVERFLOW \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS2_ALIGN \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS3_ADC_OVERFLOW \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS3_ALIGN \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS_ADC_MODE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS_ALS_AUTO \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS_ALS_FORCE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS_ALS_PAUSE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS_AUTO \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS_FORCE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS_PAUSE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_PS_RANGE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_ALS_IR_DATA0 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_ALS_IR_DATA1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_ALS_VIS_DATA0 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_ALS_VIS_DATA1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_CHIP_STAT \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_COMMAND \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_HW_KEY \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_INT_CFG \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_IRQ_ENABLE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_IRQ_MODE1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_IRQ_MODE2 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_IRQ_STATUS \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_MEAS_RATE0 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_MEAS_RATE1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PARAM_RD \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PARAM_WR \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PART_ID \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PS1_DATA0 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PS1_DATA1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PS2_DATA0 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PS2_DATA1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PS3_DATA0 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PS3_DATA1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PS_LED21 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_PS_LED3 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_RESPONSE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_REV_ID \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_SEQ_ID \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_UCOEF0 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_UCOEF1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_UCOEF2 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_UCOEF3 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_UV_INDEX0 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_REG_UV_INDEX1 \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_RESET \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_STARTUP_TIME \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_UCOEF0_DEFAULT \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_UCOEF1_DEFAULT \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_UCOEF2_DEFAULT \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_UCOEF3_DEFAULT \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_UV_ADC_OVERFLOW \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_VIS_RANGE \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_internals\.h:[0-9]+: warning: Member SI114X_WAIT_10MS \(macro definition\) of file si114x_internals\.h is not documented\. -drivers/si114x/include/si114x_params\.h:[0-9]+: warning: Member SI114X_PARAMS \(macro definition\) of file si114x_params\.h is not documented\. -drivers/si114x/include/si114x_params\.h:[0-9]+: warning: Member SI114X_PARAM_I2C_DEV \(macro definition\) of file si114x_params\.h is not documented\. -drivers/si114x/include/si114x_params\.h:[0-9]+: warning: Member SI114X_SAUL_INFO \(macro definition\) of file si114x_params\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_MEASURE_RH \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_MEASURE_RH_HOLD \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_MEASURE_TEMP \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_MEASURE_TEMP_HOLD \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_MEASURE_TEMP_PREV \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_READ_HEATER_REG \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_READ_ID_FIRST_A \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_READ_ID_FIRST_B \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_READ_ID_SECOND_A \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_READ_ID_SECOND_B \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_READ_REVISION_A \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_READ_REVISION_B \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_READ_USER_REG \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_RESET \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_REVISION_1 \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_REVISION_2 \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_WRITE_HEATER_REG \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_internals\.h:[0-9]+: warning: Member SI70XX_WRITE_USER_REG \(macro definition\) of file si70xx_internals\.h is not documented\. -drivers/si70xx/include/si70xx_params\.h:[0-9]+: warning: Member SI70XX_PARAMS \(macro definition\) of file si70xx_params\.h is not documented\. -drivers/si70xx/include/si70xx_params\.h:[0-9]+: warning: Member SI70XX_PARAM_ADDR \(macro definition\) of file si70xx_params\.h is not documented\. -drivers/si70xx/include/si70xx_params\.h:[0-9]+: warning: Member SI70XX_PARAM_I2C_DEV \(macro definition\) of file si70xx_params\.h is not documented\. -drivers/si70xx/include/si70xx_params\.h:[0-9]+: warning: Member SI70XX_SAUL_INFO \(macro definition\) of file si70xx_params\.h is not documented\. -drivers/slipdev/include/slipdev_internal\.h:[0-9]+: warning: Member SLIPDEV_END \(macro definition\) of file slipdev_internal\.h is not documented\. -drivers/slipdev/include/slipdev_internal\.h:[0-9]+: warning: Member SLIPDEV_END_ESC \(macro definition\) of file slipdev_internal\.h is not documented\. -drivers/slipdev/include/slipdev_internal\.h:[0-9]+: warning: Member SLIPDEV_ESC \(macro definition\) of file slipdev_internal\.h is not documented\. -drivers/slipdev/include/slipdev_internal\.h:[0-9]+: warning: Member SLIPDEV_ESC_ESC \(macro definition\) of file slipdev_internal\.h is not documented\. -drivers/slipdev/include/slipdev_params\.h:[0-9]+: warning: Member SLIPDEV_PARAMS \(macro definition\) of file slipdev_params\.h is not documented\. -drivers/slipdev/include/slipdev_params\.h:[0-9]+: warning: Member SLIPDEV_PARAM_BAUDRATE \(macro definition\) of file slipdev_params\.h is not documented\. -drivers/slipdev/include/slipdev_params\.h:[0-9]+: warning: Member SLIPDEV_PARAM_UART \(macro definition\) of file slipdev_params\.h is not documented\. -drivers/sm_pwm_01c/include/sm_pwm_01c_params\.h:[0-9]+: warning: Member SM_PWM_01C_PARAMS_DEFAULT \(macro definition\) of file sm_pwm_01c_params\.h is not documented\. -drivers/sm_pwm_01c/include/sm_pwm_01c_params\.h:[0-9]+: warning: Member SM_PWM_01C_SAUL_INFO \(macro definition\) of file sm_pwm_01c_params\.h is not documented\. -drivers/sm_pwm_01c/include/sm_pwm_01c_params\.h:[0-9]+: warning: Member SM_PWM_01C_TLP_PIN \(macro definition\) of file sm_pwm_01c_params\.h is not documented\. -drivers/sm_pwm_01c/include/sm_pwm_01c_params\.h:[0-9]+: warning: Member SM_PWM_01C_TSP_PIN \(macro definition\) of file sm_pwm_01c_params\.h is not documented\. -drivers/soft_spi/include/soft_spi_params\.h:[0-9]+: warning: Member SOFT_SPI_PARAMS \(macro definition\) of file soft_spi_params\.h is not documented\. -drivers/soft_spi/include/soft_spi_params\.h:[0-9]+: warning: Member SOFT_SPI_PARAM_CLK \(macro definition\) of file soft_spi_params\.h is not documented\. -drivers/soft_spi/include/soft_spi_params\.h:[0-9]+: warning: Member SOFT_SPI_PARAM_MISO \(macro definition\) of file soft_spi_params\.h is not documented\. -drivers/soft_spi/include/soft_spi_params\.h:[0-9]+: warning: Member SOFT_SPI_PARAM_MOSI \(macro definition\) of file soft_spi_params\.h is not documented\. -drivers/soft_uart/include/soft_uart_params\.h:[0-9]+: warning: Member SOFT_UART_NUMOF \(macro definition\) of file soft_uart_params\.h is not documented\. -drivers/soft_uart/include/soft_uart_params\.h:[0-9]+: warning: Member SOFT_UART_PARAMS \(macro definition\) of file soft_uart_params\.h is not documented\. -drivers/soft_uart/include/soft_uart_params\.h:[0-9]+: warning: Member SOFT_UART_PARAM_FLAGS \(macro definition\) of file soft_uart_params\.h is not documented\. -drivers/soft_uart/include/soft_uart_params\.h:[0-9]+: warning: Member SOFT_UART_PARAM_FREQ \(macro definition\) of file soft_uart_params\.h is not documented\. -drivers/soft_uart/include/soft_uart_params\.h:[0-9]+: warning: Member SOFT_UART_PARAM_RX \(macro definition\) of file soft_uart_params\.h is not documented\. -drivers/soft_uart/include/soft_uart_params\.h:[0-9]+: warning: Member SOFT_UART_PARAM_TIMER_RX \(macro definition\) of file soft_uart_params\.h is not documented\. -drivers/soft_uart/include/soft_uart_params\.h:[0-9]+: warning: Member SOFT_UART_PARAM_TIMER_TX \(macro definition\) of file soft_uart_params\.h is not documented\. -drivers/soft_uart/include/soft_uart_params\.h:[0-9]+: warning: Member SOFT_UART_PARAM_TX \(macro definition\) of file soft_uart_params\.h is not documented\. -drivers/sps30/include/sps30_params\.h:[0-9]+: warning: Member SPS30_PARAMS \(macro definition\) of file sps30_params\.h is not documented\. -drivers/sps30/include/sps30_params\.h:[0-9]+: warning: Member SPS30_PARAM_I2C_DEV \(macro definition\) of file sps30_params\.h is not documented\. -drivers/sps30/include/sps30_params\.h:[0-9]+: warning: Member SPS30_SAUL_INFO \(macro definition\) of file sps30_params\.h is not documented\. -drivers/srf04/include/srf04_params\.h:[0-9]+: warning: Member SRF04_PARAMS \(macro definition\) of file srf04_params\.h is not documented\. -drivers/srf04/include/srf04_params\.h:[0-9]+: warning: Member SRF04_PARAM_ECHO \(macro definition\) of file srf04_params\.h is not documented\. -drivers/srf04/include/srf04_params\.h:[0-9]+: warning: Member SRF04_PARAM_TRIGGER \(macro definition\) of file srf04_params\.h is not documented\. -drivers/srf08/include/srf08_params\.h:[0-9]+: warning: Member SRF08_PARAMS \(macro definition\) of file srf08_params\.h is not documented\. -drivers/srf08/include/srf08_params\.h:[0-9]+: warning: Member SRF08_PARAM_ADDR \(macro definition\) of file srf08_params\.h is not documented\. -drivers/srf08/include/srf08_params\.h:[0-9]+: warning: Member SRF08_PARAM_I2C \(macro definition\) of file srf08_params\.h is not documented\. -drivers/stmpe811/include/stmpe811_params\.h:[0-9]+: warning: Member STMPE811_PARAMS \(macro definition\) of file stmpe811_params\.h is not documented\. -drivers/stmpe811/include/stmpe811_params\.h:[0-9]+: warning: Member STMPE811_PARAM_ADDR \(macro definition\) of file stmpe811_params\.h is not documented\. -drivers/stmpe811/include/stmpe811_params\.h:[0-9]+: warning: Member STMPE811_PARAM_I2C_DEV \(macro definition\) of file stmpe811_params\.h is not documented\. -drivers/stmpe811/include/stmpe811_params\.h:[0-9]+: warning: Member STMPE811_PARAM_INT_PIN \(macro definition\) of file stmpe811_params\.h is not documented\. -drivers/stmpe811/include/stmpe811_params\.h:[0-9]+: warning: Member STMPE811_PARAM_XMAX \(macro definition\) of file stmpe811_params\.h is not documented\. -drivers/stmpe811/include/stmpe811_params\.h:[0-9]+: warning: Member STMPE811_PARAM_YMAX \(macro definition\) of file stmpe811_params\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_PARAMS \(macro definition\) of file sx126x_params\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_PARAM_BUSY \(macro definition\) of file sx126x_params\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_PARAM_DIO1 \(macro definition\) of file sx126x_params\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_PARAM_REGULATOR \(macro definition\) of file sx126x_params\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_PARAM_RESET \(macro definition\) of file sx126x_params\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_PARAM_SET_RF_MODE_CB \(macro definition\) of file sx126x_params\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_PARAM_SPI \(macro definition\) of file sx126x_params\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_PARAM_SPI_NSS \(macro definition\) of file sx126x_params\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_SET_RF_MODE \(macro definition\) of file sx126x_params\.h is not documented\. -drivers/sx127x/include/sx127x_internal\.h:[0-9]+: warning: Member SX127X_POR_ACTIVE_LOGIC_LEVEL \(macro definition\) of file sx127x_internal\.h is not documented\. -drivers/sx127x/include/sx127x_internal\.h:[0-9]+: warning: Member SX127X_RSSI_OFFSET_HF \(macro definition\) of file sx127x_internal\.h is not documented\. -drivers/sx127x/include/sx127x_internal\.h:[0-9]+: warning: Member SX127X_RSSI_OFFSET_LF \(macro definition\) of file sx127x_internal\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAMS \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAM_DIO0 \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAM_DIO1 \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAM_DIO2 \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAM_DIO3 \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAM_PASELECT \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAM_RESET \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAM_RX_SWITCH \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAM_SPI \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAM_SPI_NSS \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_params\.h:[0-9]+: warning: Member SX127X_PARAM_TX_SWITCH \(macro definition\) of file sx127x_params\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member RF_BITRATEFRAC_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member RF_PLL_BANDWIDTH_150 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member RF_PLL_BANDWIDTH_225 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member RF_PLL_BANDWIDTH_300 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member RF_PLL_BANDWIDTH_75 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member RF_PLL_BANDWIDTH_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_REG_PADAC \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_BW_125_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_BW_250_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_BW_500_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_BW_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_CODINGRATE_4_5 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_CODINGRATE_4_6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_CODINGRATE_4_7 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_CODINGRATE_4_8 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_CODINGRATE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_IMPLICITHEADER_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_RXPAYLOADCRC_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_RXPAYLOADCRC_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1272_RF_LORA_MODEMCONFIG1_RXPAYLOADCRC_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_REG_PADAC \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_10_41_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_125_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_15_62_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_20_83_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_250_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_31_25_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_41_66_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_500_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_62_50_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_7_81_KHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_CODINGRATE_4_5 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_CODINGRATE_4_6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_CODINGRATE_4_7 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_CODINGRATE_4_8 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_CODINGRATE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG1_IMPLICITHEADER_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG2_RXPAYLOADCRC_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG2_RXPAYLOADCRC_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX1276_RF_LORA_MODEMCONFIG2_RXPAYLOADCRC_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_AFCBW \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_AFCFEI \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_AFCLSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_AFCMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_AGCREF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_AGCTHRESH1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_AGCTHRESH2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_AGCTHRESH3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_BITRATEFRAC \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_BITRATELSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_BITRATEMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_BROADCASTADRS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_DIOMAPPING1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_DIOMAPPING2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_FDEVLSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_FDEVMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_FEILSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_FEIMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_FIFO \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_FIFOTHRESH \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_FORMERTEMP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_FRFLSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_FRFMID \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_FRFMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_IMAGECAL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_IRQFLAGS1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_IRQFLAGS2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LNA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LOWBAT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_AGCREF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_AGCTHRESH1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_AGCTHRESH2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_AGCTHRESH3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_BITRATEFRAC \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_DETECTIONTHRESHOLD \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_DETECTOPTIMIZE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_DIOMAPPING1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_DIOMAPPING2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FEILSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FEIMID \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FEIMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FIFO \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FIFOADDRPTR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FIFORXBASEADDR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FIFORXBYTEADDR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FIFORXCURRENTADDR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FIFOTXBASEADDR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FORMERTEMP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FRFLSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FRFMID \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_FRFMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_HOPCHANNEL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_HOPPERIOD \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_INVERTIQ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_INVERTIQ2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_IRQFLAGS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_IRQFLAGSMASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_LNA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_MODEMCONFIG1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_MODEMCONFIG2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_MODEMCONFIG3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_MODEMSTAT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_OCP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_OPMODE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PACONFIG \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PADAC \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PARAMP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PAYLOADLENGTH \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PAYLOADMAXLENGTH \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PKTRSSIVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PKTSNRVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PLL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PLLHOP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PREAMBLELSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_PREAMBLEMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_RSSIVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_RSSIWIDEBAND \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_RXHEADERCNTVALUELSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_RXHEADERCNTVALUEMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_RXNBBYTES \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_RXPACKETCNTVALUELSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_RXPACKETCNTVALUEMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_SYMBTIMEOUTLSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_SYNCWORD \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_TCXO \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_TEST2F \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_TEST30 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_TEST36 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_TEST3A \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_LR_VERSION \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_NODEADRS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_OCP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_OOKAVG \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_OOKFIX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_OOKPEAK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_OPMODE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_OSC \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_PACKETCONFIG1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_PACKETCONFIG2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_PACONFIG \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_PARAMP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_PAYLOADLENGTH \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_PLL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_PLLHOP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_PREAMBLEDETECT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_PREAMBLELSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_PREAMBLEMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RES17 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RES18 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RES19 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RSSICOLLISION \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RSSICONFIG \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RSSITHRESH \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RSSIVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RXBW \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RXCONFIG \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RXDELAY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RXTIMEOUT1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RXTIMEOUT2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_RXTIMEOUT3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SEQCONFIG1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SEQCONFIG2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SYNCCONFIG \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SYNCVALUE1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SYNCVALUE2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SYNCVALUE3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SYNCVALUE4 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SYNCVALUE5 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SYNCVALUE6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SYNCVALUE7 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_SYNCVALUE8 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_TCXO \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_TEMP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_TIMER1COEF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_TIMER2COEF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_TIMERRESOL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_REG_VERSION \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_EXPAFC_0 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_EXPAFC_1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_EXPAFC_2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_EXPAFC_3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_EXPAFC_4 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_EXPAFC_5 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_EXPAFC_6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_EXPAFC_7 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_EXPAFC_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_MANTAFC_16 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_MANTAFC_20 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_MANTAFC_24 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCBW_MANTAFC_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCFEI_AFCAUTOCLEAR_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCFEI_AFCAUTOCLEAR_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCFEI_AFCAUTOCLEAR_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCFEI_AFCCLEAR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_AFCFEI_AGCSTART \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEFRAC_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_100000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_115200_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_1200_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_12500_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_150000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_15000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_153600_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_19200_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_200000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_2400_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_250000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_25000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_32768_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_38400_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_4800_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_50000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_57600_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_76800_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATELSB_9600_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_100000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_115200_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_1200_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_12500_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_150000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_15000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_153600_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_19200_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_200000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_2400_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_250000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_25000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_32768_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_38400_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_4800_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_50000_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_57600_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_76800_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BITRATEMSB_9600_BPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_BROADCASTADDRESS_ADDRESS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO0_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO0_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO0_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO0_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO0_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO1_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO1_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO1_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO1_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO1_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO2_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO2_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO2_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO2_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO2_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO3_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO3_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO3_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO3_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING1_DIO3_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_DIO4_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_DIO4_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_DIO4_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_DIO4_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_DIO4_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_DIO5_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_DIO5_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_DIO5_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_DIO5_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_DIO5_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_MAP_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_MAP_PREAMBLEDETECT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_DIOMAPPING2_MAP_RSSI \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_100000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_10000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_110000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_120000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_130000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_140000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_150000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_15000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_160000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_170000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_180000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_190000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_200000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_20000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_2000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_25000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_30000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_35000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_40000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_45000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_50000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_5000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_55000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_60000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_65000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_70000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_75000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_80000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_85000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_90000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVLSB_95000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_100000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_10000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_110000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_120000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_130000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_140000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_150000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_15000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_160000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_170000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_180000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_190000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_200000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_20000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_2000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_25000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_30000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_35000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_40000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_45000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_50000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_5000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_55000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_60000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_65000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_70000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_75000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_80000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_85000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_90000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FDEVMSB_95000_HZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FIFOTHRESH_FIFOTHRESHOLD_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FIFOTHRESH_FIFOTHRESHOLD_THRESHOLD \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FIFOTHRESH_TXSTARTCONDITION_FIFONOTEMPTY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FIFOTHRESH_TXSTARTCONDITION_FIFOTHRESH \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FIFOTHRESH_TXSTARTCONDITION_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_863_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_864_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_865_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_866_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_867_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_868_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_869_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_870_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_902_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_903_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_904_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_905_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_906_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_907_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_908_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_909_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_910_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_911_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_912_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_913_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_914_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_915_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_916_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_917_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_918_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_919_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_920_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_921_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_922_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_923_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_924_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_925_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_926_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_927_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFLSB_928_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_863_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_864_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_865_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_866_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_867_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_868_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_869_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_870_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_902_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_903_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_904_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_905_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_906_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_907_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_908_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_909_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_910_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_911_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_912_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_913_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_914_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_915_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_916_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_917_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_918_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_919_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_920_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_921_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_922_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_923_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_924_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_925_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_926_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_927_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMID_928_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_863_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_864_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_865_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_866_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_867_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_868_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_869_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_870_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_902_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_903_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_904_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_905_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_906_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_907_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_908_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_909_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_910_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_911_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_912_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_913_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_914_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_915_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_916_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_917_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_918_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_919_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_920_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_921_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_922_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_923_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_924_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_925_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_926_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_927_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_FRFMSB_928_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_AUTOIMAGECAL_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_AUTOIMAGECAL_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_AUTOIMAGECAL_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_IMAGECAL_DONE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_IMAGECAL_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_IMAGECAL_RUNNING \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_IMAGECAL_START \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_TEMPCHANGE_HIGHER \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_TEMPCHANGE_LOWER \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_TEMPMONITOR_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_TEMPMONITOR_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_TEMPMONITOR_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_TEMPTHRESHOLD_05 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_TEMPTHRESHOLD_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_TEMPTHRESHOLD_15 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_TEMPTHRESHOLD_20 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IMAGECAL_TEMPTHRESHOLD_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS1_MODEREADY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS1_PLLLOCK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS1_PREAMBLEDETECT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS1_RSSI \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS1_RXREADY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS1_SYNCADDRESSMATCH \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS1_TIMEOUT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS1_TXREADY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS2_CRCOK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS2_FIFOEMPTY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS2_FIFOFULL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS2_FIFOLEVEL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS2_FIFOOVERRUN \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS2_LOWBAT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS2_PACKETSENT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_IRQFLAGS2_PAYLOADREADY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LNA_BOOST_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LNA_BOOST_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LNA_BOOST_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LNA_GAIN_G1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LNA_GAIN_G2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LNA_GAIN_G3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LNA_GAIN_G4 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LNA_GAIN_G5 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LNA_GAIN_G6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LNA_GAIN_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DETECTIONOPTIMIZE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DETECTIONOPTIMIZE_SF6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DETECTIONOPTIMIZE_SF7_TO_SF12 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DETECTIONTHRESH_SF6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DETECTIONTHRESH_SF7_TO_SF12 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO0_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO0_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO0_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO0_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO0_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO1_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO1_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO1_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO1_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO1_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO2_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO2_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO2_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO2_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO2_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO3_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO3_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO3_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO3_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO3_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO4_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO4_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO4_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO4_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO4_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO5_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO5_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO5_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO5_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO5_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_MAP_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_MAP_PREAMBLEDETECT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_DIOMAPPING2_MAP_RSSI \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_FIFOADDRPTR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_FIFORXBASEADDR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_FIFOTXBASEADDR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_FRFLSB_434_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_FRFMID_434_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_FRFMSB_434_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_HOPCHANNEL_CHANNEL_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_HOPCHANNEL_CRCONPAYLOAD_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_HOPCHANNEL_CRCONPAYLOAD_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_HOPCHANNEL_CRCONPAYLOAD_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_HOPCHANNEL_PLL_LOCK_FAIL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_HOPCHANNEL_PLL_LOCK_SUCCEED \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_HOPCHANNEL_PLL_LOCK_TIMEOUT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_HOPPERIOD_FREQFOPPINGPERIOD \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_INVERTIQ2_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_INVERTIQ2_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_INVERTIQ_RX_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_INVERTIQ_RX_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_INVERTIQ_RX_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_INVERTIQ_TX_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_INVERTIQ_TX_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_INVERTIQ_TX_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_CADDETECTED \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_CADDETECTED_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_CADDONE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_CADDONE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_FHSSCHANGEDCHANNEL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_FHSSCHANGEDCHANNEL_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_PAYLOADCRCERROR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_PAYLOADCRCERROR_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_RXDONE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_RXDONE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_RXTIMEOUT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_RXTIMEOUT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_TXDONE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_TXDONE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_VALIDHEADER \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_IRQFLAGS_VALIDHEADER_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_BOOST_HF_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_BOOST_HF_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_BOOST_HF_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_BOOST_LF_DEFAULT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_BOOST_LF_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_GAIN_G1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_GAIN_G2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_GAIN_G3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_GAIN_G4 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_GAIN_G5 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_GAIN_G6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_LNA_GAIN_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG1_IMPLICITHEADER_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG1_IMPLICITHEADER_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG1_LOWDATARATEOPTIMIZE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_12 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_7 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_8 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_9 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_SYMBTIMEOUTMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_SYMBTIMEOUTMSB_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_TXCONTINUOUSMODE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_TXCONTINUOUSMODE_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG2_TXCONTINUOUSMODE_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG3_AGCAUTO_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG3_AGCAUTO_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG3_AGCAUTO_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG3_LOWDATARATEOPTIMIZE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG3_LOWDATARATEOPTIMIZE_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMCONFIG3_LOWDATARATEOPTIMIZE_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_HEADER_VALID \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_MODEM_CLEAR \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_RX_ONGOING \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_SIGNAL_DETECTED \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_SIGNAL_SYNCHRONIZED \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_MODEMSTAT_RX_CR_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_045_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_050_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_055_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_060_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_065_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_070_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_075_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_080_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_085_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_090_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_095_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_100_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_105_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_110_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_115_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_120_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_130_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_140_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_150_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_160_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_170_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_180_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_190_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_200_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_210_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_220_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_230_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_240_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OCP_TRIM_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_ACCESSSHAREDSX127X_REG_DISABLE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_ACCESSSHAREDSX127X_REG_ENABLE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_ACCESSSHAREDSX127X_REG_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_CAD \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_FREQMODE_ACCESS_HF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_FREQMODE_ACCESS_LF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_FREQMODE_ACCESS_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_LONGRANGEMODE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_LONGRANGEMODE_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_LONGRANGEMODE_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_RECEIVER \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_RECEIVER_SINGLE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_SLEEP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_STANDBY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_SYNTHESIZER_RX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_SYNTHESIZER_TX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_OPMODE_TRANSMITTER \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PACONFIG_MAX_POWER_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PACONFIG_OUTPUTPOWER_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PACONFIG_PASELECT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PACONFIG_PASELECT_PABOOST \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PACONFIG_PASELECT_RFO \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PADAC_20DBM_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PADAC_20DBM_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PADAC_20DBM_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0010_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0012_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0015_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0020_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0025_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0031_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0040_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0050_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0062_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0100_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0125_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0250_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_0500_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_1000_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_2000_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_3400_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_TXBANDFORCE_AUTO \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_TXBANDFORCE_BAND_SEL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PARAMP_TXBANDFORCE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PAYLOADLENGTH \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PAYLOADMAXLENGTH \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PLLHOP_FASTHOP_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PLLHOP_FASTHOP_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PLLHOP_FASTHOP_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PREAMBLELENGTHLSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_PREAMBLELENGTHMSB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_SYMBTIMEOUTLSB_SYMBTIMEOUT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_TCXO_TCXOINPUT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_TCXO_TCXOINPUT_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LORA_TCXO_TCXOINPUT_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_TRIM_1695 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_TRIM_1764 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_TRIM_1835 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_TRIM_1905 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_TRIM_1976 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_TRIM_2045 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_TRIM_2116 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_TRIM_2185 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_LOWBAT_TRIM_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_NODEADDRESS_ADDRESS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_045_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_050_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_055_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_060_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_065_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_070_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_075_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_080_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_085_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_090_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_095_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_100_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_105_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_110_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_115_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_120_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_130_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_140_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_150_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_160_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_170_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_180_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_190_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_200_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_210_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_220_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_230_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_240_MA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OCP_TRIM_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_AVERAGEOFFSET_0_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_AVERAGEOFFSET_2_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_AVERAGEOFFSET_4_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_AVERAGEOFFSET_6_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_AVERAGEOFFSET_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKAVERAGETHRESHFILT_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKAVERAGETHRESHFILT_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKAVERAGETHRESHFILT_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKAVERAGETHRESHFILT_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKAVERAGETHRESHFILT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_000 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_001 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_010 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_011 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_100 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_101 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_110 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_111 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKFIX_OOKFIXEDTHRESHOLD \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_BITSYNC_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_BITSYNC_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_BITSYNC_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_0_5_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_1_0_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_1_5_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_2_0_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_3_0_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_4_0_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_5_0_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_6_0_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKTHRESHTYPE_AVERAGE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKTHRESHTYPE_FIXED \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKTHRESHTYPE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OOKPEAK_OOKTHRESHTYPE_PEAK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_LONGRANGEMODE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_LONGRANGEMODE_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_LONGRANGEMODE_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_MODULATIONSHAPING_00 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_MODULATIONSHAPING_01 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_MODULATIONSHAPING_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_MODULATIONSHAPING_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_MODULATIONSHAPING_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_MODULATIONTYPE_FSK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_MODULATIONTYPE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_MODULATIONTYPE_OOK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_RECEIVER \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_RECEIVER_SINGLE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_SLEEP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_STANDBY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_SYNTHESIZER_RX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_SYNTHESIZER_TX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OPMODE_TRANSMITTER \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OSC_CLKOUT_16_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OSC_CLKOUT_1_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OSC_CLKOUT_2_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OSC_CLKOUT_32_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OSC_CLKOUT_4_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OSC_CLKOUT_8_MHZ \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OSC_CLKOUT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OSC_CLKOUT_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OSC_CLKOUT_RC \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_OSC_RCCALSTART \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_ADDRSFILTERING_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_ADDRSFILTERING_NODE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_ADDRSFILTERING_NODEBROADCAST \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_ADDRSFILTERING_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_CRCAUTOCLEAR_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_CRCAUTOCLEAR_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_CRCAUTOCLEAR_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_CRCWHITENINGTYPE_CCITT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_CRCWHITENINGTYPE_IBM \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_CRCWHITENINGTYPE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_CRC_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_CRC_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_CRC_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_DCFREE_MANCHESTER \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_DCFREE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_DCFREE_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_DCFREE_WHITENING \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_PACKETFORMAT_FIXED \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_PACKETFORMAT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG1_PACKETFORMAT_VARIABLE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_BEACON_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_BEACON_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_BEACON_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_DATAMODE_CONTINUOUS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_DATAMODE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_DATAMODE_PACKET \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_IOHOME_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_IOHOME_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_IOHOME_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_PAYLOADLENGTH_MSB_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_WMBUS_CRC_DISABLE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_WMBUS_CRC_ENABLE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACKETCONFIG2_WMBUS_CRC_ENABLE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACONFIG_MAX_POWER_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACONFIG_OUTPUTPOWER_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACONFIG_PASELECT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACONFIG_PASELECT_PABOOST \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PACONFIG_PASELECT_RFO \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PADAC_20DBM_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PADAC_20DBM_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PADAC_20DBM_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0010_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0012_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0015_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0020_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0025_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0031_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0040_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0050_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0062_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0100_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0125_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0250_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_0500_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_1000_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_2000_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_3400_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_LOWPNTXPLL_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_LOWPNTXPLL_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_LOWPNTXPLL_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PARAMP_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PAYLOADLENGTH_LENGTH \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PLLHOP_FASTHOP_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PLLHOP_FASTHOP_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PLLHOP_FASTHOP_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PLL_BANDWIDTH_150 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PLL_BANDWIDTH_225 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PLL_BANDWIDTH_300 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PLL_BANDWIDTH_75 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PLL_BANDWIDTH_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORSIZE_1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORSIZE_2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORSIZE_3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORSIZE_4 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORSIZE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_0 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_10 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_11 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_12 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_13 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_14 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_15 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_16 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_17 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_18 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_19 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_20 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_21 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_22 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_23 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_24 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_25 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_26 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_27 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_28 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_29 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_30 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_31 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_4 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_5 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_7 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_8 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_9 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTOR_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTOR_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEDETECT_DETECTOR_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLELSB_SIZE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_PREAMBLEMSB_SIZE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICOLISION_THRESHOLD \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_01_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_02_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_03_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_04_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_05_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_06_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_07_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_08_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_09_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_10_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_11_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_12_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_13_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_14_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_15_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_16_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_00_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_01_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_02_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_03_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_04_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_05_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_06_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_07_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_08_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_09_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_10_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_11_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_12_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_13_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_14_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_15_DB \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_128 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_16 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_256 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_32 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_4 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_64 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_8 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RSSITHRESH_THRESHOLD \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_EXP_0 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_EXP_1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_EXP_2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_EXP_3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_EXP_4 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_EXP_5 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_EXP_6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_EXP_7 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_EXP_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_MANT_16 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_MANT_20 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_MANT_24 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXBW_MANT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_AFCAUTO_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_AFCAUTO_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_AFCAUTO_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_AGCAUTO_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_AGCAUTO_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_AGCAUTO_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_RESTARTRXONCOLLISION_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_RESTARTRXONCOLLISION_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_RESTARTRXONCOLLISION_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_RESTARTRXWITHOUTPLLLOCK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_RESTARTRXWITHPLLLOCK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_RXTRIGER_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_RXTRIGER_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_RXTRIGER_PREAMBLEDETECT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_RXTRIGER_RSSI \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXCONFIG_RXTRIGER_RSSI_PREAMBLEDETECT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXDELAY_INTERPACKETRXDELAY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXTIMEOUT1_TIMEOUTRXRSSI \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXTIMEOUT2_TIMEOUTRXPREAMBLE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_RXTIMEOUT3_TIMEOUTSIGNALSYNC \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMIDLE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMIDLE_TORX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMIDLE_TOTX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMSTART_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMSTART_TOLPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMSTART_TORX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMSTART_TOTX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMSTART_TOTX_ONFIFOLEVEL \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMTX_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMTX_TOLPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_FROMTX_TORX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_IDLEMODE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_IDLEMODE_SLEEP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_IDLEMODE_STANDBY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_LPS_IDLE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_LPS_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_LPS_SEQUENCER_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_SEQUENCER_START \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG1_SEQUENCER_STOP \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_TOLPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_TORX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_TOSEQUENCEROFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_TOSYNTHESIZERRX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_TOTX_ONFIFOEMPTY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXTIMEOUT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXTIMEOUT_TOLPS \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXTIMEOUT_TORXRESTART \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXTIMEOUT_TOSEQUENCEROFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRXTIMEOUT_TOTX \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRX_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOLPS_ONPLDRDY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TORXPKT_ONCRCOK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TORXPKT_ONPLDRDY \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOSEQUENCEROFF_ONPREAMBLE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOSEQUENCEROFF_ONRSSI \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOSEQUENCEROFF_ONSYNC \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOUNUSED_000 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOUNUSED_111 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_AUTORESTARTRXMODE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_AUTORESTARTRXMODE_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_AUTORESTARTRXMODE_WAITPLL_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_AUTORESTARTRXMODE_WAITPLL_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_PREAMBLEPOLARITY_55 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_PREAMBLEPOLARITY_AA \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_PREAMBLEPOLARITY_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_3 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_4 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_5 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_6 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_7 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_8 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNC_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNC_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCCONFIG_SYNC_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCVALUE1_SYNCVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCVALUE2_SYNCVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCVALUE3_SYNCVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCVALUE4_SYNCVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCVALUE5_SYNCVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCVALUE6_SYNCVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCVALUE7_SYNCVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_SYNCVALUE8_SYNCVALUE \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TCXO_TCXOINPUT_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TCXO_TCXOINPUT_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TCXO_TCXOINPUT_ON \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMER1COEF_TIMER1COEFFICIENT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMER2COEF_TIMER2COEFFICIENT \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMERRESOL_TIMER1RESOL_000064_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMERRESOL_TIMER1RESOL_004100_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMERRESOL_TIMER1RESOL_262000_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMERRESOL_TIMER1RESOL_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMERRESOL_TIMER1RESOL_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMERRESOL_TIMER2RESOL_000064_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMERRESOL_TIMER2RESOL_004100_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMERRESOL_TIMER2RESOL_262000_US \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMERRESOL_TIMER2RESOL_MASK \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RF_TIMERRESOL_TIMER2RESOL_OFF \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RNG_REG_MODEM_CONFIG1 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member SX127X_RNG_REG_MODEM_CONFIG2 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member VERSION_SX1272 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member VERSION_SX1276 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/sx127x/include/sx127x_registers\.h:[0-9]+: warning: Member VERSION_SX1276_WLR089 \(macro definition\) of file sx127x_registers\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member B_COEF_IF \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member CT_COEF_IF \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member CT_OFFSET_IF \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member DGF_IF \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member G_COEF_IF \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member R_COEF_IF \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member TCS37727_AG_THRESHOLD_HIGH \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member TCS37727_AG_THRESHOLD_LOW \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member TCS37727_ATIME_MAX \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member TCS37727_ATIME_MIN \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member TCS37727_ATIME_TO_REG\(val\) \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member TCS37727_ATIME_TO_US\(reg\) \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727-internal\.h:[0-9]+: warning: Member TCS37727_ID_VALUE \(macro definition\) of file tcs37727-internal\.h is not documented\. -drivers/tcs37727/include/tcs37727_params\.h:[0-9]+: warning: Member TCS37727_PARAMS \(macro definition\) of file tcs37727_params\.h is not documented\. -drivers/tcs37727/include/tcs37727_params\.h:[0-9]+: warning: Member TCS37727_PARAM_ADDR \(macro definition\) of file tcs37727_params\.h is not documented\. -drivers/tcs37727/include/tcs37727_params\.h:[0-9]+: warning: Member TCS37727_PARAM_ATIME \(macro definition\) of file tcs37727_params\.h is not documented\. -drivers/tcs37727/include/tcs37727_params\.h:[0-9]+: warning: Member TCS37727_PARAM_I2C \(macro definition\) of file tcs37727_params\.h is not documented\. -drivers/tcs37727/include/tcs37727_params\.h:[0-9]+: warning: Member TCS37727_SAUL_INFO \(macro definition\) of file tcs37727_params\.h is not documented\. -drivers/tps6274x/include/tps6274x_params\.h:[0-9]+: warning: Member TPS6274X_PARAMS \(macro definition\) of file tps6274x_params\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_B1T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_B2T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_B3T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_B4T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_B5T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_B6T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_B7T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_B8T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_CHSCALE \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_CHSCALE_TINT0 \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_CHSCALE_TINT1 \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_COMMAND_BLOCK \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_COMMAND_CLEAR \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_COMMAND_MODE \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_COMMAND_WORD \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_CONTROL_POWEROFF \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_CONTROL_POWERON \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_ID \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_K1T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_K2T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_K3T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_K4T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_K5T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_K6T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_K7T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_K8T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_LUXSCALE \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_M1T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_M2T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_M3T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_M4T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_M5T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_M6T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_M7T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_M8T \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_RATIOSCALE \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_REGISTER_CHAN0 \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_REGISTER_CHAN1 \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_REGISTER_CONTROL \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_REGISTER_ID \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_REGISTER_INTERRUPT \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_REGISTER_THRESHOLDHIGH \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_REGISTER_THRESHOLDLOW \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_internals\.h:[0-9]+: warning: Member TSL2561_REGISTER_TIMING \(macro definition\) of file tsl2561_internals\.h is not documented\. -drivers/tsl2561/include/tsl2561_params\.h:[0-9]+: warning: Member TSL2561_PARAMS \(macro definition\) of file tsl2561_params\.h is not documented\. -drivers/tsl2561/include/tsl2561_params\.h:[0-9]+: warning: Member TSL2561_PARAM_ADDR \(macro definition\) of file tsl2561_params\.h is not documented\. -drivers/tsl2561/include/tsl2561_params\.h:[0-9]+: warning: Member TSL2561_PARAM_GAIN \(macro definition\) of file tsl2561_params\.h is not documented\. -drivers/tsl2561/include/tsl2561_params\.h:[0-9]+: warning: Member TSL2561_PARAM_I2C_DEV \(macro definition\) of file tsl2561_params\.h is not documented\. -drivers/tsl2561/include/tsl2561_params\.h:[0-9]+: warning: Member TSL2561_PARAM_INTEGRATION \(macro definition\) of file tsl2561_params\.h is not documented\. -drivers/tsl2561/include/tsl2561_params\.h:[0-9]+: warning: Member TSL2561_SAUL_INFO \(macro definition\) of file tsl2561_params\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member MULTIPLY_DATA\(data_raw, integration_time\) \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_COMMAND\(addr\) \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_CONFIG\(psaveskip, tcntrl\) \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_CONTROL\(mode\) \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_GET_INTEGRATION_TIME_USEC\(int_time_setting, psaveskip\) \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_GET_PARTNO\(id_reg\) \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_MODE_NORMAL \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_MODE_POWER_DOWN \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_MODE_RESERVED \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_POWER_MODE\(mode\) \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_PSAVESKIP_OFF \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_internals\.h:[0-9]+: warning: Member TSL4531X_PSAVESKIP_ON \(macro definition\) of file tsl4531x_internals\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_params\.h:[0-9]+: warning: Member TSL4531X_LOW_POWER_MODE \(macro definition\) of file tsl4531x_params\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_params\.h:[0-9]+: warning: Member TSL4531X_PARAMS \(macro definition\) of file tsl4531x_params\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_params\.h:[0-9]+: warning: Member TSL4531X_PARAM_I2C_ADDR \(macro definition\) of file tsl4531x_params\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_params\.h:[0-9]+: warning: Member TSL4531X_PARAM_I2C_DEV \(macro definition\) of file tsl4531x_params\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_params\.h:[0-9]+: warning: Member TSL4531X_PARAM_INTEGRATION \(macro definition\) of file tsl4531x_params\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_params\.h:[0-9]+: warning: Member TSL4531X_PARAM_PARTNO \(macro definition\) of file tsl4531x_params\.h is not documented\. -drivers/tsl4531x/include/tsl4531x_params\.h:[0-9]+: warning: Member TSL4531X_SAUL_INFO \(macro definition\) of file tsl4531x_params\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_AMBIENT_MASK_PARA_AUTO_OFFSET \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_AMBIENT_MASK_PARA_AVERAGE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_AMBIENT_MASK_PARA_CONT_CONV \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_AMBIENT_MASK_PARA_MEAS_RATE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_AMBIENT_PARA_AUTO_OFFSET_ENABLE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_AMBIENT_PARA_CONT_CONV_ENABLE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_COMMAND_ALL_DISABLE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_COMMAND_AMBI_ENABLE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_COMMAND_AMBI_ON_DEMAND \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_COMMAND_MASK_AMBI_DATA_READY \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_COMMAND_MASK_LOCK \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_COMMAND_MASK_PROX_DATA_READY \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_COMMAND_PROX_ENABLE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_COMMAND_PROX_ON_DEMAND \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_COMMAND_SELFTIMED_MODE_ENABLE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_ALS_READY_ENABLE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_1 \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_128 \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_16 \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_2 \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_32 \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_4 \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_64 \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_8 \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_MASK_ALS_READY \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_MASK_COUNT_EXCEED \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_MASK_PROX_READY \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_MASK_STATUS_THRES_HI \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_MASK_THRES_LO \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_PROX_READY_ENABLE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_STATUS_ALS_READY \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_STATUS_PROX_READY \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_STATUS_THRES_HI \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_STATUS_THRES_LO \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_THRES_ENABLE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_THRES_SEL_ALS \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_INTERRUPT_THRES_SEL_PROX \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_PRODUCT_MASK_PRODUCT_ID \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_PRODUCT_MASK_REVISION_ID \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_PROXIMITY_MASK_FUSE_PROG_ID \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_PROXIMITY_MASK_LED_CURRENT \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_PROXIMITY_MASK_MEASUREMENT_RATE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_AMBIENT_IR_LIGHT_LEVEL \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_AMBIENT_PARAMETER \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_AMBIENT_VALUE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_COMMAND \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_HIGH_THRES \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_INTERRUPT_CONTROL \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_INTERRUPT_LOW_THRES \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_INTERRUPT_STATUS \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_PRODUCT_ID \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_PROXIMITY_CURRENT \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_PROXIMITY_RATE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_PROXIMITY_VALUE \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_internals\.h:[0-9]+: warning: Member VCNL40X0_REG_PROX_TIMING \(macro definition\) of file vcnl40x0_internals\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_params\.h:[0-9]+: warning: Member VCNL40X0_PARAMS \(macro definition\) of file vcnl40x0_params\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_params\.h:[0-9]+: warning: Member VCNL40X0_PARAM_AMBIENT_AVG \(macro definition\) of file vcnl40x0_params\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_params\.h:[0-9]+: warning: Member VCNL40X0_PARAM_AMBIENT_RATE \(macro definition\) of file vcnl40x0_params\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_params\.h:[0-9]+: warning: Member VCNL40X0_PARAM_I2C_ADDR \(macro definition\) of file vcnl40x0_params\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_params\.h:[0-9]+: warning: Member VCNL40X0_PARAM_I2C_DEV \(macro definition\) of file vcnl40x0_params\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_params\.h:[0-9]+: warning: Member VCNL40X0_PARAM_LED_CURRENT \(macro definition\) of file vcnl40x0_params\.h is not documented\. -drivers/vcnl40x0/include/vcnl40x0_params\.h:[0-9]+: warning: Member VCNL40X0_PARAM_PROXIMITY_RATE \(macro definition\) of file vcnl40x0_params\.h is not documented\. -drivers/veml6070/include/veml6070_params\.h:[0-9]+: warning: Member VEML6070_PARAMS \(macro definition\) of file veml6070_params\.h is not documented\. -drivers/veml6070/include/veml6070_params\.h:[0-9]+: warning: Member VEML6070_PARAM_I2C_DEV \(macro definition\) of file veml6070_params\.h is not documented\. -drivers/veml6070/include/veml6070_params\.h:[0-9]+: warning: Member VEML6070_PARAM_ITIME \(macro definition\) of file veml6070_params\.h is not documented\. -drivers/veml6070/include/veml6070_params\.h:[0-9]+: warning: Member VEML6070_SAUL_INFO \(macro definition\) of file veml6070_params\.h is not documented\. -drivers/w5100/include/w5100_params\.h:[0-9]+: warning: Member W5100_PARAMS \(macro definition\) of file w5100_params\.h is not documented\. -drivers/w5100/include/w5100_regs\.h:[0-9]+: warning: Member CMD_READ \(macro definition\) of file w5100_regs\.h is not documented\. -drivers/w5100/include/w5100_regs\.h:[0-9]+: warning: Member CMD_WRITE \(macro definition\) of file w5100_regs\.h is not documented\. -drivers/ws281x/include/ws281x_constants\.h:[0-9]+: warning: Member WS281X_T_DATA_ZERO_NS \(macro definition\) of file ws281x_constants\.h is not documented\. -drivers/xbee/include/xbee_params\.h:[0-9]+: warning: Member XBEE_PARAMS \(macro definition\) of file xbee_params\.h is not documented\. -drivers/xbee/include/xbee_params\.h:[0-9]+: warning: Member XBEE_PARAM_BR \(macro definition\) of file xbee_params\.h is not documented\. -drivers/xbee/include/xbee_params\.h:[0-9]+: warning: Member XBEE_PARAM_PIN_RESET \(macro definition\) of file xbee_params\.h is not documented\. -drivers/xbee/include/xbee_params\.h:[0-9]+: warning: Member XBEE_PARAM_PIN_SLEEP \(macro definition\) of file xbee_params\.h is not documented\. -drivers/xbee/include/xbee_params\.h:[0-9]+: warning: Member XBEE_PARAM_UART \(macro definition\) of file xbee_params\.h is not documented\. -pkg/cryptoauthlib/include/atca_params\.h:[0-9]+: warning: Member ATCA_DEVTYPE \(macro definition\) of group drivers_atca_config is not documented\. -pkg/cryptoauthlib/include/atca_params\.h:[0-9]+: warning: Member ATCA_PARAMS \(macro definition\) of group drivers_atca_config is not documented\. -pkg/cryptoauthlib/include/atca_params\.h:[0-9]+: warning: Member ATCA_PARAM_ADDR \(macro definition\) of group drivers_atca_config is not documented\. -pkg/cryptoauthlib/include/atca_params\.h:[0-9]+: warning: Member ATCA_PARAM_I2C \(macro definition\) of group drivers_atca_config is not documented\. -pkg/cryptoauthlib/include/atca_params\.h:[0-9]+: warning: Member ATCA_RX_RETRIES \(macro definition\) of group drivers_atca_config is not documented\. -pkg/driver_bme680/include/bme680_hal\.h:[0-9]+: warning: Member bme680_ms_sleep\(uint32_t msleep\) \(function\) of file bme680_hal\.h is not documented\. -pkg/edhoc-c/include/edhoc_config\.h:[0-9]+: warning: Member EDHOC_AUTH_CBOR_CERT \(macro definition\) of file edhoc_config\.h is not documented\. -pkg/edhoc-c/include/edhoc_config\.h:[0-9]+: warning: Member EDHOC_AUTH_METHOD_1_ENABLED \(macro definition\) of file edhoc_config\.h is not documented\. -pkg/edhoc-c/include/edhoc_config\.h:[0-9]+: warning: Member EDHOC_AUTH_METHOD_2_ENABLED \(macro definition\) of file edhoc_config\.h is not documented\. -pkg/edhoc-c/include/edhoc_config\.h:[0-9]+: warning: Member EDHOC_AUTH_METHOD_3_ENABLED \(macro definition\) of file edhoc_config\.h is not documented\. -pkg/fatfs/fatfs_diskio/mtd/include/fatfs_diskio_mtd\.h:[0-9]+: warning: Member FATFS_DISKIO_DSTASTUS_OK \(macro definition\) of group pkg_fatfs is not documented\. -pkg/fatfs/fatfs_diskio/mtd/include/fatfs_diskio_mtd\.h:[0-9]+: warning: Member FATFS_DISKIO_FATTIME_DAY_OFFS \(macro definition\) of group pkg_fatfs is not documented\. -pkg/fatfs/fatfs_diskio/mtd/include/fatfs_diskio_mtd\.h:[0-9]+: warning: Member FATFS_DISKIO_FATTIME_HH_OFFS \(macro definition\) of group pkg_fatfs is not documented\. -pkg/fatfs/fatfs_diskio/mtd/include/fatfs_diskio_mtd\.h:[0-9]+: warning: Member FATFS_DISKIO_FATTIME_MM_OFFS \(macro definition\) of group pkg_fatfs is not documented\. -pkg/fatfs/fatfs_diskio/mtd/include/fatfs_diskio_mtd\.h:[0-9]+: warning: Member FATFS_DISKIO_FATTIME_MON_OFFS \(macro definition\) of group pkg_fatfs is not documented\. -pkg/fatfs/fatfs_diskio/mtd/include/fatfs_diskio_mtd\.h:[0-9]+: warning: Member FATFS_DISKIO_FATTIME_YEAR_OFFS \(macro definition\) of group pkg_fatfs is not documented\. -pkg/fatfs/fatfs_diskio/mtd/include/fatfs_diskio_mtd\.h:[0-9]+: warning: Member FATFS_YEAR_OFFSET \(macro definition\) of group pkg_fatfs is not documented\. -pkg/fatfs/fatfs_diskio/mtd/include/fatfs_diskio_mtd\.h:[0-9]+: warning: Member FIXED_BLOCK_SIZE \(macro definition\) of group pkg_fatfs is not documented\. -pkg/lua/include/lua_run\.h:[0-9]+: warning: Member LUAR_LOAD_ALL \(macro definition\) of file lua_run\.h is not documented\. -pkg/lua/include/lua_run\.h:[0-9]+: warning: Member LUAR_LOAD_NONE \(macro definition\) of file lua_run\.h is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ANTIALIAS \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_DMA \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_FAST_MEM \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_FLUSH_READY \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_LARGE_CONST \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_MEM_ALIGN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_MEM_ALIGN_SIZE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_TASK_HANDLER \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_TICK_INC \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_BIG_ENDIAN_SYSTEM \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_CALENDAR_WEEK_STARTS_MONDAY \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_CHART_AXIS_TICK_LABEL_MAX_LEN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_COLOR_16_SWAP \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_COLOR_DEPTH \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_COLOR_SCREEN_TRANSP \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_COLOR_TRANSP \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_DISP_DEF_REFR_PERIOD \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_DISP_LARGE_LIMIT \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_DISP_MEDIUM_LIMIT \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_DISP_SMALL_LIMIT \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_DPI \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_DROPDOWN_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ENABLE_GC \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_EXPORT_CONST_INT\(int_value\) \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_CUSTOM_DECLARE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_DEJAVU_16_PERSIAN_HEBREW \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_FMT_TXT_LARGE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_12 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_12_SUBPX \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_14 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_16 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_18 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_20 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_22 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_24 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_26 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_28 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_28_COMPRESSED \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_30 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_32 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_34 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_36 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_38 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_40 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_42 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_44 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_46 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_48 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_SIMSUN_16_CJK \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_SUBPX_BGR \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_UNSCII_8 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_IMGBTN_TILED \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_IMG_CACHE_DEF_SIZE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_IMG_CF_ALPHA \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_IMG_CF_INDEXED \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_DRAG_LIMIT \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_DRAG_THROW \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_GESTURE_LIMIT \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_GESTURE_MIN_VELOCITY \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_LONG_PRESS_REP_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_LONG_PRESS_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_READ_PERIOD \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_LABEL_DEF_SCROLL_SPEED \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_LABEL_LONG_TXT_HINT \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_LABEL_TEXT_SEL \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_LABEL_WAIT_CHAR_COUNT \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_LED_BRIGHT_MAX \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_LED_BRIGHT_MIN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_LINEMETER_PRECISE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_LIST_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_MEMCPY_MEMSET_STD \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_MEM_ADR \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_MEM_ATTR \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_MEM_AUTO_DEFRAG \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_MEM_CUSTOM \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_MEM_SIZE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_PAGE_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ROLLER_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_ROLLER_INF_PAGES \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_SPINNER_DEF_ANIM \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_SPINNER_DEF_ARC_LENGTH \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_SPINNER_DEF_SPIN_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_SPRINTF_CUSTOM \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TABLE_CELL_STYLE_CNT \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TABLE_COL_MAX \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TABVIEW_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TEXTAREA_DEF_CURSOR_BLINK_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TEXTAREA_DEF_PWD_SHOW_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_COLOR_PRIMARY \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_COLOR_SECONDARY \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_FLAG \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_FONT_NORMAL \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_FONT_SMALL \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_FONT_SUBTITLE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_FONT_TITLE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_INCLUDE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_INIT \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TILEVIEW_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_BREAK_CHARS \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_COLOR_CMD \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_ENC \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_LINE_BREAK_LONG_LEN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_LINE_BREAK_LONG_POST_MIN_LEN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_LINE_BREAK_LONG_PRE_MIN_LEN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_ANIMATION \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_API_EXTENSION_V6 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_API_EXTENSION_V7 \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_ARABIC_PERSIAN_CHARS \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_ARC \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_BAR \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_BIDI \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_BLEND_MODES \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_BTN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_BTNMATRIX \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CALENDAR \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CANVAS \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CHART \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CHECKBOX \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CONT \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CPICKER \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_DEBUG \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_DROPDOWN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_EXT_CLICK_AREA \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_FILESYSTEM \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_FONT_COMPRESSED \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_FONT_SUBPX \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_GAUGE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_GPU \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_GPU_STM32_DMA2D \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_GROUP \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_IMG \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_IMGBTN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_IMG_TRANSFORM \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_KEYBOARD \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LABEL \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LED \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LINE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LINEMETER \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LIST \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LOG \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_MSGBOX \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_OBJMASK \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_OBJ_REALIGN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_OPA_SCALE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_OUTLINE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_PAGE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_PATTERN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_PERF_MONITOR \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_ROLLER \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_SHADOW \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_SLIDER \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_SPINBOX \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_SPINNER \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_SWITCH \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_TABLE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_TABVIEW \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_TEXTAREA \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_THEME_EMPTY \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_THEME_MATERIAL \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_THEME_MONO \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_THEME_TEMPLATE \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_TILEVIEW \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_USER_DATA \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_VALUE_STR \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_WIN \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member LV_VER_RES_MAX \(macro definition\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member lv_anim_user_data_t \(typedef\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member lv_disp_drv_user_data_t \(typedef\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member lv_font_user_data_t \(typedef\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member lv_group_user_data_t \(typedef\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member lv_img_decoder_user_data_t \(typedef\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lv_conf\.h:[0-9]+: warning: Member lv_indev_drv_user_data_t \(typedef\) of group pkg_lvgl is not documented\. -pkg/lvgl/include/lvgl_riot_conf\.h:[0-9]+: warning: Member LV_TICK_CUSTOM \(macro definition\) of file lvgl_riot_conf\.h is not documented\. -pkg/lvgl/include/lvgl_riot_conf\.h:[0-9]+: warning: Member LV_TICK_CUSTOM_INCLUDE \(macro definition\) of file lvgl_riot_conf\.h is not documented\. -pkg/lvgl/include/lvgl_riot_conf\.h:[0-9]+: warning: Member LV_TICK_CUSTOM_SYS_TIME_EXPR \(macro definition\) of file lvgl_riot_conf\.h is not documented\. -pkg/lvgl/include/lvgl_riot_conf\.h:[0-9]+: warning: Member lv_coord_t \(typedef\) of file lvgl_riot_conf\.h is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member LWIP_PLATFORM_ASSERT\(x\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member LWIP_PLATFORM_DIAG\(x\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member PACK_STRUCT_BEGIN \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member PACK_STRUCT_END \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member PACK_STRUCT_FIELD\(x\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member PACK_STRUCT_STRUCT \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member S16_F \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member S32_F \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member SZT_F \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member U16_F \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member U32_F \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member X16_F \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member X32_F \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/cc\.h:[0-9]+: warning: Member X8_F \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member LOCK_TCPIP_CORE\(\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_ARCH_DECL_PROTECT\(x\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_ARCH_PROTECT\(x\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_ARCH_UNPROTECT\(x\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_MBOX_SIZE \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member UNLOCK_TCPIP_CORE\(\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_lock_tcpip_core\(void\) \(function\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_set_invalid\(mbox\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_set_invalid\(sys_mbox_t \*mbox\) \(function\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_valid\(mbox\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_valid\(sys_mbox_t \*mbox\) \(function\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mutex_set_invalid\(mutex\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mutex_valid\(mutex\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mutex_valid\(sys_mutex_t \*mutex\) \(function\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_sem_set_invalid\(sem\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_sem_valid\(sem\) \(macro definition\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_sem_valid\(sys_sem_t \*sem\) \(function\) of file sys_arch\.h is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_unlock_tcpip_core\(void\) \(function\) of file sys_arch\.h is not documented\. -pkg/lwip/include/lwip_init_devs\.h:[0-9]+: warning: Member lwip_netif_init_devs\(void\) \(function\) of file lwip_init_devs\.h is not documented\. -pkg/lwip/include/lwip_init_devs\.h:[0-9]+: warning: Member lwip_netif_setup_func_t\)\(void\) \(typedef\) of file lwip_init_devs\.h is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_6LOWPAN \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_ASSERT_CORE_LOCKED\(\) \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_AUTOIP \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_DHCP \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_DONT_PROVIDE_BYTEORDER_FUNCTIONS \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_ETHERNET \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_IGMP \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_IPV4 \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_IPV6 \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_IPV6_AUTOCONFIG \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_IPV6_MLD \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_MARK_TCPIP_THREAD \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_NETCONN \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_NETIF_API \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_RAW \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_SOCKET \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_STATS \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_TCP \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_UDP \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member LWIP_UDPLITE \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member MEMP_MEM_MALLOC \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member MEM_ALIGNMENT \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member MEM_SIZE \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member NETIF_MAX_HWADDR_LEN \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member PPP_SUPPORT \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member TCPIP_THREAD_STACKSIZE \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member TCP_LISTEN_BACKLOG \(macro definition\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member sys_check_core_locked\(void\) \(function\) of group pkg_lwip_opts is not documented\. -pkg/lwip/include/lwipopts\.h:[0-9]+: warning: Member sys_mark_tcpip_thread\(void\) \(function\) of group pkg_lwip_opts is not documented\. -pkg/micropython/include/micropython\.h:[0-9]+: warning: Member MP_RIOT_HEAPSIZE \(macro definition\) of file micropython\.h is not documented\. -pkg/micropython/include/micropython\.h:[0-9]+: warning: Member MP_STACK_SAFEAREA \(macro definition\) of file micropython\.h is not documented\. -pkg/mynewt-core/include/log/log\.h:[0-9]+: warning: Member LOG_CRITICAL\(\.\.\.\) \(macro definition\) of file log\.h is not documented\. -pkg/mynewt-core/include/log/log\.h:[0-9]+: warning: Member LOG_WARN\(\.\.\.\) \(macro definition\) of file log\.h is not documented\. -pkg/mynewt-core/include/log/log\.h:[0-9]+: warning: Member log_register\(__X, __Y, __Z, __A, __B\) \(macro definition\) of file log\.h is not documented\. -pkg/mynewt-core/include/mcu/mcu\.h:[0-9]+: warning: Member __HAL_DISABLE_INTERRUPTS\(x\) \(macro definition\) of file mcu\.h is not documented\. -pkg/mynewt-core/include/mcu/mcu\.h:[0-9]+: warning: Member __HAL_ENABLE_INTERRUPTS\(x\) \(macro definition\) of file mcu\.h is not documented\. -pkg/mynewt-core/include/os/os\.h:[0-9]+: warning: Member OS_ALIGNMENT \(macro definition\) of file os\.h is not documented\. -pkg/mynewt-core/include/os/os\.h:[0-9]+: warning: Member OS_ALIGN\(__n, __a\) \(macro definition\) of file os\.h is not documented\. -pkg/mynewt-core/include/os/os\.h:[0-9]+: warning: Member OS_ASSERT_CRITICAL\(\) \(macro definition\) of file os\.h is not documented\. -pkg/mynewt-core/include/os/os\.h:[0-9]+: warning: Member OS_ENTER_CRITICAL\(_sr\) \(macro definition\) of file os\.h is not documented\. -pkg/mynewt-core/include/os/os\.h:[0-9]+: warning: Member OS_EXIT_CRITICAL\(_sr\) \(macro definition\) of file os\.h is not documented\. -pkg/mynewt-core/include/os/os\.h:[0-9]+: warning: Member max\(a, b\) \(macro definition\) of file os\.h is not documented\. -pkg/mynewt-core/include/os/os\.h:[0-9]+: warning: Member min\(a, b\) \(macro definition\) of file os\.h is not documented\. -pkg/mynewt-core/include/os/os_types\.h:[0-9]+: warning: Member OS_TIMEOUT_NEVER \(macro definition\) of file os_types\.h is not documented\. -pkg/mynewt-core/include/os/os_types\.h:[0-9]+: warning: Member OS_WAIT_FOREVER \(macro definition\) of file os_types\.h is not documented\. -pkg/mynewt-core/include/os/os_types\.h:[0-9]+: warning: Member SYS_EINVAL \(macro definition\) of file os_types\.h is not documented\. -pkg/mynewt-core/include/os/os_types\.h:[0-9]+: warning: Member SYS_ENOMEM \(macro definition\) of file os_types\.h is not documented\. -pkg/mynewt-core/include/syscfg/syscfg\.h:[0-9]+: warning: Member MYNEWT_VAL\(_name\) \(macro definition\) of file syscfg\.h is not documented\. -pkg/mynewt-core/include/syscfg/syscfg\.h:[0-9]+: warning: Member MYNEWT_VAL_CHOICE\(_name, _val\) \(macro definition\) of file syscfg\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_ADV_ITVL_MS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_CONN_ITVL_MAX_MS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_CONN_ITVL_MIN_MS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_CONN_LATENCY \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_CONN_SVTO_MS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_CONN_TIMEOUT_MS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_NODE_ID \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_PARAMS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_PERIOD_ADV_MS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_PERIOD_JITTER_MS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_PERIOD_SCAN_MS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_SCAN_ITVL_MS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/autoconn/include/nimble_autoconn_params\.h:[0-9]+: warning: Member NIMBLE_AUTOCONN_SCAN_WIN_MS \(macro definition\) of file nimble_autoconn_params\.h is not documented\. -pkg/nimble/npl/include/nimble/nimble_npl_os\.h:[0-9]+: warning: Member BLE_NPL_OS_ALIGNMENT \(macro definition\) of file nimble_npl_os\.h is not documented\. -pkg/nimble/npl/include/nimble/nimble_npl_os\.h:[0-9]+: warning: Member BLE_NPL_TIME_FOREVER \(macro definition\) of file nimble_npl_os\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_ADV_ITVL_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_CONN_ITVL_MAX_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_CONN_ITVL_MIN_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_CONN_LATENCY \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_CONN_SCAN_ITVL_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_CONN_SCAN_TO_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_CONN_SCAN_WIN_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_CONN_SUPER_TO_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_EVAL_ITVL_MAX_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_EVAL_ITVL_MIN_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_PARAMS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_SCAN_ITVL_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/nimble/rpble/include/nimble_rpble_params\.h:[0-9]+: warning: Member NIMBLE_RPBLE_SCAN_WIN_MS \(macro definition\) of file nimble_rpble_params\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member DISABLE_INTERRUPTS\(\) \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member ENABLE_INTERRUPTS\(\) \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member INTERRUPT_DECLARATION\(\) \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_RADIOTIMER_WIDTH \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_SIGNED_INT_WIDTH \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_TICS_PER_MS \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_TIMER_WIDTH \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_TsSlotDuration \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_US_PER_TICK \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_delayRx \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_delayTx \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_maxRxAckPrepare \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_maxRxDataPrepare \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_maxTxAckPrepare \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member PORT_maxTxDataPrepare \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member SCHEDULER_ENABLE_INTERRUPT\(\) \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member SCHEDULER_WAKEUP\(\) \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member SCTIMER_FREQUENCY \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member SLOTDURATION \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/board_info\.h:[0-9]+: warning: Member SYNC_ACCURACY \(macro definition\) of file board_info\.h is not documented\. -pkg/openwsn/include/openwsn_debugpins_params\.h:[0-9]+: warning: Member OPENWSN_DEBUGPINS_DEFAULT \(macro definition\) of file openwsn_debugpins_params\.h is not documented\. -pkg/openwsn/include/openwsn_debugpins_params\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_FRAME \(macro definition\) of file openwsn_debugpins_params\.h is not documented\. -pkg/openwsn/include/openwsn_debugpins_params\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_FSM \(macro definition\) of file openwsn_debugpins_params\.h is not documented\. -pkg/openwsn/include/openwsn_debugpins_params\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_ISR \(macro definition\) of file openwsn_debugpins_params\.h is not documented\. -pkg/openwsn/include/openwsn_debugpins_params\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_RADIO \(macro definition\) of file openwsn_debugpins_params\.h is not documented\. -pkg/openwsn/include/openwsn_debugpins_params\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_SLOT \(macro definition\) of file openwsn_debugpins_params\.h is not documented\. -pkg/openwsn/include/openwsn_debugpins_params\.h:[0-9]+: warning: Member OPENWSN_DEBUGPIN_TASK \(macro definition\) of file openwsn_debugpins_params\.h is not documented\. -pkg/openwsn/include/openwsn_leds_params\.h:[0-9]+: warning: Member OPENWSN_LEDPIN_DEBUG \(macro definition\) of file openwsn_leds_params\.h is not documented\. -pkg/openwsn/include/openwsn_leds_params\.h:[0-9]+: warning: Member OPENWSN_LEDPIN_ERROR \(macro definition\) of file openwsn_leds_params\.h is not documented\. -pkg/openwsn/include/openwsn_leds_params\.h:[0-9]+: warning: Member OPENWSN_LEDPIN_RADIO \(macro definition\) of file openwsn_leds_params\.h is not documented\. -pkg/openwsn/include/openwsn_leds_params\.h:[0-9]+: warning: Member OPENWSN_LEDPIN_SYNC \(macro definition\) of file openwsn_leds_params\.h is not documented\. -pkg/openwsn/include/openwsn_leds_params\.h:[0-9]+: warning: Member OPENWSN_LEDS_DEFAULT \(macro definition\) of file openwsn_leds_params\.h is not documented\. -pkg/openwsn/include/openwsn_leds_params\.h:[0-9]+: warning: Member OPENWSN_LED_ON_STATE \(macro definition\) of file openwsn_leds_params\.h is not documented\. -pkg/openwsn/include/openwsn_log\.h:[0-9]+: warning: Member LOG_RIOT_DEBUG\(\.\.\.\) \(macro definition\) of file openwsn_log\.h is not documented\. -pkg/openwsn/include/openwsn_log\.h:[0-9]+: warning: Member LOG_RIOT_ERROR\(\.\.\.\) \(macro definition\) of file openwsn_log\.h is not documented\. -pkg/openwsn/include/openwsn_log\.h:[0-9]+: warning: Member LOG_RIOT_INFO\(\.\.\.\) \(macro definition\) of file openwsn_log\.h is not documented\. -pkg/openwsn/include/openwsn_log\.h:[0-9]+: warning: Member LOG_RIOT_WARNING\(\.\.\.\) \(macro definition\) of file openwsn_log\.h is not documented\. -pkg/tlsf/contrib/tlsf-malloc-internal\.h:[0-9]+: warning: Member tlsf_malloc_gheap \(variable\) of file tlsf-malloc-internal\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_os\.h:[0-9]+: warning: Member DPL_ASSERT_CRITICAL\(\) \(macro definition\) of file dpl_os\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_os\.h:[0-9]+: warning: Member DPL_ENTER_CRITICAL\(_sr\) \(macro definition\) of file dpl_os\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_os\.h:[0-9]+: warning: Member DPL_EXIT_CRITICAL\(_sr\) \(macro definition\) of file dpl_os\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_ADD\(__X, __Y\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_CEIL\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_DIV\(__X, __Y\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_FABS\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_FMOD\(__X, __Y\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_FROM_F64\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_I32_TO_F32\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_INIT\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_INT\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_ISNAN\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_LOG10\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_MUL\(__X, __Y\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_NAN\(\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_PRINTF_PRIM \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_PRINTF_VALS\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT32_SUB\(__X, __Y\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64TO32\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_ADD\(__X, __Y\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_ASIN\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_ATAN\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_CEIL\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_DIV\(__X, __Y\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_F64_TO_U64\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_FMOD\(__X, __Y\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_FROM_F32\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_I32_TO_F64\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_I64_TO_F64\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_INIT\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_INT\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_ISNAN\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_LOG10\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_MUL\(__X, __Y\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_NAN\(\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_PRINTF_PRIM \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_PRINTF_VALS\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_SUB\(__X, __Y\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_FLOAT64_U64_TO_F64\(__X\) \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_STACK_ALIGNMENT \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_TIMEOUT_NEVER \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-core/include/dpl/dpl_types\.h:[0-9]+: warning: Member DPL_WAIT_FOREVER \(macro definition\) of file dpl_types\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_EXT_CLOCK_DELAY \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_PARAMS \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_PARAM_CS_PIN \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_PARAM_IRQ_PIN \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_PARAM_RESET_PIN \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_PARAM_SPI \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_PARAM_SPI_CLK_HIGH \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_PARAM_SPI_CLK_LOW \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_RX_ANTENNA_DELAY \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_SPI_MODE \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_SPI_SEM \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member DW1000_TX_ANTENNA_DELAY \(macro definition\) of file uwb_dw1000_params\.h is not documented\. -pkg/uwb-dw1000/include/uwb_dw1000_params\.h:[0-9]+: warning: Member sem_spi \(variable\) of file uwb_dw1000_params\.h is not documented\. -pkg/wakaama/include/lwm2m_client_connection\.h:[0-9]+: warning: Member SCHEME_COAP \(macro definition\) of file lwm2m_client_connection\.h is not documented\. -pkg/wakaama/include/lwm2m_client_connection\.h:[0-9]+: warning: Member SCHEME_COAPS \(macro definition\) of file lwm2m_client_connection\.h is not documented\. -sys/arduino/include/wireport\.hpp:[0-9]+: warning: Member Wire \(variable\) of file wireport\.hpp is not documented\. -sys/clif/include/clif_internal\.h:[0-9]+: warning: Member _P_SIZE\(p\) \(macro definition\) of file clif_internal\.h is not documented\. -sys/embunit/ColorTextColors\.h:[0-9]+: warning: Member BGDEFAULT \(macro definition\) of file ColorTextColors\.h is not documented\. -sys/embunit/ColorTextColors\.h:[0-9]+: warning: Member BGGREEN \(macro definition\) of file ColorTextColors\.h is not documented\. -sys/embunit/ColorTextColors\.h:[0-9]+: warning: Member BGRED \(macro definition\) of file ColorTextColors\.h is not documented\. -sys/embunit/ColorTextColors\.h:[0-9]+: warning: Member CDEFAULT \(macro definition\) of file ColorTextColors\.h is not documented\. -sys/embunit/ColorTextColors\.h:[0-9]+: warning: Member CGREEN \(macro definition\) of file ColorTextColors\.h is not documented\. -sys/embunit/ColorTextColors\.h:[0-9]+: warning: Member CRED \(macro definition\) of file ColorTextColors\.h is not documented\. -sys/embunit/ColorTextColors\.h:[0-9]+: warning: Member LINEFILL \(macro definition\) of file ColorTextColors\.h is not documented\. -sys/embunit/ColorTextColors\.h:[0-9]+: warning: Member SBOLD \(macro definition\) of file ColorTextColors\.h is not documented\. -sys/embunit/ColorTextColors\.h:[0-9]+: warning: Member SDEFAULT \(macro definition\) of file ColorTextColors\.h is not documented\. -sys/include/byteorder\.h:[0-9]+: warning: Member byteorder_htolebufl\(uint8_t \*buf, uint32_t val\) \(function\) of file byteorder\.h is not documented\. -sys/include/byteorder\.h:[0-9]+: warning: Member byteorder_htolebufll\(uint8_t \*buf, uint64_t val\) \(function\) of file byteorder\.h is not documented\. -sys/include/byteorder\.h:[0-9]+: warning: Member byteorder_htolebufs\(uint8_t \*buf, uint16_t val\) \(function\) of file byteorder\.h is not documented\. -sys/include/byteorder\.h:[0-9]+: warning: Member byteorder_lebuftohl\(const uint8_t \*buf\) \(function\) of file byteorder\.h is not documented\. -sys/include/byteorder\.h:[0-9]+: warning: Member byteorder_lebuftohll\(const uint8_t \*buf\) \(function\) of file byteorder\.h is not documented\. -sys/include/byteorder\.h:[0-9]+: warning: Member byteorder_lebuftohs\(const uint8_t \*buf\) \(function\) of file byteorder\.h is not documented\. -sys/include/can/isotp\.h:[0-9]+: warning: Member CAN_ISOTP_DEFAULT_EXT_ADDRESS \(macro definition\) of group sys_can_isotp is not documented\. -sys/include/can/isotp\.h:[0-9]+: warning: Member CAN_ISOTP_DEFAULT_FLAGS \(macro definition\) of group sys_can_isotp is not documented\. -sys/include/can/isotp\.h:[0-9]+: warning: Member CAN_ISOTP_DEFAULT_FRAME_TXTIME \(macro definition\) of group sys_can_isotp is not documented\. -sys/include/can/isotp\.h:[0-9]+: warning: Member CAN_ISOTP_DEFAULT_PAD_CONTENT \(macro definition\) of group sys_can_isotp is not documented\. -sys/include/can/isotp\.h:[0-9]+: warning: Member CAN_ISOTP_DEFAULT_RECV_BS \(macro definition\) of group sys_can_isotp is not documented\. -sys/include/can/isotp\.h:[0-9]+: warning: Member CAN_ISOTP_DEFAULT_RECV_STMIN \(macro definition\) of group sys_can_isotp is not documented\. -sys/include/can/isotp\.h:[0-9]+: warning: Member CAN_ISOTP_DEFAULT_RECV_WFTMAX \(macro definition\) of group sys_can_isotp is not documented\. -sys/include/crypto/aes\.h:[0-9]+: warning: Member AES_BLOCK_SIZE \(macro definition\) of file aes\.h is not documented\. -sys/include/crypto/aes\.h:[0-9]+: warning: Member AES_KEY_SIZE_128 \(macro definition\) of file aes\.h is not documented\. -sys/include/crypto/aes\.h:[0-9]+: warning: Member AES_KEY_SIZE_192 \(macro definition\) of file aes\.h is not documented\. -sys/include/crypto/aes\.h:[0-9]+: warning: Member AES_KEY_SIZE_256 \(macro definition\) of file aes\.h is not documented\. -sys/include/crypto/aes\.h:[0-9]+: warning: Member AES_MAXNR \(macro definition\) of file aes\.h is not documented\. -sys/include/crypto/aes\.h:[0-9]+: warning: Member GETU32\(pt\) \(macro definition\) of file aes\.h is not documented\. -sys/include/crypto/aes\.h:[0-9]+: warning: Member PUTU32\(ct, st\) \(macro definition\) of file aes\.h is not documented\. -sys/include/crypto/aes\.h:[0-9]+: warning: Member u16 \(typedef\) of file aes\.h is not documented\. -sys/include/crypto/aes\.h:[0-9]+: warning: Member u32 \(typedef\) of file aes\.h is not documented\. -sys/include/crypto/aes\.h:[0-9]+: warning: Member u8 \(typedef\) of file aes\.h is not documented\. -sys/include/crypto/ciphers\.h:[0-9]+: warning: Member CIPHER_ERR_DEC_FAILED \(macro definition\) of file ciphers\.h is not documented\. -sys/include/crypto/ciphers\.h:[0-9]+: warning: Member CIPHER_ERR_ENC_FAILED \(macro definition\) of file ciphers\.h is not documented\. -sys/include/crypto/ciphers\.h:[0-9]+: warning: Member CIPHER_ERR_INVALID_KEY_SIZE \(macro definition\) of file ciphers\.h is not documented\. -sys/include/crypto/ciphers\.h:[0-9]+: warning: Member CIPHER_ERR_INVALID_LENGTH \(macro definition\) of file ciphers\.h is not documented\. -sys/include/crypto/ciphers\.h:[0-9]+: warning: Member CIPHER_MAX_BLOCK_SIZE \(macro definition\) of file ciphers\.h is not documented\. -sys/include/crypto/ciphers\.h:[0-9]+: warning: Member cipher_id_t \(variable\) of file ciphers\.h is not documented\. -sys/include/crypto/modes/ccm\.h:[0-9]+: warning: Member CCM_ERR_INVALID_CBC_MAC \(macro definition\) of file ccm\.h is not documented\. -sys/include/crypto/modes/ccm\.h:[0-9]+: warning: Member CCM_ERR_INVALID_DATA_LENGTH \(macro definition\) of file ccm\.h is not documented\. -sys/include/crypto/modes/ccm\.h:[0-9]+: warning: Member CCM_ERR_INVALID_LENGTH_ENCODING \(macro definition\) of file ccm\.h is not documented\. -sys/include/crypto/modes/ccm\.h:[0-9]+: warning: Member CCM_ERR_INVALID_MAC_LENGTH \(macro definition\) of file ccm\.h is not documented\. -sys/include/crypto/modes/ccm\.h:[0-9]+: warning: Member CCM_ERR_INVALID_NONCE_LENGTH \(macro definition\) of file ccm\.h is not documented\. -sys/include/div\.h:[0-9]+: warning: Member _div_mulhi64\(const uint64_t a, const uint64_t b\) \(function\) of file div\.h is not documented\. -sys/include/event/thread\.h:[0-9]+: warning: Member event_thread_queues\[EVENT_QUEUE_PRIO_NUMOF\] \(variable\) of file thread\.h is not documented\. -sys/include/hashes/sha2xx_common\.h:[0-9]+: warning: Member Maj\(x, y, z\) \(macro definition\) of group sys_hashes_sha2xx_common is not documented\. -sys/include/hashes/sha2xx_common\.h:[0-9]+: warning: Member ROTR\(x, n\) \(macro definition\) of group sys_hashes_sha2xx_common is not documented\. -sys/include/hashes/sha2xx_common\.h:[0-9]+: warning: Member S0\(x\) \(macro definition\) of group sys_hashes_sha2xx_common is not documented\. -sys/include/hashes/sha2xx_common\.h:[0-9]+: warning: Member S1\(x\) \(macro definition\) of group sys_hashes_sha2xx_common is not documented\. -sys/include/hashes/sha2xx_common\.h:[0-9]+: warning: Member SHR\(x, n\) \(macro definition\) of group sys_hashes_sha2xx_common is not documented\. -sys/include/hashes/sha2xx_common\.h:[0-9]+: warning: Member s0\(x\) \(macro definition\) of group sys_hashes_sha2xx_common is not documented\. -sys/include/hashes/sha2xx_common\.h:[0-9]+: warning: Member s1\(x\) \(macro definition\) of group sys_hashes_sha2xx_common is not documented\. -sys/include/hashes\.h:[0-9]+: warning: Member dek_hash\(const uint8_t \*buf, size_t len\) \(function\) of file hashes\.h is not documented\. -sys/include/hashes\.h:[0-9]+: warning: Member djb2_hash\(const uint8_t \*buf, size_t len\) \(function\) of file hashes\.h is not documented\. -sys/include/hashes\.h:[0-9]+: warning: Member fnv_hash\(const uint8_t \*buf, size_t len\) \(function\) of file hashes\.h is not documented\. -sys/include/hashes\.h:[0-9]+: warning: Member kr_hash\(const uint8_t \*buf, size_t len\) \(function\) of file hashes\.h is not documented\. -sys/include/hashes\.h:[0-9]+: warning: Member one_at_a_time_hash\(const uint8_t \*buf, size_t len\) \(function\) of file hashes\.h is not documented\. -sys/include/hashes\.h:[0-9]+: warning: Member rotating_hash\(const uint8_t \*buf, size_t len\) \(function\) of file hashes\.h is not documented\. -sys/include/hashes\.h:[0-9]+: warning: Member sax_hash\(const uint8_t \*buf, size_t len\) \(function\) of file hashes\.h is not documented\. -sys/include/hashes\.h:[0-9]+: warning: Member sdbm_hash\(const uint8_t \*buf, size_t len\) \(function\) of file hashes\.h is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ADV_EXT_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ADV_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ADV_NONCON_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ADV_SCAN_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_ATTRIBUTE_NOT_FOUND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_ATTRIBUTE_NOT_LONG \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_AUTH_SIGNED_WRITES \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_BROADCAST \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_ERROR_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_EXEC_WRITE_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_EXEC_WRITE_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_EXT_PROPERTIES \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_FIND_BY_VAL_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_FIND_BY_VAL_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_FIND_INFO_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_FIND_INFO_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_INDICATE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_INSUFFICENT_KEY_SIZE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_INSUFFICIENT_AUTHEN \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_INSUFFICIENT_AUTHOR \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_INSUFFICIENT_ENCRYPTION \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_INSUFFICIENT_RESSOURCES \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_INVALID_ATTR_VAL_LEN \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_INVALID_HANDLE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_INVALID_OFFSET \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_INVALID_PDU \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_MTU_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_MTU_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_NOTIFY \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_PREPARE_QUEUE_FULL \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_PREP_WRITE_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_PREP_WRITE_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_BLOB_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_BLOB_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_BY_GROUP_TYPE_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_BY_GROUP_TYPE_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_BY_TYPE_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_BY_TYPE_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_MUL_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_MUL_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_NOT_PERMITTED \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_READ_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_REQUEST_NOT_SUP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_SIGNED_WRITE_CMD \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_ULIKELY_ERROR \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_UNSUPPORTED_GROUP_TYPE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_VAL_CONFIRMATION \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_VAL_INDICATION \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_VAL_NOTIFICATION \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_WRITE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_WRITE_COMMAND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_WRITE_NOT_PERMITTED \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_WRITE_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_WRITE_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_ATT_WRITE_WO_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_AUX_ADV_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_AUX_CHAIN_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_AUX_CONNECT_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_AUX_SCAN_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_AUX_SCAN_RSP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_AUX_SYNC_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_CONNECT_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_CONNECT_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DECL_CHAR \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DECL_INCLUDE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DECL_PRI_SERVICE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DECL_SEC_SERVICE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_AGGR_FMT \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_CLIENT_CONFIG \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_ENV_CONFIG \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_ENV_MEASUREMENT \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_ENV_TRIGGER_SETTING \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_EXT_PROP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_EXT_REPORT_REF \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_NUMOF_DIGITS \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_PRES_FMT \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_REPORT_REF \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_SERVER_CONFIG \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_TIME_TRIGGER_SETTING \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_USER_DESC \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_VALID_RANGE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DESC_VALUE_TRIGGER_SETTING \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_DIRECT_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_3D_INFO_DATA \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_ADDR_PUBLIC \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_ADDR_RANDOM \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_ADV_INTERVAL \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_APPEARANCE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_CHAN_MAP_UPDATE_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_CLASS_OF_DEVICE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_DEVICE_ID \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_FLAGS \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_INDOOR_POSITIONING \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_LE_DEVICE_ADDR \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_LE_ROLE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_LE_SEC_CON_CONF_VAL \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_LE_SEC_CON_RAND_VAL \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_LE_SUP_FEATURES \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_LIST_SOL_UUID_128 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_LIST_SOL_UUID_16 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_LIST_SOL_UUID_32 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_NAME \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_NAME_SHORT \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_PAIRING_HASH_192 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_PAIRING_HASH_256 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_PAIRING_RAND_192 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_PAIRING_RAND_256 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_SEC_MANAGER_OOB_FLAGS \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_SEC_MANAGER_TK_VAL \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_SERVICE_DATA \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_SERVICE_DATA_128 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_SERVICE_DATA_32 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_SERVICE_DATA_UUID16 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_SLAVE_CON_INTERVAL \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_TRANSPORT_DISC_DATA \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_TX_POWER_LEVEL \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_URI \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_UUID128_COMP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_UUID128_INCOMP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_UUID16_COMP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_UUID16_INCOMP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_UUID32_COMP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_UUID32_INCOMP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_AD_VENDOR \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_DISCOVERABLE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_DISCOVER_LIM \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_GAP_FLAG_BREDR_NOTSUP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_L2CAP_CID_CB_MAX \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_L2CAP_CID_CB_MIN \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_CHANNEL_MAP_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_CONN_PARAM_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_CONN_PARAM_RSP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_CONN_UPDATE_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_ENC_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_ENC_RSP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_FEATURE_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_FEATURE_RSP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_FLAG_CHSEL \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_FLAG_RXADD \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_FLAG_TXADD \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_LENGTH_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_LENGTH_RSP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_MIN_USED_CHAN_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_PAUSE_ENC_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_PAUSE_ENC_RSP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_PHY_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_PHY_RSP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_PHY_UPDATE_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_PING_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_PING_RSP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_REJECT_EXT_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_REJECT_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_SLAVE_FEATURE_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_START_ENC_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_START_ENC_RSP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_TERMINATE_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_UNKNOWN_RSP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_LL_VERSION_IND \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_PDU_MASK \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_SCAN_REQ \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_SCAN_RESP \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_2bit \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_BOOL \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_DUINT16 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_FLOAT \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_FLOAT32 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_FLOAT64 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_NIBBLE \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_SFLOAT \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_SINT12 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_SINT128 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_SINT16 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_SINT24 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_SINT32 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_SINT48 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_SINT64 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_SINT8 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_STRUCT \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_UINT12 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_UINT128 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_UINT16 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_UINT24 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_UINT32 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_UINT48 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_UINT64 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_UINT8 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_UTF16 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_UNIT_BLE_FMT_UTF8 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_VERSION_40 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_VERSION_41 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_VERSION_42 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/ble\.h:[0-9]+: warning: Member BLE_VERSION_50 \(macro definition\) of group ble_defs is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_BLOCKWISE_MORE_OFF \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_BLOCKWISE_NUM_OFF \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_BLOCKWISE_SZX_MASK \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_BLOCKWISE_SZX_MAX \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CLASS_CLIENT_FAILURE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CLASS_REQ \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CLASS_SERVER_FAILURE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CLASS_SUCCESS \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_204 \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_205 \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_231 \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_404 \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_BAD_GATEWAY \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_BAD_OPTION \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_BAD_REQUEST \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_CHANGED \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_CONFLICT \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_CONTENT \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_CONTINUE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_CREATED \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_DELETED \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_EMPTY \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_FORBIDDEN \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_GATEWAY_TIMEOUT \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_INTERNAL_SERVER_ERROR \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_METHOD_NOT_ALLOWED \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_NOT_ACCEPTABLE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_NOT_IMPLEMENTED \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_PATH_NOT_FOUND \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_PRECONDITION_FAILED \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_PROXYING_NOT_SUPPORTED \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_REQUEST_ENTITY_INCOMPLETE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_REQUEST_ENTITY_TOO_LARGE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_SERVICE_UNAVAILABLE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_UNAUTHORIZED \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_UNPROCESSABLE_ENTITY \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_TOO_MANY_REQUESTS \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_UNSUPPORTED_CONTENT_FORMAT \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_CODE_VALID \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_DEFAULT_LEISURE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_CBOR \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_EXI \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_JSON \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_JSON_PATCH_JSON \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_LINK \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_MERGE_PATCH_JSON \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_OCTET \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_SENML_CBOR \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_SENML_EXI \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_SENML_JSON \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_SENML_XML \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_SENSML_CBOR \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_SENSML_EXI \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_SENSML_JSON \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_SENSML_XML \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_TEXT \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_FORMAT_XML \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_METHOD_DELETE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_METHOD_FETCH \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_METHOD_GET \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_METHOD_IPATCH \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_METHOD_PATCH \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_METHOD_POST \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_METHOD_PUT \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_NSTART \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OBS_DEREGISTER \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OBS_REGISTER \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_ACCEPT \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_BLOCK1 \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_BLOCK2 \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_CONTENT_FORMAT \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_ETAG \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_IF_MATCH \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_IF_NONE_MATCH \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_MAX_AGE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_LOCATION_PATH \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_LOCATION_QUERY \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_OBSERVE \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_PROXY_SCHEME \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_PROXY_URI \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_URI_HOST \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_URI_PATH \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_OPT_URI_QUERY \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_TOKEN_LENGTH_MAX \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_TYPE_ACK \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_TYPE_CON \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_TYPE_NON \(macro definition\) of group net_coap is not documented\. -sys/include/net/coap\.h:[0-9]+: warning: Member COAP_TYPE_RST \(macro definition\) of group net_coap is not documented\. -sys/include/net/dns\.h:[0-9]+: warning: Member DNS_CLASS_IN \(macro definition\) of group net_dns is not documented\. -sys/include/net/dns\.h:[0-9]+: warning: Member DNS_TYPE_A \(macro definition\) of group net_dns is not documented\. -sys/include/net/dns\.h:[0-9]+: warning: Member DNS_TYPE_AAAA \(macro definition\) of group net_dns is not documented\. -sys/include/net/dns\.h:[0-9]+: warning: Member RR_CLASS_LENGTH \(macro definition\) of group net_dns is not documented\. -sys/include/net/dns\.h:[0-9]+: warning: Member RR_RDLENGTH_LENGTH \(macro definition\) of group net_dns is not documented\. -sys/include/net/dns\.h:[0-9]+: warning: Member RR_TTL_LENGTH \(macro definition\) of group net_dns is not documented\. -sys/include/net/dns\.h:[0-9]+: warning: Member RR_TYPE_LENGTH \(macro definition\) of group net_dns is not documented\. -sys/include/net/eddystone\.h:[0-9]+: warning: Member EDDYSTONE_EID \(macro definition\) of group net_eddystone is not documented\. -sys/include/net/eddystone\.h:[0-9]+: warning: Member EDDYSTONE_INSTANCE_LEN \(macro definition\) of group net_eddystone is not documented\. -sys/include/net/eddystone\.h:[0-9]+: warning: Member EDDYSTONE_NAMESPACE_LEN \(macro definition\) of group net_eddystone is not documented\. -sys/include/net/eddystone\.h:[0-9]+: warning: Member EDDYSTONE_TLM \(macro definition\) of group net_eddystone is not documented\. -sys/include/net/eddystone\.h:[0-9]+: warning: Member EDDYSTONE_UID \(macro definition\) of group net_eddystone is not documented\. -sys/include/net/eddystone\.h:[0-9]+: warning: Member EDDYSTONE_URL \(macro definition\) of group net_eddystone is not documented\. -sys/include/net/gcoap\.h:[0-9]+: warning: Member GCOAP_OBS_INIT_ERR \(macro definition\) of group net_gcoap is not documented\. -sys/include/net/gcoap\.h:[0-9]+: warning: Member GCOAP_OBS_INIT_OK \(macro definition\) of group net_gcoap is not documented\. -sys/include/net/gcoap\.h:[0-9]+: warning: Member GCOAP_OBS_INIT_UNUSED \(macro definition\) of group net_gcoap is not documented\. -sys/include/net/gcoap\.h:[0-9]+: warning: Member GCOAP_RESOURCE_ERROR \(macro definition\) of group net_gcoap is not documented\. -sys/include/net/gcoap\.h:[0-9]+: warning: Member GCOAP_RESOURCE_FOUND \(macro definition\) of group net_gcoap is not documented\. -sys/include/net/gcoap\.h:[0-9]+: warning: Member GCOAP_RESOURCE_NO_PATH \(macro definition\) of group net_gcoap is not documented\. -sys/include/net/gcoap\.h:[0-9]+: warning: Member GCOAP_RESOURCE_WRONG_METHOD \(macro definition\) of group net_gcoap is not documented\. -sys/include/net/gcoap\.h:[0-9]+: warning: Member GCOAP_STACK_SIZE \(macro definition\) of group net_gcoap is not documented\. -sys/include/net/gnrc/rpl/p2p\.h:[0-9]+: warning: Member GNRC_RPL_P2P_DEFAULT_DIO_INTERVAL_MIN \(macro definition\) of group net_gnrc_rpl_p2p is not documented\. -sys/include/net/gnrc/rpl/p2p\.h:[0-9]+: warning: Member GNRC_RPL_P2P_DEFAULT_DIO_REDUNDANCY_CONSTANT \(macro definition\) of group net_gnrc_rpl_p2p is not documented\. -sys/include/net/gnrc/rpl/p2p\.h:[0-9]+: warning: Member GNRC_RPL_P2P_DEFAULT_LIFETIME \(macro definition\) of group net_gnrc_rpl_p2p is not documented\. -sys/include/net/gnrc/rpl/p2p\.h:[0-9]+: warning: Member GNRC_RPL_P2P_LIFETIME_UNIT \(macro definition\) of group net_gnrc_rpl_p2p is not documented\. -sys/include/net/gnrc/rpl/rpble\.h:[0-9]+: warning: Member gnrc_rpl_rpble_update\(const gnrc_rpl_dodag_t \*dodag\) \(function\) of file rpble\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_DAO_ACK_D_BIT \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_DAO_D_BIT \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_DAO_K_BIT \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_OPT_DODAG_CONF_LEN \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_OPT_PREFIX_INFO_LEN \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_OPT_TARGET_LEN \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_OPT_TRANSIT_INFO_LEN \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_REQ_DIO_OPT_DODAG_CONF \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_REQ_DIO_OPT_DODAG_CONF_SHIFT \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_REQ_DIO_OPT_PREFIX_INFO \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl/structs\.h:[0-9]+: warning: Member GNRC_RPL_REQ_DIO_OPT_PREFIX_INFO_SHIFT \(macro definition\) of file structs\.h is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member CONFIG_GNRC_RPL_DAO_ACK_DELAY \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member CONFIG_GNRC_RPL_DAO_SEND_RETRIES \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member CONFIG_GNRC_RPL_DEFAULT_DIO_INTERVAL_DOUBLINGS \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member CONFIG_GNRC_RPL_DEFAULT_DIO_INTERVAL_MIN \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member CONFIG_GNRC_RPL_DEFAULT_DIO_REDUNDANCY_CONSTANT \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member CONFIG_GNRC_RPL_DEFAULT_LIFETIME \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member CONFIG_GNRC_RPL_LIFETIME_UNIT \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_COUNTER_GREATER_THAN\(uint8_t A, uint8_t B\) \(function\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_COUNTER_GREATER_THAN_LOCAL\(uint8_t A, uint8_t B\) \(function\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_COUNTER_INCREMENT\(uint8_t counter\) \(function\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_COUNTER_INIT \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_COUNTER_IS_INIT\(uint8_t counter\) \(function\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_COUNTER_LOWER_REGION \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_COUNTER_MAX \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_COUNTER_SEQ_WINDOW \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_DIS_SOLICITED_INFO_FLAG_D \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_DIS_SOLICITED_INFO_FLAG_I \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_DIS_SOLICITED_INFO_FLAG_V \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_GLOBAL_INSTANCE_MASK \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_INSTANCE_D_FLAG_MASK \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_INSTANCE_ID_MSB \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_LEAF_NODE \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_LOCAL_INSTANCE_MASK \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_MOP_NON_STORING_MODE \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_MOP_NO_DOWNWARD_ROUTES \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_MOP_STORING_MODE_MC \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_MOP_STORING_MODE_NO_MC \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_NORMAL_NODE \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_OPT_DAG_METRIC_CONTAINER \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_OPT_DODAG_CONF \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_OPT_PAD1 \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_OPT_PADN \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_OPT_PREFIX_INFO \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_OPT_ROUTE_INFO \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_OPT_SOLICITED_INFO \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_OPT_TARGET \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_OPT_TARGET_DESC \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_OPT_TRANSIT \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/gnrc/rpl\.h:[0-9]+: warning: Member GNRC_RPL_ROOT_NODE \(macro definition\) of group net_gnrc_rpl is not documented\. -sys/include/net/iana/portrange\.h:[0-9]+: warning: Member IANA_DYNAMIC_PORTRANGE_MAX \(macro definition\) of group net_iana_portrange is not documented\. -sys/include/net/iana/portrange\.h:[0-9]+: warning: Member IANA_DYNAMIC_PORTRANGE_MIN \(macro definition\) of group net_iana_portrange is not documented\. -sys/include/net/iana/portrange\.h:[0-9]+: warning: Member IANA_SYSTEM_PORTRANGE_MAX \(macro definition\) of group net_iana_portrange is not documented\. -sys/include/net/iana/portrange\.h:[0-9]+: warning: Member IANA_SYSTEM_PORTRANGE_MIN \(macro definition\) of group net_iana_portrange is not documented\. -sys/include/net/iana/portrange\.h:[0-9]+: warning: Member IANA_USER_PORTRANGE_MAX \(macro definition\) of group net_iana_portrange is not documented\. -sys/include/net/iana/portrange\.h:[0-9]+: warning: Member IANA_USER_PORTRANGE_MIN \(macro definition\) of group net_iana_portrange is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_DST_ADDR_MASK \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_LEN \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_SRC_ADDR_MASK \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_TYPE_ACK \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_TYPE_BEACON \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_TYPE_DATA \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_TYPE_MACCMD \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_TYPE_MASK \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_VERS_MASK \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_VERS_V0 \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCF_VERS_V1 \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_FCS_LEN \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_MIN_FRAME_LEN \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_PHY_MR_FSK_2FSK_CODED_SFD_1 \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_PHY_MR_FSK_2FSK_UNCODED_SFD_0 \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/ieee802154\.h:[0-9]+: warning: Member IEEE802154_PHY_MR_FSK_2FSK_UNCODED_SFD_1 \(macro definition\) of group net_ieee802154_header is not documented\. -sys/include/net/mqttsn\.h:[0-9]+: warning: Member MQTTSN_CLI_ID_MAXLEN \(macro definition\) of group net_mqttsn is not documented\. -sys/include/net/mqttsn\.h:[0-9]+: warning: Member MQTTSN_CLI_ID_MINLEN \(macro definition\) of group net_mqttsn is not documented\. -sys/include/net/nanocoap\.h:[0-9]+: warning: Member COAP_DELETE \(macro definition\) of group net_nanocoap is not documented\. -sys/include/net/nanocoap\.h:[0-9]+: warning: Member COAP_FETCH \(macro definition\) of group net_nanocoap is not documented\. -sys/include/net/nanocoap\.h:[0-9]+: warning: Member COAP_GET \(macro definition\) of group net_nanocoap is not documented\. -sys/include/net/nanocoap\.h:[0-9]+: warning: Member COAP_IPATCH \(macro definition\) of group net_nanocoap is not documented\. -sys/include/net/nanocoap\.h:[0-9]+: warning: Member COAP_PATCH \(macro definition\) of group net_nanocoap is not documented\. -sys/include/net/nanocoap\.h:[0-9]+: warning: Member COAP_POST \(macro definition\) of group net_nanocoap is not documented\. -sys/include/net/nanocoap\.h:[0-9]+: warning: Member COAP_PUT \(macro definition\) of group net_nanocoap is not documented\. -sys/include/net/ndp\.h:[0-9]+: warning: Member NDP_NBR_ADV_FLAGS_MASK \(macro definition\) of group net_ndp is not documented\. -sys/include/net/ndp\.h:[0-9]+: warning: Member NDP_OPT_MTU_LEN \(macro definition\) of group net_ndp is not documented\. -sys/include/net/ndp\.h:[0-9]+: warning: Member NDP_OPT_PI_FLAGS_MASK \(macro definition\) of group net_ndp is not documented\. -sys/include/net/ndp\.h:[0-9]+: warning: Member NDP_OPT_PI_LEN \(macro definition\) of group net_ndp is not documented\. -sys/include/net/ndp\.h:[0-9]+: warning: Member NDP_OPT_RI_FLAGS_MASK \(macro definition\) of group net_ndp is not documented\. -sys/include/net/ndp\.h:[0-9]+: warning: Member NDP_RTR_ADV_FLAGS_MASK \(macro definition\) of group net_ndp is not documented\. -sys/include/net/netstats\.h:[0-9]+: warning: Member NETSTATS_ALL \(macro definition\) of group net_netstats is not documented\. -sys/include/net/netstats\.h:[0-9]+: warning: Member NETSTATS_IPV6 \(macro definition\) of group net_netstats is not documented\. -sys/include/net/netstats\.h:[0-9]+: warning: Member NETSTATS_LAYER2 \(macro definition\) of group net_netstats is not documented\. -sys/include/net/netstats\.h:[0-9]+: warning: Member NETSTATS_RPL \(macro definition\) of group net_netstats is not documented\. -sys/include/net/sixlowpan/nd\.h:[0-9]+: warning: Member SIXLOWPAN_ND_OPT_6CTX_FLAGS_MASK \(macro definition\) of group net_sixlowpan_nd is not documented\. -sys/include/net/sixlowpan/nd\.h:[0-9]+: warning: Member SIXLOWPAN_ND_OPT_6CTX_LEN_MAX \(macro definition\) of group net_sixlowpan_nd is not documented\. -sys/include/net/sixlowpan/nd\.h:[0-9]+: warning: Member SIXLOWPAN_ND_OPT_6CTX_LEN_MIN \(macro definition\) of group net_sixlowpan_nd is not documented\. -sys/include/net/sixlowpan/nd\.h:[0-9]+: warning: Member SIXLOWPAN_ND_OPT_ABR_LEN \(macro definition\) of group net_sixlowpan_nd is not documented\. -sys/include/net/sixlowpan/nd\.h:[0-9]+: warning: Member SIXLOWPAN_ND_OPT_AR_LEN \(macro definition\) of group net_sixlowpan_nd is not documented\. -sys/include/net/sock/dns\.h:[0-9]+: warning: Member SOCK_DNS_MAX_NAME_LEN \(macro definition\) of group net_sock_dns is not documented\. -sys/include/net/sock/dns\.h:[0-9]+: warning: Member SOCK_DNS_PORT \(macro definition\) of group net_sock_dns is not documented\. -sys/include/net/sock/dns\.h:[0-9]+: warning: Member SOCK_DNS_RETRIES \(macro definition\) of group net_sock_dns is not documented\. -sys/include/riotboot/serial\.h:[0-9]+: warning: Member RIOTBOOT_PROBE \(macro definition\) of file serial\.h is not documented\. -sys/include/riotboot/serial\.h:[0-9]+: warning: Member RIOTBOOT_STAT_READY \(macro definition\) of file serial\.h is not documented\. -sys/include/riotboot/serial\.h:[0-9]+: warning: Member RIOTBOOT_STAT_WAITING \(macro definition\) of file serial\.h is not documented\. -sys/include/riotboot/usb_dfu\.h:[0-9]+: warning: Member USB_APP_MODE_SLOT_NAME \(macro definition\) of file usb_dfu\.h is not documented\. -sys/include/riotboot/usb_dfu\.h:[0-9]+: warning: Member USB_DFU_MODE_SLOT0_NAME \(macro definition\) of file usb_dfu\.h is not documented\. -sys/include/riotboot/usb_dfu\.h:[0-9]+: warning: Member USB_DFU_MODE_SLOT1_NAME \(macro definition\) of file usb_dfu\.h is not documented\. -sys/include/shell_commands\.h:[0-9]+: warning: Member DISK_GET_BLOCK_SIZE \(macro definition\) of group sys_shell_commands is not documented\. -sys/include/shell_commands\.h:[0-9]+: warning: Member DISK_GET_SECTOR_COUNT \(macro definition\) of group sys_shell_commands is not documented\. -sys/include/shell_commands\.h:[0-9]+: warning: Member DISK_GET_SECTOR_SIZE \(macro definition\) of group sys_shell_commands is not documented\. -sys/include/shell_commands\.h:[0-9]+: warning: Member DISK_READ_BYTES_CMD \(macro definition\) of group sys_shell_commands is not documented\. -sys/include/shell_commands\.h:[0-9]+: warning: Member DISK_READ_SECTOR_CMD \(macro definition\) of group sys_shell_commands is not documented\. -sys/include/suit\.h:[0-9]+: warning: Member suit_parameter_t \(enumeration\) of group sys_suit is not documented\. -sys/include/usb/dfu\.h:[0-9]+: warning: Member USB_DFU_DETACH_TIMEOUT_MS \(macro definition\) of group usb_dfu is not documented\. -sys/include/usb/dfu\.h:[0-9]+: warning: Member USB_DFU_INTERFACE \(macro definition\) of group usb_dfu is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_DESCR_HID \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_DESCR_PHYSICAL \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_DESCR_REPORT \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_PROTOCOL_KEYBOARD \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_PROTOCOL_MOUSE \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_PROTOCOL_NONE \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_REQUEST_GET_IDLE \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_REQUEST_GET_PROTOCOL \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_REQUEST_GET_REPORT \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_REQUEST_SET_IDLE \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_REQUEST_SET_PROTOCOL \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_REQUEST_SET_REPORT \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_SUBCLASS_BOOT \(macro definition\) of group usb_hid is not documented\. -sys/include/usb/hid\.h:[0-9]+: warning: Member USB_HID_SUBCLASS_NONE \(macro definition\) of group usb_hid is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member CDL_SORT2\(list, cmp, prev, next\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member CDL_SORT\(list, cmp\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member DL_SORT2\(list, cmp, prev, next\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member DL_SORT\(list, cmp\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member LDECLTYPE\(x\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member LL_APPEND2_VS2008\(head, add, next\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member LL_APPEND_VS2008\(head, add\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member LL_DELETE2_VS2008\(head, del, next\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member LL_DELETE_VS2008\(head, del\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member LL_SORT2\(list, cmp, next\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member LL_SORT\(list, cmp\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member _CASTASGN\(a, b\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member _NEXTASGN\(elt, list, to, next\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member _NEXT\(elt, list, next\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member _PREVASGN\(elt, list, to, prev\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member _RS\(list\) \(macro definition\) of group sys_ut is not documented\. -sys/include/utlist\.h:[0-9]+: warning: Member _SV\(elt, list\) \(macro definition\) of group sys_ut is not documented\. -sys/include/uuid\.h:[0-9]+: warning: Member UUID_VERSION_MASK \(macro definition\) of group sys_uuid is not documented\. -sys/include/vfs\.h:[0-9]+: warning: Member FATFS_VFS_FILE_BUFFER_SIZE \(macro definition\) of group sys_vfs is not documented\. -sys/include/vfs\.h:[0-9]+: warning: Member LITTLEFS2_VFS_FILE_BUFFER_SIZE \(macro definition\) of group sys_vfs is not documented\. -sys/include/vfs\.h:[0-9]+: warning: Member LITTLEFS_VFS_FILE_BUFFER_SIZE \(macro definition\) of group sys_vfs is not documented\. -sys/include/vfs\.h:[0-9]+: warning: Member MAX4\(a, b, c, d\) \(macro definition\) of group sys_vfs is not documented\. -sys/include/vfs\.h:[0-9]+: warning: Member SPIFFS_VFS_FILE_BUFFER_SIZE \(macro definition\) of group sys_vfs is not documented\. -sys/include/xtimer/implementation\.h:[0-9]+: warning: Member _xtimer_current_time \(variable\) of file implementation\.h is not documented\. -sys/include/xtimer/implementation\.h:[0-9]+: warning: Member _xtimer_periodic_wakeup\(uint32_t \*last_wakeup, uint32_t period\) \(function\) of file implementation\.h is not documented\. -sys/include/xtimer/implementation\.h:[0-9]+: warning: Member _xtimer_set64\(xtimer_t \*timer, uint32_t offset, uint32_t long_offset\) \(function\) of file implementation\.h is not documented\. -sys/include/xtimer/implementation\.h:[0-9]+: warning: Member _xtimer_set_wakeup64\(xtimer_t \*timer, uint64_t offset, kernel_pid_t pid\) \(function\) of file implementation\.h is not documented\. -sys/include/xtimer/implementation\.h:[0-9]+: warning: Member _xtimer_set_wakeup\(xtimer_t \*timer, uint32_t offset, kernel_pid_t pid\) \(function\) of file implementation\.h is not documented\. -sys/include/ztimer/config\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_TYPE_PERIPH_TIMER \(macro definition\) of file config\.h is not documented\. -sys/net/gnrc/network_layer/ipv6/nib/_nib-6ln\.h:[0-9]+: warning: Member _handle_6co\(const icmpv6_hdr_t \*icmpv6, const sixlowpan_nd_opt_6ctx_t \*sixco, _nib_abr_entry_t \*abr\) \(function\) of file _nib-6ln\.h is not documented\. -sys/net/gnrc/network_layer/ipv6/nib/_nib-6ln\.h:[0-9]+: warning: Member _handle_abro\(const sixlowpan_nd_opt_abr_t \*abro\) \(function\) of file _nib-6ln\.h is not documented\. -sys/net/gnrc/routing/rpl/gnrc_rpl_internal/netstats\.h:[0-9]+: warning: Member GNRC_RPL_NETSTATS_MULTICAST \(macro definition\) of file netstats\.h is not documented\. -sys/net/gnrc/routing/rpl/gnrc_rpl_internal/netstats\.h:[0-9]+: warning: Member GNRC_RPL_NETSTATS_UNICAST \(macro definition\) of file netstats\.h is not documented\. -sys/net/link_layer/eui_provider/include/eui48_provider_params\.h:[0-9]+: warning: Member eui48_conf\[\] \(variable\) of file eui48_provider_params\.h is not documented\. -sys/net/link_layer/eui_provider/include/eui64_provider_params\.h:[0-9]+: warning: Member eui64_conf\[\] \(variable\) of file eui64_provider_params\.h is not documented\. -sys/posix/include/sys/socket\.h:[0-9]+: warning: Member setsockopt\(int socket, int level, int option_name, const void \*option_value, socklen_t option_len\) \(function\) of group posix_sockets is not documented\. -sys/posix/pthread/include/pthread_cancellation\.h:[0-9]+: warning: Member PTHREAD_CANCEL_ASYNCHRONOUS \(macro definition\) of file pthread_cancellation\.h is not documented\. -sys/posix/pthread/include/pthread_cancellation\.h:[0-9]+: warning: Member PTHREAD_CANCEL_DEFERRED \(macro definition\) of file pthread_cancellation\.h is not documented\. -sys/posix/pthread/include/pthread_cancellation\.h:[0-9]+: warning: Member PTHREAD_CANCEL_DISABLE \(macro definition\) of file pthread_cancellation\.h is not documented\. -sys/posix/pthread/include/pthread_cancellation\.h:[0-9]+: warning: Member PTHREAD_CANCEL_ENABLE \(macro definition\) of file pthread_cancellation\.h is not documented\. -sys/posix/pthread/include/pthread_mutex_attr\.h:[0-9]+: warning: Member pthread_mutexattr_getprioceiling\(const pthread_mutexattr_t \*attr, int \*prioceiling\) \(function\) of file pthread_mutex_attr\.h is not documented\. -sys/posix/pthread/include/pthread_mutex_attr\.h:[0-9]+: warning: Member pthread_mutexattr_setprioceiling\(pthread_mutexattr_t \*attr, int prioceiling\) \(function\) of file pthread_mutex_attr\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g071rb/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g070rb/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/esp32-ethernet-kit-v1_0/include/periph_conf\.h:[0-9]+: warning: Member DAC_GPIOS \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-g431rb/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f469i-disco/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_4_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_5_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_6_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_7_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_0_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_6_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_6_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member ETH_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member eth_config \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f746g-disco/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32f723e-disco/include/periph_conf\.h:[0-9]+: warning: Member I2C_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32g0316-disco/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32g0316-disco/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32g0316-disco/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/stm32g0316-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32g0316-disco/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/stm32g0316-disco/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/board\.h:[0-9]+: warning: Member SX126X_PARAM_TX_PA_MODE \(macro definition\) of file board\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_PARAM_TX_PA_MODE \(macro definition\) of file sx126x_params\.h is not documented\. -drivers/sx126x/include/sx126x_params\.h:[0-9]+: warning: Member SX126X_TX_PA_MODE \(macro definition\) of file sx126x_params\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/lora-e5-dev/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member UART_3_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member I2C_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/b-u585i-iot02a/include/board\.h:[0-9]+: warning: Member HTS221_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -boards/b-u585i-iot02a/include/board\.h:[0-9]+: warning: Member LPSXXX_PARAM_I2C \(macro definition\) of file board\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_SRC_MSI \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_SRC_HSE \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_SRC_HSI \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_PLL_SRC \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_M \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_N \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_Q \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_PLL_R \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_AHB \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB1_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB1 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CONFIG_CLOCK_APB2_DIV \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/u5/cfg_clock_default\.h:[0-9]+: warning: Member CLOCK_APB2 \(macro definition\) of file cfg_clock_default\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_lx_u5_wx\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSE \(macro definition\) of file cfg_clock_common_lx_u5_wx\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_lx_u5_wx\.h:[0-9]+: warning: Member CONFIG_CLOCK_HSI \(macro definition\) of file cfg_clock_common_lx_u5_wx\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_lx_u5_wx\.h:[0-9]+: warning: Member CONFIG_CLOCK_MSI \(macro definition\) of file cfg_clock_common_lx_u5_wx\.h is not documented\. -cpu/stm32/include/clk/cfg_clock_common_lx_u5_wx\.h:[0-9]+: warning: Member CONFIG_USE_CLOCK_PLL \(macro definition\) of file cfg_clock_common_lx_u5_wx\.h is not documented\. -drivers/ft5x06/include/ft5x06_params\.h:[0-9]+: warning: Member FT5X06_PARAM_I2C_DEV \(macro definition\) of file ft5x06_params\.h is not documented\. -drivers/ft5x06/include/ft5x06_params\.h:[0-9]+: warning: Member FT5X06_PARAM_ADDR \(macro definition\) of file ft5x06_params\.h is not documented\. -drivers/ft5x06/include/ft5x06_params\.h:[0-9]+: warning: Member FT5X06_PARAM_INT_PIN \(macro definition\) of file ft5x06_params\.h is not documented\. -drivers/ft5x06/include/ft5x06_params\.h:[0-9]+: warning: Member FT5X06_PARAM_XMAX \(macro definition\) of file ft5x06_params\.h is not documented\. -drivers/ft5x06/include/ft5x06_params\.h:[0-9]+: warning: Member FT5X06_PARAM_YMAX \(macro definition\) of file ft5x06_params\.h is not documented\. -drivers/ft5x06/include/ft5x06_params\.h:[0-9]+: warning: Member FT5X06_PARAMS \(macro definition\) of file ft5x06_params\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_I2C_DEFAULT_ADDRESS \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_VENDOR_ID \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCHES_COUNT_MAX \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_AUTO_CALIB_NEEDED \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_DEVIDE_MODE_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_GESTURE_ID_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TD_STATUS_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH1_XH_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH1_XL_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH1_YH_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH1_YL_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH2_XH_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH2_XL_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH2_YH_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH2_YL_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH3_XH_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH3_XL_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH3_YH_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH3_YL_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH4_XH_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH4_XL_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH4_YH_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH4_YL_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH5_XH_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH5_XL_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH5_YH_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH5_YL_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_AUTO_CLB_MODE_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_CIPHER_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_LIB_VERSION_H_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_LIB_VERSION_L_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_MODE_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_PMODE_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_FIRMID_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_STATE_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_VENDOR_ID_REG \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_GESTURE_ID_MOVE_UP \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_GESTURE_ID_MOVE_LEFT \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_GESTURE_ID_MOVE_DOWN \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_GESTURE_ID_MOVE_RIGHT \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_GESTURE_ID_ZOOM_IN \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_GESTURE_ID_ZOOM_OUT \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_GESTURE_ID_NONE \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TD_STATUS_MASK \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH_POS_LSB_MASK \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_TOUCH_POS_MSB_MASK \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_MODE_INTERRUPT_MASK \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_MODE_INTERRUPT_SHIFT \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_MODE_INTERRUPT_POLLING \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_constants\.h:[0-9]+: warning: Member FT5X06_G_MODE_INTERRUPT_TRIGGER \(macro definition\) of file ft5x06_constants\.h is not documented\. -drivers/ft5x06/include/ft5x06_params\.h:[0-9]+: warning: Member FT5X06_PARAM_TYPE \(macro definition\) of file ft5x06_params\.h is not documented\. -boards/arduino-uno/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SET \(macro definition\) of file board\.h is not documented\. -boards/arduino-uno/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SLEEP \(macro definition\) of file board\.h is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_VER_RES_MAX \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_COLOR_DEPTH \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_COLOR_16_SWAP \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_COLOR_SCREEN_TRANSP \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_COLOR_TRANSP \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ANTIALIAS \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_DISP_DEF_REFR_PERIOD \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_DPI \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_DISP_SMALL_LIMIT \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_DISP_MEDIUM_LIMIT \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_DISP_LARGE_LIMIT \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_MEM_CUSTOM \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_MEM_SIZE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_MEM_ATTR \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_MEM_ADR \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_MEM_AUTO_DEFRAG \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_MEMCPY_MEMSET_STD \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ENABLE_GC \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_READ_PERIOD \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_DRAG_LIMIT \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_DRAG_THROW \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_LONG_PRESS_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_LONG_PRESS_REP_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_GESTURE_LIMIT \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_INDEV_DEF_GESTURE_MIN_VELOCITY \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_ANIMATION \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_SHADOW \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_OUTLINE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_PATTERN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_VALUE_STR \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_BLEND_MODES \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_OPA_SCALE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_IMG_TRANSFORM \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_GROUP \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_GPU \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_GPU_STM32_DMA2D \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_FILESYSTEM \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_USER_DATA \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_PERF_MONITOR \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_API_EXTENSION_V6 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_API_EXTENSION_V7 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_IMG_CF_INDEXED \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_IMG_CF_ALPHA \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_IMG_CACHE_DEF_SIZE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_BIG_ENDIAN_SYSTEM \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_TICK_INC \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_TASK_HANDLER \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_FLUSH_READY \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_MEM_ALIGN_SIZE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_MEM_ALIGN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_LARGE_CONST \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_FAST_MEM \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_EXPORT_CONST_INT\(int_value\) \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ATTRIBUTE_DMA \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LOG \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_DEBUG \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_12 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_14 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_16 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_18 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_20 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_22 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_24 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_26 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_28 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_30 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_32 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_34 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_36 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_38 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_40 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_42 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_44 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_46 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_48 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_12_SUBPX \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_MONTSERRAT_28_COMPRESSED \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_DEJAVU_16_PERSIAN_HEBREW \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_SIMSUN_16_CJK \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_UNSCII_8 \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_CUSTOM_DECLARE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_FMT_TXT_LARGE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_FONT_COMPRESSED \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_FONT_SUBPX \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_FONT_SUBPX_BGR \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_THEME_EMPTY \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_THEME_TEMPLATE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_THEME_MATERIAL \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_THEME_MONO \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_INCLUDE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_INIT \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_COLOR_PRIMARY \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_COLOR_SECONDARY \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_FLAG \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_FONT_SMALL \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_FONT_NORMAL \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_FONT_SUBTITLE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_THEME_DEFAULT_FONT_TITLE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_ENC \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_BREAK_CHARS \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_LINE_BREAK_LONG_LEN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_LINE_BREAK_LONG_PRE_MIN_LEN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_LINE_BREAK_LONG_POST_MIN_LEN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TXT_COLOR_CMD \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_BIDI \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_ARABIC_PERSIAN_CHARS \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_SPRINTF_CUSTOM \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_OBJ_REALIGN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_EXT_CLICK_AREA \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_ARC \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_BAR \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_BTN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_BTNMATRIX \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CALENDAR \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_CALENDAR_WEEK_STARTS_MONDAY \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CANVAS \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CHECKBOX \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CHART \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_CHART_AXIS_TICK_LABEL_MAX_LEN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CONT \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_CPICKER \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_DROPDOWN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_DROPDOWN_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_GAUGE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_IMG \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_IMGBTN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_IMGBTN_TILED \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_KEYBOARD \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LABEL \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_LABEL_DEF_SCROLL_SPEED \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_LABEL_WAIT_CHAR_COUNT \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_LABEL_TEXT_SEL \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_LABEL_LONG_TXT_HINT \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LED \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_LED_BRIGHT_MIN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_LED_BRIGHT_MAX \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LINE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LIST \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_LIST_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_LINEMETER \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_LINEMETER_PRECISE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_OBJMASK \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_MSGBOX \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_PAGE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_PAGE_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_SPINNER \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_SPINNER_DEF_ARC_LENGTH \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_SPINNER_DEF_SPIN_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_SPINNER_DEF_ANIM \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_ROLLER \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ROLLER_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_ROLLER_INF_PAGES \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_SLIDER \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_SPINBOX \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_SWITCH \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_TEXTAREA \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TEXTAREA_DEF_CURSOR_BLINK_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TEXTAREA_DEF_PWD_SHOW_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_TABLE \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TABLE_COL_MAX \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TABLE_CELL_STYLE_CNT \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_TABVIEW \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TABVIEW_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_TILEVIEW \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_TILEVIEW_DEF_ANIM_TIME \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member LV_USE_WIN \(macro definition\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member lv_anim_user_data_t \(typedef\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member lv_group_user_data_t \(typedef\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member lv_img_decoder_user_data_t \(typedef\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member lv_disp_drv_user_data_t \(typedef\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member lv_indev_drv_user_data_t \(typedef\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lv_conf\.h:[0-9]+: warning: Member lv_font_user_data_t \(typedef\) of group pkg_lvgl7 is not documented\. -pkg/lvgl7/include/lvgl_riot_conf\.h:[0-9]+: warning: Member LV_TICK_CUSTOM \(macro definition\) of file lvgl_riot_conf\.h is not documented\. -pkg/lvgl7/include/lvgl_riot_conf\.h:[0-9]+: warning: Member LV_TICK_CUSTOM_INCLUDE \(macro definition\) of file lvgl_riot_conf\.h is not documented\. -pkg/lvgl7/include/lvgl_riot_conf\.h:[0-9]+: warning: Member LV_TICK_CUSTOM_SYS_TIME_EXPR \(macro definition\) of file lvgl_riot_conf\.h is not documented\. -pkg/lvgl7/include/lvgl_riot_conf\.h:[0-9]+: warning: Member lv_coord_t \(typedef\) of file lvgl_riot_conf\.h is not documented\. -drivers/encx24j600/include/encx24j600_params\.h:[0-9]+: warning: Member ENCX24J600_PARAM_SPI \(macro definition\) of file encx24j600_params\.h is not documented\. -drivers/encx24j600/include/encx24j600_params\.h:[0-9]+: warning: Member ENCX24J600_PARAM_CS \(macro definition\) of file encx24j600_params\.h is not documented\. -drivers/encx24j600/include/encx24j600_params\.h:[0-9]+: warning: Member ENCX24J600_PARAM_INT \(macro definition\) of file encx24j600_params\.h is not documented\. -drivers/encx24j600/include/encx24j600_params\.h:[0-9]+: warning: Member ENCX24J600_PARAMS \(macro definition\) of file encx24j600_params\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORECLOCK \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member EXTERNAL_OSC32_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_CHANNELS \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member TIMER_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member timer_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_TX \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member PWM_0_EN \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member pwm_chan0_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member RTT_FREQUENCY \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member ADC_PRESCALER \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member ADC_NEG_INPUT \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member ADC_REF_DEFAULT \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member adc_channels\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/adafruit-pybadge/include/periph_conf\.h:[0-9]+: warning: Member sam_usbdev_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member ETH_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f429zi/include/periph_conf\.h:[0-9]+: warning: Member eth_config \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_LSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member CONFIG_BOARD_HAS_HSE \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member DMA_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member dma_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member UART_2_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member UART_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member uart_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member PWM_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member pwm_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member ETH_DMA_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/nucleo-f439zi/include/periph_conf\.h:[0-9]+: warning: Member eth_config \(variable\) of file periph_conf\.h is not documented\. -boards/arduino-mega2560/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SET \(macro definition\) of file board\.h is not documented\. -boards/arduino-mega2560/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SLEEP \(macro definition\) of file board\.h is not documented\. -pkg/nimble/autoadv/include/nimble_autoadv_params\.h:[0-9]+: warning: Member NIMBLE_AUTOADV_ADV_ITVL_MS \(macro definition\) of file nimble_autoadv_params\.h is not documented\. -pkg/nimble/autoadv/include/nimble_autoadv_params\.h:[0-9]+: warning: Member NIMBLE_AUTOADV_ADV_DURATION_MS \(macro definition\) of file nimble_autoadv_params\.h is not documented\. -pkg/nimble/autoadv/include/nimble_autoadv_params\.h:[0-9]+: warning: Member NIMBLE_AUTOADV_FLAGS \(macro definition\) of file nimble_autoadv_params\.h is not documented\. -pkg/nimble/autoadv/include/nimble_autoadv_params\.h:[0-9]+: warning: Member NIMBLE_AUTOADV_PHY \(macro definition\) of file nimble_autoadv_params\.h is not documented\. -pkg/nimble/autoadv/include/nimble_autoadv_params\.h:[0-9]+: warning: Member NIMBLE_AUTOADV_TX_POWER \(macro definition\) of file nimble_autoadv_params\.h is not documented\. -pkg/nimble/autoadv/include/nimble_autoadv_params\.h:[0-9]+: warning: Member NIMBLE_AUTOADV_CHANNEL_MAP \(macro definition\) of file nimble_autoadv_params\.h is not documented\. -pkg/nimble/autoadv/include/nimble_autoadv_params\.h:[0-9]+: warning: Member NIMBLE_AUTOADV_OWN_ADDR_TYPE \(macro definition\) of file nimble_autoadv_params\.h is not documented\. -pkg/nimble/autoadv/include/nimble_autoadv_params\.h:[0-9]+: warning: Member NIMBLE_AUTOADV_FILTER_POLICY \(macro definition\) of file nimble_autoadv_params\.h is not documented\. -pkg/nimble/autoadv/include/nimble_autoadv_params\.h:[0-9]+: warning: Member NIMBLE_AUTOADV_PARAMS \(macro definition\) of file nimble_autoadv_params\.h is not documented\. cpu/esp32/include/periph_cpu_esp32\.h:[0-9]+: warning: Member GPIO[0-9]+ \(macro definition\) of file periph_cpu_esp32\.h is not documented\. cpu/esp32/include/periph_cpu_esp32c3\.h:[0-9]+: warning: Member GPIO[0-9]+ \(macro definition\) of file periph_cpu_esp32c3\.h is not documented\. boards/common/esp32c3/include/board_common\.h:[0-9]+: warning: Member LED[0-9]_[A-Z]+ \(macro definition\) of file board_common\.h is not documented\. @@ -12531,216 +17,3 @@ boards/waveshare-nrf52840-eval-kit/include/board\.h:[0-9]+: warning: Member SDCA boards/waveshare-nrf52840-eval-kit/include/periph_conf\.h:[0-9]+: warning: Member UART_[A-Z0-9_]+ \(macro definition\) of file periph_conf\.h is not documented\. boards/waveshare-nrf52840-eval-kit/include/periph_conf\.h:[0-9]+: warning: Member [A-Z0-9_]+NUMOF \(macro definition\) of file periph_conf\.h is not documented\. boards/waveshare-nrf52840-eval-kit/include/periph_conf\.h:[0-9]+: warning: Member [a-z0-9_]+config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member LED_PANIC \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CPU_ATMEGA_CLK_SCALE_INIT \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_TYPE \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_DEV \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_FREQ \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_WIDTH \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SET \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SLEEP \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member W5100_PARAM_CS \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member W5100_PARAM_EVT \(macro definition\) of group boards_common_arduino-atmega is not documented\. -core/lib/include/panic\.h:[0-9]+: warning: found documented return type for core_panic that does not return anything -\[generated\]:[0-9]+: warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved -\[generated\]:[0-9]+: warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved -\[generated\]:[0-9]+: warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_ARCH_PROTECT\(x\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_ARCH_UNPROTECT\(x\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_ARCH_DECL_PROTECT\(x\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_sem_valid\(sem\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_sem_set_invalid\(sem\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_sem_valid\(sys_sem_t \*sem\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mutex_valid\(mutex\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mutex_set_invalid\(mutex\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mutex_valid\(sys_mutex_t \*mutex\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_MBOX_SIZE \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_valid\(mbox\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_set_invalid\(mbox\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_valid\(sys_mbox_t \*mbox\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_set_invalid\(sys_mbox_t \*mbox\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member LOCK_TCPIP_CORE\(\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member UNLOCK_TCPIP_CORE\(\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_lock_tcpip_core\(void\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_unlock_tcpip_core\(void\) \(function\) of group pkg_lwip_sys is not documented\. -sys/posix/pthread/include/pthread_threading\.h:[0-9]+: warning: found documented return type for pthread_exit that does not return anything -drivers/include/at86rf2xx\.h:[0-9]+: warning: found documented return type for at86rf2xx_get_addr_long that does not return anything -drivers/include/at86rf2xx\.h:[0-9]+: warning: found documented return type for at86rf2xx_get_addr_short that does not return anything -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member STDIO_UART_BAUDRATE \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member LED_PANIC \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CPU_ATMEGA_CLK_SCALE_INIT \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_TYPE \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_DEV \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_FREQ \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_WIDTH \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SET \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member CONFIG_ZTIMER_USEC_ADJUST_SLEEP \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member W5100_PARAM_CS \(macro definition\) of group boards_common_arduino-atmega is not documented\. -boards/common/arduino-atmega/include/board_common\.h:[0-9]+: warning: Member W5100_PARAM_EVT \(macro definition\) of group boards_common_arduino-atmega is not documented\. -sys/include/bloom\.h:[0-9]+: warning: found documented return type for bloom_add that does not return anything -sys/include/bloom\.h:[0-9]+: warning: found documented return type for bloom_del that does not return anything -drivers/include/cc2420\.h:[0-9]+: warning: found documented return type for cc2420_get_addr_long that does not return anything -drivers/include/cc2420\.h:[0-9]+: warning: found documented return type for cc2420_setup that does not return anything -cpu/cc26xx_cc13xx/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc26xx_cc13xx_overview' for \\ref command -cpu/cc26xx_cc13xx/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc26xx_cc13xx_ccfg' for \\ref command -cpu/cc26xx_cc13xx/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc26xx_cc13xx_debugging' for \\ref command -cpu/cc26xx_cc13xx/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc26xx_cc13xx_openocd' for \\ref command -cpu/cc26xx_cc13xx/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc26xx_cc13xx_uniflash' for \\ref command -cpu/cc26xx_cc13xx/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc26xx_cc13xx_ccfg' for \\ref command -cpu/cc26xx_cc13xx/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc26xx_cc13xx_uniflash' for \\ref command -drivers/include/motor_driver\.h:[0-9]+: warning: found documented return type for motor_disable that does not return anything -drivers/include/motor_driver\.h:[0-9]+: warning: found documented return type for motor_enable that does not return anything -boards/esp32-wrover-kit/doc\.txt:[0-9]+: warning: explicit link request to 'esp32_local_toolchain_installation' could not be resolved -cpu/esp32/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_esp_qemu' for \\ref command -cpu/esp32/doc\.txt:[0-9]+: warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved -cpu/esp32/doc\.txt:[0-9]+: warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved -cpu/esp32/doc\.txt:[0-9]+: warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved -cpu/esp32/doc\.txt:[0-9]+: warning: explicit link request to 'esp32_application_specific_board_configuration' could not be resolved -cpu/esp32/doc_esp32\.txt:[0-9]+: warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved -cpu/esp32/doc_esp32c3\.txt:[0-9]+: warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved -boards/esp32c3-devkit/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32c3_devkit_optional_hardware' for \\ref command -boards/esp32-ethernet-kit-v1_0/doc_common\.txt:[0-9]+: warning: explicit link request to 'esp32_local_toolchain_installation' could not be resolved -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_overview' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_hardware' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_board_configuration' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_pinout' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_other-resources' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_toc' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_board_configuration' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_pinout' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_toc' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_toc' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_toc' for \\ref command -boards/esp32-ethernet-kit-v1_1/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_toc' for \\ref command -cpu/esp32/doc_esp32s2\.txt:[0-9]+: warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved -boards/esp32s2-devkit/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32s2_devkit_optional_hardware' for \\ref command -cpu/esp32/doc_esp32s3\.txt:[0-9]+: warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved -boards/esp32s3-devkit/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32s3_devkit_optional_hardware' for \\ref command -boards/esp32-heltec-lora32-v2/doc\.txt:[0-9]+: warning: explicit link request to 'esp32_heltec_lora32_v2_optional_hardware' could not be resolved -cpu/kinetis/include/mcg\.h:[0-9]+: warning: unable to resolve reference to 'clock_config_t' for \\ref command -cpu/kinetis/include/mcg\.h:[0-9]+: warning: unable to resolve reference to 'clock_config_t::clkdiv1' for \\ref command -cpu/kinetis/include/mcg\.h:[0-9]+: warning: unable to resolve reference to 'clock_config_t::clkdiv1' for \\ref command -drivers/include/l3gxxxx\.h:[0-9]+: warning: explicit link request to 'l3gxxxx_data_interrupt' could not be resolved -drivers/include/l3gxxxx\.h:[0-9]+: warning: explicit link request to 'l3gxxxx_event_interrupt' could not be resolved -drivers/include/l3gxxxx\.h:[0-9]+: warning: explicit link request to 'l3gxxxx_odr_filters' could not be resolved -drivers/include/mcp47xx\.h:[0-9]+: warning: found documented return type for mcp47xx_dac_get that does not return anything -drivers/include/mcp47xx\.h:[0-9]+: warning: found documented return type for mcp47xx_dac_poweroff that does not return anything -drivers/include/mcp47xx\.h:[0-9]+: warning: found documented return type for mcp47xx_dac_poweron that does not return anything -drivers/include/mcp47xx\.h:[0-9]+: warning: found documented return type for mcp47xx_dac_set that does not return anything -boards/esp32-mh-et-live-minikit/doc\.txt:[0-9]+: warning: explicit link request to 'esp32_mh_et_live_minikit_optional_hardware' could not be resolved -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_sem_valid\(sys_sem_t \*sem\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_sem_valid\(sem\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_sem_set_invalid\(sem\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mutex_valid\(sys_mutex_t \*mutex\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mutex_valid\(mutex\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mutex_set_invalid\(mutex\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_valid\(sys_mbox_t \*mbox\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_set_invalid\(sys_mbox_t \*mbox\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_MBOX_SIZE \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_valid\(mbox\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_mbox_set_invalid\(mbox\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_lock_tcpip_core\(void\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member sys_unlock_tcpip_core\(void\) \(function\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member LOCK_TCPIP_CORE\(\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member UNLOCK_TCPIP_CORE\(\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_ARCH_PROTECT\(x\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_ARCH_UNPROTECT\(x\) \(macro definition\) of group pkg_lwip_sys is not documented\. -pkg/lwip/include/arch/sys_arch\.h:[0-9]+: warning: Member SYS_ARCH_DECL_PROTECT\(x\) \(macro definition\) of group pkg_lwip_sys is not documented\. -drivers/include/sx127x\.h:[0-9]+: warning: found documented return type for sx127x_set_state that does not return anything -sys/include/senml\.h:[0-9]+: warning: found documented return type for senml_set_duration_ms that does not return anything -sys/include/senml\.h:[0-9]+: warning: found documented return type for senml_set_duration_us that does not return anything -boards/cc1312-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1312_launchpad_overview' for \\ref command -boards/cc1312-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1312_launchpad_hardware' for \\ref command -boards/cc1312-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1312_launchpad_pinout' for \\ref command -boards/cc1312-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1312_launchpad_flashing' for \\ref command -boards/cc1350-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1350_launchpad_overview' for \\ref command -boards/cc1350-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1350_launchpad_hardware' for \\ref command -boards/cc1350-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1350_launchpad_pinout' for \\ref command -boards/cc1350-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1350_launchpad_flashing' for \\ref command -boards/cc1352-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1352_launchpad_overview' for \\ref command -boards/cc1352-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1352_launchpad_hardware' for \\ref command -boards/cc1352-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1352_launcpad_pinout' for \\ref command -boards/cc1352-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1352_launchpad_flashing' for \\ref command -boards/cc1352-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1352_launchpad_shell' for \\ref command -boards/cc1352-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1352_launchpad_moreinfo' for \\ref command -boards/cc1352p-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1352p_launchpad_overview' for \\ref command -boards/cc1352p-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1352p_launchpad_hardware' for \\ref command -boards/cc1352p-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1352p_launcpad_pinout' for \\ref command -boards/cc1352p-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc1352p_launchpad_flashing' for \\ref command -boards/cc2650-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc2650_launchpad_overview' for \\ref command -boards/cc2650-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc2650_launchpad_hardware' for \\ref command -boards/cc2650-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc2650_launchpad_pinout' for \\ref command -boards/cc2650-launchpad/doc\.txt:[0-9]+: warning: unable to resolve reference to 'cc2650_launchpad_flashing' for \\ref command -boards/esp32-ttgo-t-beam/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ttgo_t_beam_optional_hardware' for \\ref command -boards/esp32-ttgo-t-beam/doc\.txt:[0-9]+: warning: unable to resolve reference to 'esp32_ttgo_t_beam_optional_hardware' for \\ref command -boards/esp32-wemos-lolin-d32-pro/doc\.txt:[0-9]+: warning: explicit link request to 'esp32_wemos_lolin_d32_pro_optional_hardware' could not be resolved -drivers/include/xbee\.h:[0-9]+: warning: found documented return type for xbee_setup that does not return anything -boards/nrf52840dongle/doc\.txt:[0-9]+: warning: unable to resolve reference to 'nrf52840dongle_flash' for \\ref command -boards/sltb009a/include/board\.h:[0-9]+: warning: Member VCOM_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb009a/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb009a/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb009a/include/board\.h:[0-9]+: warning: Member LED0R_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb009a/include/board\.h:[0-9]+: warning: Member LED0G_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb009a/include/board\.h:[0-9]+: warning: Member LED0B_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb009a/include/board\.h:[0-9]+: warning: Member LED1R_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb009a/include/board\.h:[0-9]+: warning: Member LED1G_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb009a/include/board\.h:[0-9]+: warning: Member LED1B_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb009a/include/board\.h:[0-9]+: warning: Member CORETEMP_ADC \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_LPTIMER_DEV \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_LPTIMER_FREQ \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_LPTIMER_WIDTH \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member CONFIG_ZTIMER_LPTIMER_BLOCK_PM_MODE \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member VCOM_UART \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member VCOM_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member PB0_PIN \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member PB1_PIN \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member DISP_SPI \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member DISP_SCS_PIN \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member DISP_EXTCOMIN_PIN \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member DISP_ENABLE_PIN \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member FLASH_SPI \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member FLASH_CS_PIN \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member SI70XX_PARAM_I2C_DEV \(macro definition\) of file board\.h is not documented\. -boards/xg23-pk6068a/include/board\.h:[0-9]+: warning: Member SI7021_EN_PIN \(macro definition\) of file board\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_HF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_CORE_DIV \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFA \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFB \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member CLOCK_LFE \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/sltb009a/include/periph_conf\.h:[0-9]+: warning: Member UART_1_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member HFXO_FREQ \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member CMU_HFXOINIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member LFXO_FREQ \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member CMU_LFXOINIT \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member CLK_MUX_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member CLK_DIV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member clk_mux_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member clk_div_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member ADC_DEV_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member ADC_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member adc_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member adc_channel_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member I2C_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member I2C_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member i2c_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member SPI_NUMOF \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member spi_config\[\] \(variable\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_ISR \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_0_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member TIMER_1_MAX_VALUE \(macro definition\) of file periph_conf\.h is not documented\. -boards/xg23-pk6068a/include/periph_conf\.h:[0-9]+: warning: Member UART_0_ISR_RX \(macro definition\) of file periph_conf\.h is not documented\. -warning: No output formats selected! Set at least one of the main GENERATE_\* options to YES\. diff --git a/dist/tools/doccheck/exclude_simple b/dist/tools/doccheck/exclude_simple new file mode 100644 index 0000000000..664be048a2 --- /dev/null +++ b/dist/tools/doccheck/exclude_simple @@ -0,0 +1,8700 @@ +warning: end of file with unbalanced grouping commands +warning: explicit link request to 'esp32_application_specific_board_configuration' could not be resolved +warning: explicit link request to 'esp32_application_specific_configurations' could not be resolved +warning: explicit link request to 'esp32_heltec_lora32_v2_optional_hardware' could not be resolved +warning: explicit link request to 'esp32_local_toolchain_installation' could not be resolved +warning: explicit link request to 'esp32_mh_et_live_minikit_optional_hardware' could not be resolved +warning: explicit link request to 'esp32_wemos_lolin_d32_pro_optional_hardware' could not be resolved +warning: explicit link request to 'l3gxxxx_data_interrupt' could not be resolved +warning: explicit link request to 'l3gxxxx_event_interrupt' could not be resolved +warning: explicit link request to 'l3gxxxx_odr_filters' could not be resolved +warning: found documented return type for at86rf2xx_get_addr_long that does not return anything +warning: found documented return type for at86rf2xx_get_addr_short that does not return anything +warning: found documented return type for bloom_add that does not return anything +warning: found documented return type for bloom_del that does not return anything +warning: found documented return type for cc2420_get_addr_long that does not return anything +warning: found documented return type for cc2420_setup that does not return anything +warning: found documented return type for core_panic that does not return anything +warning: found documented return type for mcp47xx_dac_get that does not return anything +warning: found documented return type for mcp47xx_dac_poweroff that does not return anything +warning: found documented return type for mcp47xx_dac_poweron that does not return anything +warning: found documented return type for mcp47xx_dac_set that does not return anything +warning: found documented return type for motor_disable that does not return anything +warning: found documented return type for motor_enable that does not return anything +warning: found documented return type for pthread_exit that does not return anything +warning: found documented return type for senml_set_duration_ms that does not return anything +warning: found documented return type for senml_set_duration_us that does not return anything +warning: found documented return type for sx127x_set_state that does not return anything +warning: found documented return type for xbee_setup that does not return anything +warning: Member a0_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member a1_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member a2_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member a3_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member a4_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member a5_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member a6_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member a7_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member ABS_DIFF(x, y) (macro definition) of file cc2538_rf.h is not documented. +warning: Member AD7746_CONFIGURATION_CAPF0_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_CONFIGURATION_CAPF1_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_CONFIGURATION_CAPF2_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_CONFIGURATION_MD0_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_CONFIGURATION_MD1_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_CONFIGURATION_MD2_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_CONFIGURATION_VTF0_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_CONFIGURATION_VTF1_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_DACAEN_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_DACBEN_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_PARAM_ADDR (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_PARAM_CAP_IN (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_PARAM_CAP_SR (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_PARAM_DAC_A (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_PARAM_DAC_B (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_PARAM_EXC_CONFIG (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_PARAM_I2C (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_PARAMS (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_PARAM_VT_MD (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_PARAM_VT_SR (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_SAUL_INFO (macro definition) of file ad7746_params.h is not documented. +warning: Member AD7746_VT_SETUP_EXTREF_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_VT_SETUP_VTCHOP_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_VT_SETUP_VTEN_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_VT_SETUP_VTMD0_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_VT_SETUP_VTMD1_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member AD7746_VT_SETUP_VTSHORT_BIT (macro definition) of file ad7746_internal.h is not documented. +warning: Member adc_channel_config[] (variable) of file periph_conf.h is not documented. +warning: Member adc_channels[] (variable) of file periph_conf_common.h is not documented. +warning: Member adc_channels[] (variable) of file periph_conf.h is not documented. +warning: Member adc_config[] (variable) of file cfg_adc_default.h is not documented. +warning: Member adc_config[] (variable) of file periph_conf_common.h is not documented. +warning: Member adc_config[] (variable) of file periph_conf.h is not documented. +warning: Member ADC_DEV (macro definition) of file periph_conf.h is not documented. +warning: Member ADC_DEV_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member ADC_GAIN_FACTOR_DEFAULT (macro definition) of file periph_conf_common.h is not documented. +warning: Member ADC_GAIN_FACTOR_DEFAULT (macro definition) of file periph_conf.h is not documented. +warning: Member ADC_NEG_INPUT (macro definition) of file periph_conf_common.h is not documented. +warning: Member ADC_NEG_INPUT (macro definition) of file periph_conf.h is not documented. +warning: Member ADC_NUMOF (macro definition) of file cfg_adc_default.h is not documented. +warning: Member ADC_NUMOF (macro definition) of file periph_conf_common.h is not documented. +warning: Member ADC_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member ADC_NUMOF (macro definition) of file periph_cpu.h is not documented. +warning: Member ADC_PRESCALER (macro definition) of file periph_conf_common.h is not documented. +warning: Member ADC_PRESCALER (macro definition) of file periph_conf.h is not documented. +warning: Member ADC_REF_DEFAULT (macro definition) of file periph_conf_common.h is not documented. +warning: Member ADC_REF_DEFAULT (macro definition) of file periph_conf.h is not documented. +warning: Member ADC_REF_SETTING (macro definition) of file periph_conf.h is not documented. +warning: Member ADC_REF_VOLTAGE (macro definition) of file periph_conf.h is not documented. +warning: Member ADC_TEMPERATURE_CHANNEL (macro definition) of file periph_conf.h is not documented. +warning: Member ADCXX1C_ALERT_STATUS_ADDR (macro definition) of file adcxx1c_regs.h is not documented. +warning: Member ADCXX1C_CONF_ADDR (macro definition) of file adcxx1c_regs.h is not documented. +warning: Member ADCXX1C_CONF_ALERT_FLAG_EN (macro definition) of file adcxx1c_regs.h is not documented. +warning: Member ADCXX1C_CONF_ALERT_PIN_EN (macro definition) of file adcxx1c_regs.h is not documented. +warning: Member ADCXX1C_CONV_RES_ADDR (macro definition) of file adcxx1c_regs.h is not documented. +warning: Member ADCXX1C_HIGHEST_CONV_ADDR (macro definition) of file adcxx1c_regs.h is not documented. +warning: Member ADCXX1C_HIGH_LIMIT_ADDR (macro definition) of file adcxx1c_regs.h is not documented. +warning: Member ADCXX1C_HYSTERESIS_ADDR (macro definition) of file adcxx1c_regs.h is not documented. +warning: Member ADCXX1C_LOWEST_CONV_ADDR (macro definition) of file adcxx1c_regs.h is not documented. +warning: Member ADCXX1C_LOW_LIMIT_ADDR (macro definition) of file adcxx1c_regs.h is not documented. +warning: Member ADI_3_REFSYS_AUX_DEBUG_LPM_BIAS_BACKUP_EN (macro definition) of file cc26xx_cc13xx_adi.h is not documented. +warning: Member ADI_4_AUX_COMP_LPM_BIAS_WIDTH_TRIM_s (macro definition) of file cc26x2_cc13x2_aux.h is not documented. +warning: Member ADI_4_AUX_LPMBIAS_LPM_TRIM_IOUT_m (macro definition) of file cc26x2_cc13x2_aux.h is not documented. +warning: Member ADI_4_AUX_LPMBIAS_LPM_TRIM_IOUT_s (macro definition) of file cc26x2_cc13x2_aux.h is not documented. +warning: Member ADI_CLR (macro definition) of file cc26xx_cc13xx.h is not documented. +warning: Member ADI_MASK16B (macro definition) of file cc26xx_cc13xx.h is not documented. +warning: Member ADI_MASK4B (macro definition) of file cc26xx_cc13xx.h is not documented. +warning: Member ADI_MASK8B (macro definition) of file cc26xx_cc13xx.h is not documented. +warning: Member ADI_SET (macro definition) of file cc26xx_cc13xx.h is not documented. +warning: Member ADPS9960_PARAM_ADDR (macro definition) of file board.h is not documented. +warning: Member ADPS9960_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member ADPS9960_PARAM_PIN_INT (macro definition) of file board.h is not documented. +warning: Member ADS101X_AIN0_DIFFM_AIN1 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_AIN0_DIFFM_AIN3 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_AIN0_SINGM (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_AIN1_DIFFM_AIN3 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_AIN1_SINGM (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_AIN2_DIFFM_AIN3 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_AIN2_SINGM (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_AIN3_SINGM (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_ALERT_PARAMS (macro definition) of file ads101x_params.h is not documented. +warning: Member ADS101X_CONF_ADDR (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_CONF_COMP_DIS (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_CONF_COMP_MODE_WIND (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_CONF_OS_CONV (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_CONV_RES_ADDR (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_DATAR_128 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_DATAR_1600 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_DATAR_2400 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_DATAR_250 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_DATAR_3300 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_DATAR_490 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_DATAR_920 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_DATAR_MASK (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_HIGH_LIMIT_ADDR (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_LOW_LIMIT_ADDR (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_MUX_MASK (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_PARAM_ADDR (macro definition) of file ads101x_params.h is not documented. +warning: Member ADS101X_PARAM_ALERT_PIN (macro definition) of file ads101x_params.h is not documented. +warning: Member ADS101X_PARAM_HIGH_LIMIT (macro definition) of file ads101x_params.h is not documented. +warning: Member ADS101X_PARAM_I2C (macro definition) of file ads101x_params.h is not documented. +warning: Member ADS101X_PARAM_LOW_LIMIT (macro definition) of file ads101x_params.h is not documented. +warning: Member ADS101X_PARAM_MUX_GAIN (macro definition) of file ads101x_params.h is not documented. +warning: Member ADS101X_PARAMS (macro definition) of file ads101x_params.h is not documented. +warning: Member ADS101X_PGA_FSR_0V256 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_PGA_FSR_0V512 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_PGA_FSR_1V024 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_PGA_FSR_2V048 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_PGA_FSR_4V096 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_PGA_FSR_6V144 (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_PGA_MASK (macro definition) of file ads101x_regs.h is not documented. +warning: Member ADS101X_SAUL_INFO (macro definition) of file ads101x_params.h is not documented. +warning: Member ADT7310_CONF_CT_POL_MASK (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_CT_POL_SHIFT (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_CT_POL(x) (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_FAULT_QUEUE_MASK (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_FAULT_QUEUE_SHIFT (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_FAULT_QUEUE(x) (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_INTCT_MODE_MASK (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_INTCT_MODE_SHIFT (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_INTCT_MODE(x) (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_INT_POL_MASK (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_INT_POL_SHIFT (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_INT_POL(x) (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_OPERATION_MODE_MASK (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_OPERATION_MODE_SHIFT (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_OPERATION_MODE(x) (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_RESOLUTION_MASK (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_RESOLUTION_SHIFT (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADT7310_CONF_RESOLUTION(x) (macro definition) of group drivers_adt7310 is not documented. +warning: Member ADXL345_ACT_ACDC (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_ACTIVITY (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_ACT_X_ENABLE (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_ACT_X_SRC (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_ACT_Y_ENABLE (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_ACT_Y_SRC (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_ACT_Z_ENABLE (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_ACT_Z_SRC (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_ASLEEP (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_AUTOSLEEP_BIT (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_CHIP_ID (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_DATA_READY (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_DOUBLE_TAP (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_FIFO_ENTRIES_MASK (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_FIFO_MODE_MASK (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_FIFO_MODE_POS (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_FIFO_TRIGGER (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_FIFO_TRIGGER_POS (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_FIFO_TRIG (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_FREEFALL (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_FULL_RES (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_INACT_ACDC (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_INACTIVITY (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_INACT_X_ENABLE (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_INACT_Y_ENABLE (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_INACT_Z_ENABLE (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_INT_INVERT (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_JUSTIFY (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_LINK_BIT (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_LOWPOWER (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_MEASURE_BIT (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_OVERRUN (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_PARAM_ADDR (macro definition) of file adxl345_params.h is not documented. +warning: Member ADXL345_PARAM_FULL_RES (macro definition) of file adxl345_params.h is not documented. +warning: Member ADXL345_PARAM_I2C (macro definition) of file adxl345_params.h is not documented. +warning: Member ADXL345_PARAM_INTERRUPT (macro definition) of file adxl345_params.h is not documented. +warning: Member ADXL345_PARAM_OFFSET (macro definition) of file adxl345_params.h is not documented. +warning: Member ADXL345_PARAM_RANGE (macro definition) of file adxl345_params.h is not documented. +warning: Member ADXL345_PARAM_RATE (macro definition) of file adxl345_params.h is not documented. +warning: Member ADXL345_PARAMS (macro definition) of file adxl345_params.h is not documented. +warning: Member ADXL345_RANGE_MASK (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_RATE_MASK (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_RES_10_BITS (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_RES_11_BITS (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_RES_12_BITS (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_RES_13_BITS (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_SAMPLES_MASK (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_SAUL_INFO (macro definition) of file adxl345_params.h is not documented. +warning: Member ADXL345_SELF_TEST (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_SINGLE_TAP (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_SLEEP_BIT (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_SPI_BIT (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_SUPPRESS (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_TAP_ALL_ENABLE (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_TAP_X_ENABLE (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_TAP_X_SRC (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_TAP_Y_ENABLE (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_TAP_Y_SRC (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_TAP_Z_ENABLE (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_TAP_Z_SRC (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_WAKEUP_1HZ (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_WAKEUP_2HZ (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_WAKEUP_4HZ (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_WAKEUP_8HZ (macro definition) of file adxl345_regs.h is not documented. +warning: Member ADXL345_WATERMARK (macro definition) of file adxl345_regs.h is not documented. +warning: Member AEM_ITM_LAR (macro definition) of group boards_common_silabs_drivers_aem is not documented. +warning: Member AEM_ITM_TCR (macro definition) of group boards_common_silabs_drivers_aem is not documented. +warning: Member AEM_TPI_ACPR (macro definition) of group boards_common_silabs_drivers_aem is not documented. +warning: Member AEM_TPI_FFCR (macro definition) of group boards_common_silabs_drivers_aem is not documented. +warning: Member AEM_TPI_SPPR (macro definition) of group boards_common_silabs_drivers_aem is not documented. +warning: Member AES_BLOCK_SIZE (macro definition) of file aes.h is not documented. +warning: Member AES_KEY_SIZE_128 (macro definition) of file aes.h is not documented. +warning: Member AES_KEY_SIZE_192 (macro definition) of file aes.h is not documented. +warning: Member AES_KEY_SIZE_256 (macro definition) of file aes.h is not documented. +warning: Member AES_MAXNR (macro definition) of file aes.h is not documented. +warning: Member AIP31068_PARAMS (macro definition) of file aip31068_params.h is not documented. +warning: Member ALL_INT_MASK (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member ANA0 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member ANA1 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member ANA2 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member ANA3 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member ANA4 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member ANA5 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member ANA6 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member AON_IOC_CLK32KCTL_OEN (macro definition) of file cc26xx_cc13xx_ioc.h is not documented. +warning: Member AON_PMCTL_RESETCTL_BOOT_DET_0_CLR_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member AON_PMCTL_RESETCTL_BOOT_DET_0_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member AON_PMCTL_RESETCTL_BOOT_DET_0_SET_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member AON_PMCTL_RESETCTL_BOOT_DET_0_s (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member AON_PMCTL_RESETCTL_BOOT_DET_1_CLR_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member AON_PMCTL_RESETCTL_BOOT_DET_1_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member AON_PMCTL_RESETCTL_BOOT_DET_1_SET_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member AON_PMCTL_RESETCTL_MCU_WARM_RESET_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member AONWUC_CTL0_AUX_SRAM_ERASE (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AONWUC_CTL0_MCU_SRAM_ERASE (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AONWUC_CTL0_PWR_DWN_DIS (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AONWUC_CTL1_MCU_RESET_SRC (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AONWUC_CTL1_MCU_WARM_RESET (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member APA102_PARAM_CLK_PIN (macro definition) of file apa102_params.h is not documented. +warning: Member APA102_PARAM_CLK_PIN (macro definition) of file board.h is not documented. +warning: Member APA102_PARAM_DATA_PIN (macro definition) of file apa102_params.h is not documented. +warning: Member APA102_PARAM_DATA_PIN (macro definition) of file board.h is not documented. +warning: Member APA102_PARAM_LED_NUMOF (macro definition) of file board.h is not documented. +warning: Member APA102_PARAMS (macro definition) of file apa102_params.h is not documented. +warning: Member APDS99XX_PARAMS (macro definition) of file apds99xx_params.h is not documented. +warning: Member APDS99XX_SAUL_INFO (macro definition) of file apds99xx_params.h is not documented. +warning: Member ARDUINO_A0 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A10 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A11 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A1 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A2 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A3 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A4 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A5 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A6 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A7 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A8 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_A9 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_DAC0 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_DAC1 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_LED (macro definition) of file arduino_board.h is not documented. +warning: Member ARDUINO_PIN_0 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_10 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_11 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_12 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_13 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_14 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_15 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_16 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_17 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_18 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_19 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_1 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_20 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_21 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_22 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_23 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_24 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_25 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_26 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_27 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_28 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_29 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_2 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_30 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_31 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_32 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_33 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_34 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_35 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_36 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_37 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_38 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_39 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_3 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_40 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_41 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_42 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_43 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_44 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_45 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_46 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_47 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_48 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_49 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_4 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_50 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_51 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_52 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_53 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_54 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_55 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_56 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_57 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_58 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_59 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_5 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_60 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_61 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_62 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_63 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_64 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_65 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_66 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_67 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_68 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_69 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_6 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_70 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_71 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_72 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_73 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_74 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_75 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_76 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_77 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_78 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_7 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_8 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_9 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_A0 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_A1 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_A2 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_A3 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_A4 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_A5 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_A6 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member ARDUINO_PIN_A7 (macro definition) of file arduino_pinmap.h is not documented. +warning: Member arduino_pinmap[] (variable) of file arduino_board.h is not documented. +warning: Member AT24CXXX_PARAM_ADDR (macro definition) of file board.h is not documented. +warning: Member AT24CXXX_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member AT24MAC_PARAM_I2C_ADDR (macro definition) of file at24mac_params.h is not documented. +warning: Member AT24MAC_PARAM_I2C_ADDR (macro definition) of file board.h is not documented. +warning: Member AT24MAC_PARAM_I2C_DEV (macro definition) of file at24mac_params.h is not documented. +warning: Member AT24MAC_PARAM_I2C_DEV (macro definition) of file board.h is not documented. +warning: Member AT24MAC_PARAMS (macro definition) of file at24mac_params.h is not documented. +warning: Member AT24MAC_PARAM_TYPE (macro definition) of file at24mac_params.h is not documented. +warning: Member AT24MAC_PARAM_TYPE (macro definition) of file board.h is not documented. +warning: Member AT25XXX_PARAM_ADDR_LEN (macro definition) of file at25xxx_params.h is not documented. +warning: Member AT25XXX_PARAM_CS (macro definition) of file at25xxx_params.h is not documented. +warning: Member AT25XXX_PARAM_HOLD (macro definition) of file at25xxx_params.h is not documented. +warning: Member AT25XXX_PARAM_PAGE_SIZE (macro definition) of file at25xxx_params.h is not documented. +warning: Member AT25XXX_PARAM_SIZE (macro definition) of file at25xxx_params.h is not documented. +warning: Member AT25XXX_PARAMS (macro definition) of file at25xxx_params.h is not documented. +warning: Member AT25XXX_PARAM_SPI_CLK (macro definition) of file at25xxx_params.h is not documented. +warning: Member AT25XXX_PARAM_SPI (macro definition) of file at25xxx_params.h is not documented. +warning: Member AT25XXX_PARAM_WP (macro definition) of file at25xxx_params.h is not documented. +warning: Member AT30TSE75X_BUS_FREE_TIME_US (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CMD__GENERAL_CALL_RELATCH (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CMD__GENERAL_CALL_RESET (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CMD__RESTORE_FROM_NVRAM (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CMD__SAVE_TO_NVRAM (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CONFIG__ALARM_MODE_BIT (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CONFIG__ALERT_POL_BIT (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CONFIG__FTQ_MASK (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CONFIG__FTQ_SHIFT (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CONFIG__OS_BIT (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CONFIG__RESOLUTION_MASK (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CONFIG__RESOLUTION_SHIFT (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_CONFIG__SHUTDOWN_BIT (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_EEPROM_ADDR (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_FRACTIONAL_BASE (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_FRACTIONAL_MASK (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_FRACTIONAL_SHIFT (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_INTEGER_MASK (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_INTEGER_SHIFT (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_REG__CONFIG (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_REG__LIMIT_HIGH (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_REG__LIMIT_LOW (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_REG__NV_CONFIG (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_REG__NV_LIMIR_HIGH (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_REG__NV_LIMIT_LOW (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_REG__TEMPERATURE (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT30TSE75X_TEMP_ADDR (macro definition) of group drivers_at30tse75x is not documented. +warning: Member AT86RF212B_PARTNUM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member at86rf215_clko_cur_t (enumeration) of group drivers_at86rf215 is not documented. +warning: Member at86rf215_clko_freq_t (enumeration) of group drivers_at86rf215 is not documented. +warning: Member AT86RF215_CSMA_MAX_BE_DEFAULT (macro definition) of file at86rf215_internal.h is not documented. +warning: Member AT86RF215_CSMA_MIN_BE_DEFAULT (macro definition) of file at86rf215_internal.h is not documented. +warning: Member AT86RF215_CSMA_RETRIES_MAX_DEFAULT (macro definition) of file at86rf215_internal.h is not documented. +warning: Member AT86RF215IQ_PN (macro definition) of file at86rf215_registers.h is not documented. +warning: Member AT86RF215M_PN (macro definition) of file at86rf215_registers.h is not documented. +warning: Member AT86RF215_PARAM_CS (macro definition) of file at86rf215_params.h is not documented. +warning: Member AT86RF215_PARAM_CS (macro definition) of file board.h is not documented. +warning: Member AT86RF215_PARAM_INT (macro definition) of file at86rf215_params.h is not documented. +warning: Member AT86RF215_PARAM_INT (macro definition) of file board.h is not documented. +warning: Member AT86RF215_PARAM_RESET (macro definition) of file at86rf215_params.h is not documented. +warning: Member AT86RF215_PARAM_RESET (macro definition) of file board.h is not documented. +warning: Member AT86RF215_PARAMS (macro definition) of file at86rf215_params.h is not documented. +warning: Member AT86RF215_PARAM_SPI_CLK (macro definition) of file at86rf215_params.h is not documented. +warning: Member AT86RF215_PARAM_SPI (macro definition) of file at86rf215_params.h is not documented. +warning: Member AT86RF215_PARAM_SPI (macro definition) of file board.h is not documented. +warning: Member AT86RF215_PN (macro definition) of file at86rf215_registers.h is not documented. +warning: Member at86rf215_state_t (enumeration) of group drivers_at86rf215 is not documented. +warning: Member AT86RF231_PARTNUM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF232_PARTNUM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF233_PARTNUM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_ACCESS_FB (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_ACCESS_READ (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_ACCESS_REG (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_ACCESS_SRAM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_ACCESS_WRITE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_AES_DIR__DEC (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_AES_DIR__ENC (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_AES_MODE__CBC (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_AES_MODE__ECB (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_AES_MODE__KEY (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_AES_REQUEST__IDLE (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_AES_REQUEST__START (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MASK__AES_DIR (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MASK__AES_MODE (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MASK__AES_REQUEST (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_DIR__DEC (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_DIR__ENC (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_MODE__CBC (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_MODE__ECB (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_MODE__KEY (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_REQUEST__IDLE (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MIRROR_AES_REQUEST__START (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MIRROR_MASK__AES_DIR (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MIRROR_MASK__AES_MODE (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_CTRL_MIRROR_MASK__AES_REQUEST (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_STATUS_AES_DONE__DONE (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_STATUS_AES_DONE__NOT_DONE (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_STATUS_AES_ER__ERROR (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_STATUS_AES_ER__NO_ERROR (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_STATUS_MASK__AES_DONE (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_AES_STATUS_MASK__AES_ER (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_CCA_THRES_MASK__CCA_ED_THRES (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_CCA_THRES_MASK__RSVD_HI_NIBBLE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_CSMA_SEED_1__AACK_DIS_ACK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_CSMA_SEED_1__AACK_I_AM_COORD (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_CSMA_SEED_1__AACK_SET_PD (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_CSMA_SEED_1__CSMA_SEED_1 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_DEFAULT_CHANNEL (macro definition) of group drivers_at86rf2xx is not documented. +warning: Member AT86RF2XX_DEFAULT_PAGE (macro definition) of group drivers_at86rf2xx is not documented. +warning: Member AT86RF2XX_IRQ_STATUS_MASK__AMI (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_IRQ_STATUS_MASK__BAT_LOW (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_IRQ_STATUS_MASK__CCA_ED_DONE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_IRQ_STATUS_MASK__PLL_LOCK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_IRQ_STATUS_MASK__PLL_UNLOCK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_IRQ_STATUS_MASK__RX_START (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_IRQ_STATUS_MASK__TRX_END (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_IRQ_STATUS_MASK__TRX_UR (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_MAX_CHANNEL (macro definition) of group drivers_at86rf2xx is not documented. +warning: Member AT86RF2XX_MIN_CHANNEL (macro definition) of group drivers_at86rf2xx is not documented. +warning: Member AT86RF2XX_PARTNUM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_CC_CCA_DEFAULT__CCA_MODE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_CC_CCA_MASK__CCA_MODE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_CC_CCA_MASK__CCA_REQUEST (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_CC_CCA_MASK__CHANNEL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_RSSI_MASK__RND_VALUE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_RSSI_MASK__RSSI (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_RSSI_MASK__RX_CRC_VALID (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_TX_PWR_DEFAULT__PA_BUF_LT (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_TX_PWR_DEFAULT__PA_LT (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_TX_PWR_DEFAULT__TX_PWR (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_PHY_TX_PWR_MASK__TX_PWR (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__AES_CTRL (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_REG__AES_CTRL_MIRROR (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_REG__AES_DATA_END (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_REG__AES_DATA_START (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_REG__AES_KEY_END (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_REG__AES_KEY_START (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_REG__AES_STATUS (macro definition) of file at86rf2xx_aes.h is not documented. +warning: Member AT86RF2XX_REG__ANT_DIV (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__BATMON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__CCA_THRES (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__CC_CTRL_1 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__CSMA_BE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__CSMA_SEED_0 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__CSMA_SEED_1 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__FTN_CTRL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__IEEE_ADDR_0 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__IEEE_ADDR_1 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__IEEE_ADDR_2 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__IEEE_ADDR_3 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__IEEE_ADDR_4 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__IEEE_ADDR_5 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__IEEE_ADDR_6 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__IEEE_ADDR_7 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__IRQ_MASK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__IRQ_STATUS (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__MAN_ID_0 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__MAN_ID_1 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__PAN_ID_0 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__PAN_ID_1 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__PART_NUM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__PHY_CC_CCA (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__PHY_ED_LEVEL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__PHY_RSSI (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__PHY_TX_PWR (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__PLL_CF (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__PLL_DCU (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__RX_CTRL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__RX_SYN (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__SFD_VALUE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__SHORT_ADDR_0 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__SHORT_ADDR_1 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__TRX_CTRL_0 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__TRX_CTRL_1 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__TRX_CTRL_2 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__TRX_STATE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__TRX_STATUS (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__TST_CTRL_DIGI (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__VERSION_NUM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__VREG_CTRL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__XAH_CTRL_0 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__XAH_CTRL_1 (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_REG__XOSC_CTRL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_RX_SYN__RX_OVERRIDE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_RX_SYN__RX_PDT_DIS (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_RX_SYN__RX_PDT_LEVEL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TIMING__PLL_ON_TO_BUSY_TX (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TIMING__RESET (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TIMING__RESET_TO_TRX_OFF (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TIMING__SLEEP_TO_TRX_OFF (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TIMING__TRX_OFF_TO_PLL_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TIMING__TRX_OFF_TO_RX_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TIMING__VCC_TO_P_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__16MHz (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__1MHz (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__250kHz (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__2MHz (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__4MHz (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__62_5kHz (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__8MHz (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_CLKM_CTRL__OFF (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_DEFAULT__CLKM_CTRL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_DEFAULT__CLKM_SHA_SEL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_DEFAULT__PAD_IO_CLKM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_DEFAULT__PAD_IO (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_MASK__CLKM_CTRL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_MASK__CLKM_SHA_SEL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_MASK__PAD_IO_CLKM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_0_MASK__PAD_IO (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_1_MASK__IRQ_2_EXT_EN (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_1_MASK__IRQ_MASK_MODE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_1_MASK__IRQ_POLARITY (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_1_MASK__PA_EXT_EN (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_1_MASK__RX_BL_CTRL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_1_MASK__SPI_CMD_MODE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_1_MASK__TX_AUTO_CRC_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_2_MASK__ALT_SPECTRUM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_2_MASK__BPSK_OQPSK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_2_MASK__FREQ_MODE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_2_MASK__OQPSK_DATA_RATE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_2_MASK__OQPSK_SCRAM_EN (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_2_MASK__RX_SAFE_MODE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_2_MASK__SUB_MODE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_CTRL_2_MASK__TRX_OFF_AVDD_EN (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_RPC_MASK__IPAN_RPC_EN (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_RPC_MASK__PDT_RPC_EN (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_RPC_MASK__PLL_RPC_EN (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_RPC_MASK__RX_RPC_CTRL_MAXPWR (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_RPC_MASK__RX_RPC_EN (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_RPC_MASK__XAH_TX_RPC_EN (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__FORCE_PLL_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__FORCE_TRX_OFF (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE_MASK__TRAC (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__NOP (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__PLL_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__RX_AACK_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__RX_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__TRAC_CHANNEL_ACCESS_FAILURE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__TRAC_INVALID (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__TRAC_NO_ACK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__TRAC_SUCCESS_DATA_PENDING (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__TRAC_SUCCESS (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__TRAC_SUCCESS_WAIT_FOR_ACK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__TRX_OFF (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__TX_ARET_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATE__TX_START (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__BUSY_RX_AACK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__BUSY_RX_AACK_NOCLK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__BUSY_RX (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__BUSY_TX_ARET (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__BUSY_TX (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS_MASK__CCA_DONE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS_MASK__CCA_STATUS (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS_MASK__TRX_STATUS (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__PLL_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__P_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__RX_AACK_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__RX_AACK_ON_NOCLK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__RX_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__RX_ON_NOCLK (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__SLEEP (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__STATE_TRANSITION_IN_PROGRESS (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__TRX_OFF (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_TRX_STATUS__TX_ARET_ON (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_XAH_CTRL_0__MAX_CSMA_RETRIES (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_XAH_CTRL_0__MAX_FRAME_RETRIES (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_XAH_CTRL_0__SLOTTED_OPERATION (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_XAH_CTRL_1__AACK_ACK_TIME (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_XAH_CTRL_1__AACK_FLTR_RES_FT (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_XAH_CTRL_1__AACK_PROM_MODE (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_XAH_CTRL_1__AACK_UPLD_RES_FT (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_XOSC_CTRL__XTAL_MODE_CRYSTAL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RF2XX_XOSC_CTRL__XTAL_MODE_EXTERNAL (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RFA1_PARTNUM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member AT86RFR2_PARTNUM (macro definition) of file at86rf2xx_registers.h is not documented. +warning: Member ATA8520E_ATMEL_FRAME_SENT_MASK (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_ATMEL_PA_MASK (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_ATMEL_SYSTEM_READY_MASK (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_ATMEL_VERSION (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_GET_ID (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_GET_PAC (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_GET_STATUS (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_IO_INIT (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_IO_READ (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_IO_WRITE (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_OFF_MODE (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_PARAM_CS_PIN (macro definition) of file ata8520e_params.h is not documented. +warning: Member ATA8520E_PARAM_CS_PIN (macro definition) of file board.h is not documented. +warning: Member ATA8520E_PARAM_INT_PIN (macro definition) of file ata8520e_params.h is not documented. +warning: Member ATA8520E_PARAM_INT_PIN (macro definition) of file board.h is not documented. +warning: Member ATA8520E_PARAM_POWER_PIN (macro definition) of file ata8520e_params.h is not documented. +warning: Member ATA8520E_PARAM_POWER_PIN (macro definition) of file board.h is not documented. +warning: Member ATA8520E_PARAM_RESET_PIN (macro definition) of file ata8520e_params.h is not documented. +warning: Member ATA8520E_PARAM_RESET_PIN (macro definition) of file board.h is not documented. +warning: Member ATA8520E_PARAMS (macro definition) of file ata8520e_params.h is not documented. +warning: Member ATA8520E_PARAM_SPI_CLK (macro definition) of file ata8520e_params.h is not documented. +warning: Member ATA8520E_PARAM_SPI (macro definition) of file ata8520e_params.h is not documented. +warning: Member ATA8520E_PARAM_SPI (macro definition) of file board.h is not documented. +warning: Member ATA8520E_READ_RX_BUFFER (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_READ_SUP_TEMP (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SEND_BIT (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SEND_CW (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SEND_FRAME (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SEND_RECEIVE_FRAME (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SET_TX_FREQUENCY (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SIGFOX2_DF_WAIT_ERROR (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SIGFOX2_INIT_ERROR (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SIGFOX2_RF_ERROR (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SIGFOX2_TX_ERROR (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SIGFOX_NO_ERROR (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SIGFOX_RX_BIT_TIMEOUT (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SIGFOX_RX_TIMEOUT (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SIGFOX_TX_LEN_TOO_LONG (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SIGFOX_VERSION (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_START_MEASUREMENT (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_SYSTEM_RESET (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_TEST_MODE (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_TX_TEST_MODE (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_WRITE_SYS_CONF (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATA8520E_WRITE_TX_BUFFER (macro definition) of file ata8520e_internals.h is not documented. +warning: Member ATCA_DEVTYPE (macro definition) of group drivers_atca_config is not documented. +warning: Member ATCA_PARAM_ADDR (macro definition) of group drivers_atca_config is not documented. +warning: Member ATCA_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member ATCA_PARAM_I2C (macro definition) of group drivers_atca_config is not documented. +warning: Member ATCA_PARAMS (macro definition) of group drivers_atca_config is not documented. +warning: Member ATCA_RX_RETRIES (macro definition) of group drivers_atca_config is not documented. +warning: Member ATMEGA_GPIO_BASE_PORT_A (macro definition) of file atmega_gpio.h is not documented. +warning: Member ATMEGA_GPIO_OFFSET_PIN_PIN (macro definition) of file atmega_gpio.h is not documented. +warning: Member ATMEGA_GPIO_OFFSET_PIN_PORT (macro definition) of file atmega_gpio.h is not documented. +warning: Member ATMEGA_GPIO_OFFSET_PORT_H (macro definition) of file atmega_gpio.h is not documented. +warning: Member ATWINC15X0_PARAM_CHIP_EN_PIN (macro definition) of file atwinc15x0_params.h is not documented. +warning: Member ATWINC15X0_PARAM_CHIP_EN_PIN (macro definition) of file board.h is not documented. +warning: Member ATWINC15X0_PARAM_IRQ_PIN (macro definition) of file atwinc15x0_params.h is not documented. +warning: Member ATWINC15X0_PARAM_IRQ_PIN (macro definition) of file board.h is not documented. +warning: Member ATWINC15X0_PARAM_RESET_PIN (macro definition) of file atwinc15x0_params.h is not documented. +warning: Member ATWINC15X0_PARAM_RESET_PIN (macro definition) of file board.h is not documented. +warning: Member ATWINC15X0_PARAMS (macro definition) of file atwinc15x0_params.h is not documented. +warning: Member ATWINC15X0_PARAM_SPI_CLK (macro definition) of file atwinc15x0_params.h is not documented. +warning: Member ATWINC15X0_PARAM_SPI (macro definition) of file atwinc15x0_params.h is not documented. +warning: Member ATWINC15X0_PARAM_SPI (macro definition) of file board.h is not documented. +warning: Member ATWINC15X0_PARAM_SSN_PIN (macro definition) of file atwinc15x0_params.h is not documented. +warning: Member ATWINC15X0_PARAM_SSN_PIN (macro definition) of file board.h is not documented. +warning: Member ATWINC15X0_PARAM_WAKE_PIN (macro definition) of file atwinc15x0_params.h is not documented. +warning: Member ATWINC15X0_PARAM_WAKE_PIN (macro definition) of file board.h is not documented. +warning: Member AUXCFG_RAM_RET_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCLK_PWR_DWN_SRC_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCLK_PWR_DWN_SRC_pos (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCLK_SCLK_HF_DIV_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCLK_SCLK_HF_DIV_pos (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCLK_SRC_HF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCLK_SRC_LF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCLK_SRC_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCTL_AUX_FORCE_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCTL_RESET_REQ (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCTL_SCE_RUN_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUXCTL_SWEV (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member AUX_SYSIF_OPMODEREQ_REQ_A (macro definition) of file cc26x2_cc13x2_aux.h is not documented. +warning: Member AUX_SYSIF_OPMODEREQ_REQ_LP (macro definition) of file cc26x2_cc13x2_aux.h is not documented. +warning: Member AUX_SYSIF_OPMODEREQ_REQ_PDA (macro definition) of file cc26x2_cc13x2_aux.h is not documented. +warning: Member BACKLIGHT_MASK (macro definition) of file board.h is not documented. +warning: Member BACKLIGHT_OFF (macro definition) of file board.h is not documented. +warning: Member BACKLIGHT_ON (macro definition) of file board.h is not documented. +warning: Member BAT_MONITOR (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member BAT_MONITOR_PW (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member BATTERY_ADC (macro definition) of file board.h is not documented. +warning: Member BBC0_regs (variable) of file at86rf215_registers.h is not documented. +warning: Member BBC1_regs (variable) of file at86rf215_registers.h is not documented. +warning: Member B_COEF_IF (macro definition) of file tcs37727-internal.h is not documented. +warning: Member BC_PIN (macro definition) of file board.h is not documented. +warning: Member BGDEFAULT (macro definition) of file ColorTextColors.h is not documented. +warning: Member BGGREEN (macro definition) of file ColorTextColors.h is not documented. +warning: Member BGRED (macro definition) of file ColorTextColors.h is not documented. +warning: Member BH1750FVI_PARAM_ADDR (macro definition) of file bh1750fvi_params.h is not documented. +warning: Member BH1750FVI_PARAM_I2C (macro definition) of file bh1750fvi_params.h is not documented. +warning: Member BH1750FVI_PARAMS (macro definition) of file bh1750fvi_params.h is not documented. +warning: Member BH1900NUX_PARAM_ADDR (macro definition) of file bh1900nux_params.h is not documented. +warning: Member BH1900NUX_PARAM_I2C (macro definition) of file bh1900nux_params.h is not documented. +warning: Member BH1900NUX_PARAMS (macro definition) of file bh1900nux_params.h is not documented. +warning: Member BH1900NUX_REG_ADDR (macro definition) of group drivers_bh1900nux is not documented. +warning: Member BIT0 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT10 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT11 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT12 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT13 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT14 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT15 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT16 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT17 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT18 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT19 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT1 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT20 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT21 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT22 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT23 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT24 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT25 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT26 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT27 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT28 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT29 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT2 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT30 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT31 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT3 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT4 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT5 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT6 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT7 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT8 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT9 (macro definition) of file bitarithm.h is not documented. +warning: Member BIT_ACC_RANGE_16G (macro definition) of file bmx055_internal.h is not documented. +warning: Member BIT_ACC_RANGE_2G (macro definition) of file bmx055_internal.h is not documented. +warning: Member BIT_ACC_RANGE_4G (macro definition) of file bmx055_internal.h is not documented. +warning: Member BIT_ACC_RANGE_8G (macro definition) of file bmx055_internal.h is not documented. +warning: Member BIT_DMP_EN (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member BIT_I2C_BYPASS_EN (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member BIT_I2C_MST_EN (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member BIT_I2C_MST_VDDIO (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member BIT_MAG_DATARDY (macro definition) of file bmx055_internal.h is not documented. +warning: Member BIT_MAG_PWRCTRL_VAL (macro definition) of file bmx055_internal.h is not documented. +warning: Member BIT(n) (macro definition) of file cc2538_rf.h is not documented. +warning: Member BIT_PWR_MGMT1_SLEEP (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member BIT_SLAVE_EN (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member BIT_SLAVE_RW (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member BIT_SLV0_DELAY_EN (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member BIT_SLV1_DELAY_EN (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member BIT_WAIT_FOR_ES (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member BIT(X) (macro definition) of file periph_conf_common.h is not documented. +warning: Member BLE_ADV_EXT_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_ADV_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_ADV_NONCON_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_ADV_SCAN_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_ATTRIBUTE_NOT_FOUND (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_ATTRIBUTE_NOT_LONG (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_AUTH_SIGNED_WRITES (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_BROADCAST (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_ERROR_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_EXEC_WRITE_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_EXEC_WRITE_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_EXT_PROPERTIES (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_FIND_BY_VAL_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_FIND_BY_VAL_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_FIND_INFO_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_FIND_INFO_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_INDICATE (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_INSUFFICENT_KEY_SIZE (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_INSUFFICIENT_AUTHEN (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_INSUFFICIENT_AUTHOR (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_INSUFFICIENT_ENCRYPTION (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_INSUFFICIENT_RESSOURCES (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_INVALID_ATTR_VAL_LEN (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_INVALID_HANDLE (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_INVALID_OFFSET (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_INVALID_PDU (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_MTU_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_MTU_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_NOTIFY (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_PREPARE_QUEUE_FULL (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_PREP_WRITE_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_PREP_WRITE_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_BLOB_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_BLOB_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_BY_GROUP_TYPE_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_BY_GROUP_TYPE_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_BY_TYPE_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_BY_TYPE_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_MUL_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_MUL_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_NOT_PERMITTED (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_READ_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_REQUEST_NOT_SUP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_SIGNED_WRITE_CMD (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_ULIKELY_ERROR (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_UNSUPPORTED_GROUP_TYPE (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_VAL_CONFIRMATION (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_VAL_INDICATION (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_VAL_NOTIFICATION (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_WRITE_COMMAND (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_WRITE (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_WRITE_NOT_PERMITTED (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_WRITE_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_WRITE_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_ATT_WRITE_WO_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_AUX_ADV_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_AUX_CHAIN_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_AUX_CONNECT_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_AUX_SCAN_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_AUX_SCAN_RSP (macro definition) of group ble_defs is not documented. +warning: Member BLE_AUX_SYNC_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_CONNECT_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_CONNECT_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_DECL_CHAR (macro definition) of group ble_defs is not documented. +warning: Member BLE_DECL_INCLUDE (macro definition) of group ble_defs is not documented. +warning: Member BLE_DECL_PRI_SERVICE (macro definition) of group ble_defs is not documented. +warning: Member BLE_DECL_SEC_SERVICE (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_AGGR_FMT (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_CLIENT_CONFIG (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_ENV_CONFIG (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_ENV_MEASUREMENT (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_ENV_TRIGGER_SETTING (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_EXT_PROP (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_EXT_REPORT_REF (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_NUMOF_DIGITS (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_PRES_FMT (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_REPORT_REF (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_SERVER_CONFIG (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_TIME_TRIGGER_SETTING (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_USER_DESC (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_VALID_RANGE (macro definition) of group ble_defs is not documented. +warning: Member BLE_DESC_VALUE_TRIGGER_SETTING (macro definition) of group ble_defs is not documented. +warning: Member BLE_DIRECT_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_3D_INFO_DATA (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_ADDR_PUBLIC (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_ADDR_RANDOM (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_ADV_INTERVAL (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_APPEARANCE (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_CHAN_MAP_UPDATE_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_CLASS_OF_DEVICE (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_DEVICE_ID (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_FLAGS (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_INDOOR_POSITIONING (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_LE_DEVICE_ADDR (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_LE_ROLE (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_LE_SEC_CON_CONF_VAL (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_LE_SEC_CON_RAND_VAL (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_LE_SUP_FEATURES (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_LIST_SOL_UUID_128 (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_LIST_SOL_UUID_16 (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_LIST_SOL_UUID_32 (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_NAME (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_NAME_SHORT (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_PAIRING_HASH_192 (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_PAIRING_HASH_256 (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_PAIRING_RAND_192 (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_PAIRING_RAND_256 (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_SEC_MANAGER_OOB_FLAGS (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_SEC_MANAGER_TK_VAL (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_SERVICE_DATA_128 (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_SERVICE_DATA_32 (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_SERVICE_DATA (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_SERVICE_DATA_UUID16 (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_SLAVE_CON_INTERVAL (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_TRANSPORT_DISC_DATA (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_TX_POWER_LEVEL (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_URI (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_UUID128_COMP (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_UUID128_INCOMP (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_UUID16_COMP (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_UUID16_INCOMP (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_UUID32_COMP (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_UUID32_INCOMP (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_AD_VENDOR (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_DISCOVERABLE (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_DISCOVER_LIM (macro definition) of group ble_defs is not documented. +warning: Member BLE_GAP_FLAG_BREDR_NOTSUP (macro definition) of group ble_defs is not documented. +warning: Member BLE_L2CAP_CID_CB_MAX (macro definition) of group ble_defs is not documented. +warning: Member BLE_L2CAP_CID_CB_MIN (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_CHANNEL_MAP_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_CONN_PARAM_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_CONN_PARAM_RSP (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_CONN_UPDATE_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_ENC_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_ENC_RSP (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_FEATURE_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_FEATURE_RSP (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_FLAG_CHSEL (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_FLAG_RXADD (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_FLAG_TXADD (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_LENGTH_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_LENGTH_RSP (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_MIN_USED_CHAN_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_PAUSE_ENC_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_PAUSE_ENC_RSP (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_PHY_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_PHY_RSP (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_PHY_UPDATE_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_PING_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_PING_RSP (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_REJECT_EXT_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_REJECT_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_SLAVE_FEATURE_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_START_ENC_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_START_ENC_RSP (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_TERMINATE_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_UNKNOWN_RSP (macro definition) of group ble_defs is not documented. +warning: Member BLE_LL_VERSION_IND (macro definition) of group ble_defs is not documented. +warning: Member BLE_NPL_OS_ALIGNMENT (macro definition) of file nimble_npl_os.h is not documented. +warning: Member BLE_NPL_TIME_FOREVER (macro definition) of file nimble_npl_os.h is not documented. +warning: Member BLE_PDU_MASK (macro definition) of group ble_defs is not documented. +warning: Member BLE_SCAN_REQ (macro definition) of group ble_defs is not documented. +warning: Member BLE_SCAN_RESP (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_2bit (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_BOOL (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_DUINT16 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_FLOAT32 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_FLOAT64 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_FLOAT (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_NIBBLE (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_SFLOAT (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_SINT128 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_SINT12 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_SINT16 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_SINT24 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_SINT32 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_SINT48 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_SINT64 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_SINT8 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_STRUCT (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_UINT128 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_UINT12 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_UINT16 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_UINT24 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_UINT32 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_UINT48 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_UINT64 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_UINT8 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_UTF16 (macro definition) of group ble_defs is not documented. +warning: Member BLE_UNIT_BLE_FMT_UTF8 (macro definition) of group ble_defs is not documented. +warning: Member BLE_VERSION_40 (macro definition) of group ble_defs is not documented. +warning: Member BLE_VERSION_41 (macro definition) of group ble_defs is not documented. +warning: Member BLE_VERSION_42 (macro definition) of group ble_defs is not documented. +warning: Member BLE_VERSION_50 (macro definition) of group ble_defs is not documented. +warning: Member BME280_CTRL_HUM_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BME280_DIG_H1_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BME280_DIG_H2_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BME280_DIG_H2_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BME280_DIG_H3_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BME280_DIG_H4_H5_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BME280_DIG_H4_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BME280_DIG_H5_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BME280_DIG_H6_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BME280_HUMIDITY_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BME280_HUMIDITY_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member bme680_ms_sleep(uint32_t msleep) (function) of file bme680_hal.h is not documented. +warning: Member BME680_PARAM_I2C_ADDR (macro definition) of file bme680_params.h is not documented. +warning: Member BME680_PARAM_I2C_DEV (macro definition) of file bme680_params.h is not documented. +warning: Member BME680_PARAM_SPI_DEV (macro definition) of file bme680_params.h is not documented. +warning: Member BME680_PARAM_SPI_NSS_PIN (macro definition) of file bme680_params.h is not documented. +warning: Member BMEX80_RST_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMP180_ADDR (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP180_CALIBRATION_AC1 (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP180_HIGHRES_DELAY (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP180_PARAM_I2C_ADDR (macro definition) of file bmp180_params.h is not documented. +warning: Member BMP180_PARAM_I2C_DEV (macro definition) of file bmp180_params.h is not documented. +warning: Member BMP180_PARAM_OVERSAMPLING (macro definition) of file bmp180_params.h is not documented. +warning: Member BMP180_PARAMS (macro definition) of file bmp180_params.h is not documented. +warning: Member BMP180_PRESSURE_COMMAND (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP180_REGISTER_CONTROL (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP180_REGISTER_DATA (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP180_REGISTER_ID (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP180_SAUL_INFO (macro definition) of file bmp180_params.h is not documented. +warning: Member BMP180_STANDARD_DELAY (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP180_TEMPERATURE_COMMAND (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP180_ULTRAHIGHRES_DELAY (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP180_ULTRALOWPOWER_DELAY (macro definition) of file bmp180_internals.h is not documented. +warning: Member BMP280_I2C (macro definition) of file board.h is not documented. +warning: Member BMX055_PARAM_ACC_ADDR (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX055_PARAM_ACC_RANGE (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX055_PARAM_GYRO_ADDR (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX055_PARAM_GYRO_SCALE (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX055_PARAM_I2C (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX055_PARAM_INT1 (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX055_PARAM_INT2 (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX055_PARAM_MAG_ADDR (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX055_PARAM_MAG_RATE (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX055_PARAMS (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX055_SAULINFO (macro definition) of file bmx055_params.h is not documented. +warning: Member BMX280_CHIP_ID_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_CHIP_ID_VAL (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_CONFIG_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_CTRL_MEAS_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P1_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P1_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P2_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P2_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P3_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P3_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P4_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P4_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P5_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P5_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P6_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P6_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P7_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P7_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P8_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P8_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P9_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_P9_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_T1_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_T1_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_T2_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_T2_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_T3_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_DIG_T3_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_PARAM_CS (macro definition) of file board.h is not documented. +warning: Member BMX280_PARAM_I2C_ADDR (macro definition) of file bmx280_params.h is not documented. +warning: Member BMX280_PARAM_I2C_DEV (macro definition) of file bmx280_params.h is not documented. +warning: Member BMX280_PARAM_I2C_DEV (macro definition) of file board.h is not documented. +warning: Member BMX280_PARAM_MISC (macro definition) of file bmx280_params.h is not documented. +warning: Member BMX280_PARAMS (macro definition) of file bmx280_params.h is not documented. +warning: Member BMX280_PRESSURE_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_PRESSURE_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_PRESSURE_XLSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_STAT_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_TEMPERATURE_LSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_TEMPERATURE_MSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BMX280_TEMPERATURE_XLSB_REG (macro definition) of file bmx280_internals.h is not documented. +warning: Member BODPDM (macro definition) of group cpu_arm7_common is not documented. +warning: Member BOGD (macro definition) of group cpu_arm7_common is not documented. +warning: Member BOOLEAN(x) (macro definition) of file cc2538_rf.h is not documented. +warning: Member BOOTLOADER_CLEARS_WATCHDOG_AND_PASSES_MCUSR (macro definition) of file board.h is not documented. +warning: Member BORD (macro definition) of group cpu_arm7_common is not documented. +warning: Member BQ2429X_PARAM_I2C (macro definition) of file bq2429x_params.h is not documented. +warning: Member BQ2429X_PARAM_ICHG (macro definition) of file bq2429x_params.h is not documented. +warning: Member BQ2429X_PARAM_ILIM (macro definition) of file bq2429x_params.h is not documented. +warning: Member BQ2429X_PARAM_INT_PIN (macro definition) of file bq2429x_params.h is not documented. +warning: Member BQ2429X_PARAMS (macro definition) of file bq2429x_params.h is not documented. +warning: Member bq2429x_params[] (variable) of file bq2429x_params.h is not documented. +warning: Member BQ2429X_PARAM_VLIM (macro definition) of file bq2429x_params.h is not documented. +warning: Member BQ2429X_PARAM_VREG (macro definition) of file bq2429x_params.h is not documented. +warning: Member BQ2429X_PARMA_CE_PIN (macro definition) of file bq2429x_params.h is not documented. +warning: Member BQ2429X_PARMA_OTG_PIN (macro definition) of file bq2429x_params.h is not documented. +warning: Member BQ2429X_REG00_IINLIM_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG00_IINLIM_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG00_VINDPM_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG01_CHG_DISABLE (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG01_CHG_ENABLE (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG01_CHG_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG01_CHG_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG01_OTG_DISABLE (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG01_OTG_ENABLE (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG01_OTG_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG01_OTG_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG02_ICHG_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG02_ICHG_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG04_VREG_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG04_VREG_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG05_WD_DISABLE (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG05_WD_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG05_WD_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_CHG_STAT_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_CHG_STAT_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_DPM_STAT_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_DPM_STAT_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_PG_STAT_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_PG_STAT_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_THERM_STAT_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_THERM_STAT_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_VBUS_STATUS_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_VBUS_STATUS_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_VSYS_STAT_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG08_VSYS_STAT_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_BAT_FAULT_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_BAT_FAULT_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_CHRG_FAULT_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_CHRG_FAULT_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_NTC_FAULT_0_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_NTC_FAULT_0_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_NTC_FAULT_1_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_NTC_FAULT_1_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_OTG_FAULT_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_OTG_FAULT_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_WD_FAULT_m (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BQ2429X_REG09_WD_FAULT_s (macro definition) of file bq2429x_internal.h is not documented. +warning: Member BUTTON0_ENABLE (macro definition) of file board.h is not documented. +warning: Member BUTTON0 (macro definition) of file board.h is not documented. +warning: Member BUTTON1 (macro definition) of file board.h is not documented. +warning: Member byteorder_htolebufll(uint8_t *buf, uint64_t val) (function) of file byteorder.h is not documented. +warning: Member byteorder_htolebufl(uint8_t *buf, uint32_t val) (function) of file byteorder.h is not documented. +warning: Member byteorder_htolebufs(uint8_t *buf, uint16_t val) (function) of file byteorder.h is not documented. +warning: Member byteorder_lebuftohl(const uint8_t *buf) (function) of file byteorder.h is not documented. +warning: Member byteorder_lebuftohll(const uint8_t *buf) (function) of file byteorder.h is not documented. +warning: Member byteorder_lebuftohs(const uint8_t *buf) (function) of file byteorder.h is not documented. +warning: Member CALIB_T_P_BASE (macro definition) of file bmx280_internals.h is not documented. +warning: Member CALIB_T_P_LEN (macro definition) of file bmx280_internals.h is not documented. +warning: Member CAN_ISOTP_DEFAULT_EXT_ADDRESS (macro definition) of group sys_can_isotp is not documented. +warning: Member CAN_ISOTP_DEFAULT_FLAGS (macro definition) of group sys_can_isotp is not documented. +warning: Member CAN_ISOTP_DEFAULT_FRAME_TXTIME (macro definition) of group sys_can_isotp is not documented. +warning: Member CAN_ISOTP_DEFAULT_PAD_CONTENT (macro definition) of group sys_can_isotp is not documented. +warning: Member CAN_ISOTP_DEFAULT_RECV_BS (macro definition) of group sys_can_isotp is not documented. +warning: Member CAN_ISOTP_DEFAULT_RECV_STMIN (macro definition) of group sys_can_isotp is not documented. +warning: Member CAN_ISOTP_DEFAULT_RECV_WFTMAX (macro definition) of group sys_can_isotp is not documented. +warning: Member CAN_STM32_NB_FILTER (macro definition) of file candev_stm32.h is not documented. +warning: Member _CASTASGN(a, b) (macro definition) of group sys_ut is not documented. +warning: Member CC1200_CSN_GPIO (macro definition) of file board.h is not documented. +warning: Member CC1200_GPD0_GPIO (macro definition) of file board.h is not documented. +warning: Member CC1200_GPD2_GPIO (macro definition) of file board.h is not documented. +warning: Member CC1200_MISO_GPIO (macro definition) of file board.h is not documented. +warning: Member CC1200_MOSI_GPIO (macro definition) of file board.h is not documented. +warning: Member CC1200_RESET_GPIO (macro definition) of file board.h is not documented. +warning: Member CC1200_SCLK_GPIO (macro definition) of file board.h is not documented. +warning: Member CC1200_SPI_DEV (macro definition) of file board.h is not documented. +warning: Member CC2420_CHAN_DEFAULT (macro definition) of group drivers_cc2420 is not documented. +warning: Member CC2420_CHAN_MAX (macro definition) of group drivers_cc2420 is not documented. +warning: Member CC2420_CHAN_MIN (macro definition) of group drivers_cc2420 is not documented. +warning: Member CC2420_CRCCOR_COR_MASK (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_FIFO_READ (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_FIFO_WRITE (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_FSCTRL_CAL_DONE (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_FSCTRL_CAL_RUNNING (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_FSCTRL_FREQ_MASK (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_FSCTRL_LOCK_LENGTH (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_FSCTRL_LOCK_STATUS (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_FSCTRL_LOCK_THR_MASK (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_MANFIDH_VAL (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_MANFIDL_VAL (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_MDMCTRL0_ADR_DECODE (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_MDMCTRL0_AUTOACK (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_MDMCTRL0_AUTOCRC (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_MDMCTRL0_PAN_COORD (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_MDMCTRL0_PREAMBLE_3B (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_MDMCTRL0_PREAMBLE_M (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_MDMCTRL0_RES_FRM (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_PARAM_CCA (macro definition) of file board.h is not documented. +warning: Member CC2420_PARAM_CCA (macro definition) of file cc2420_params.h is not documented. +warning: Member CC2420_PARAM_CS (macro definition) of file board.h is not documented. +warning: Member CC2420_PARAM_CS (macro definition) of file cc2420_params.h is not documented. +warning: Member CC2420_PARAM_FIFO (macro definition) of file board.h is not documented. +warning: Member CC2420_PARAM_FIFO (macro definition) of file cc2420_params.h is not documented. +warning: Member CC2420_PARAM_FIFOP (macro definition) of file board.h is not documented. +warning: Member CC2420_PARAM_FIFOP (macro definition) of file cc2420_params.h is not documented. +warning: Member CC2420_PARAM_RESET (macro definition) of file board.h is not documented. +warning: Member CC2420_PARAM_RESET (macro definition) of file cc2420_params.h is not documented. +warning: Member CC2420_PARAM_SFD (macro definition) of file board.h is not documented. +warning: Member CC2420_PARAM_SFD (macro definition) of file cc2420_params.h is not documented. +warning: Member CC2420_PARAMS (macro definition) of file cc2420_params.h is not documented. +warning: Member CC2420_PARAM_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member CC2420_PARAM_SPI_CLK (macro definition) of file cc2420_params.h is not documented. +warning: Member CC2420_PARAM_SPI (macro definition) of file cc2420_params.h is not documented. +warning: Member CC2420_PARAM_VREFEN (macro definition) of file board.h is not documented. +warning: Member CC2420_PARAM_VREFEN (macro definition) of file cc2420_params.h is not documented. +warning: Member CC2420_RAM_CBCSTATE (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_IEEEADR (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_KEY0 (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_KEY1 (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_PANID (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_RXCTR (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_RXFIFO (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_RXNONCE (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_SABUF (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_SHORTADR (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_TXCTR (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_TXFIFO (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RAM_TXNONCE (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_RXCTRL1_RXBPF_LOCUR (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_SECCTRL0_RXFIFO_PROT (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_STATUS_ENC_BUSY (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_STATUS_PLL_LOCK (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_STATUS_RSSI_VALID (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_STATUS_TX_ACTIVE (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_STATUS_TX_UNDERFLOW (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_STATUS_XOSC_STABLE (macro definition) of file cc2420_registers.h is not documented. +warning: Member cc2420_strobe(const cc2420_t *dev, const uint8_t command) (function) of file cc2420_internal.h is not documented. +warning: Member CC2420_TXCTRL_PA_MASK (macro definition) of file cc2420_registers.h is not documented. +warning: Member CC2420_TXPOWER_DEFAULT (macro definition) of group drivers_cc2420 is not documented. +warning: Member CC2420_TXPOWER_MAX (macro definition) of group drivers_cc2420 is not documented. +warning: Member CC2420_TXPOWER_MIN (macro definition) of group drivers_cc2420 is not documented. +warning: Member CC2420_XOSCON_DELAY (macro definition) of file cc2420_internal.h is not documented. +warning: Member CC2538_AUTOCRC_LEN (macro definition) of file cc2538_rf.h is not documented. +warning: Member CC2538_CORR_VAL_MASK (macro definition) of file cc2538_rf.h is not documented. +warning: Member CC2538_CORR_VAL_MAX (macro definition) of file cc2538_rf.h is not documented. +warning: Member CC2538_CORR_VAL_MIN (macro definition) of file cc2538_rf.h is not documented. +warning: Member CC2538_CRC_BIT_MASK (macro definition) of file cc2538_rf.h is not documented. +warning: Member cc2538_ioc_pin_t (enumeration) of group cpu_cc2538_gpio is not documented. +warning: Member cc2538_ioc_sel_t (enumeration) of group cpu_cc2538_gpio is not documented. +warning: Member CC2538_MAX_FREQ (macro definition) of file cc2538_rf.h is not documented. +warning: Member CC2538_MIN_FREQ (macro definition) of file cc2538_rf.h is not documented. +warning: Member CC2538_PACKET_LENGTH_SIZE (macro definition) of file cc2538_rf.h is not documented. +warning: Member CC2538_RF_CHANNEL_DEFAULT (macro definition) of file cc2538_rf.h is not documented. +warning: Member CC2538_RF_FIFO_SIZE (macro definition) of file cc2538_rf.h is not documented. +warning: Member CC2538_RF_MAX_DATA_LEN (macro definition) of file cc2538_rf.h is not documented. +warning: Member CC2538_RX_FIFO_ADDR (macro definition) of file cc2538_rf_internal.h is not documented. +warning: Member CC2538_TX_FIFO_ADDR (macro definition) of file cc2538_rf_internal.h is not documented. +warning: Member CC3000_CS (macro definition) of file board.h is not documented. +warning: Member CC3000_EN (macro definition) of file board.h is not documented. +warning: Member CC3000_INT (macro definition) of file board.h is not documented. +warning: Member CC3000_SPI (macro definition) of file board.h is not documented. +warning: Member CCA_BACKDOOR_ENABLE (macro definition) of file board.h is not documented. +warning: Member CCA_BACKDOOR_ENABLE (macro definition) of group boards_common_remote is not documented. +warning: Member CC_CONF_INLINE (macro definition) of file cpu_conf.h is not documented. +warning: Member CC_CONF_NONNULL(...) (macro definition) of file cpu_conf.h is not documented. +warning: Member CC_CONF_USED (macro definition) of file cpu_conf.h is not documented. +warning: Member CC_CONF_WARN_UNUSED_RESULT (macro definition) of file cpu_conf.h is not documented. +warning: Member CCFG_BL_CONFIG_BL_ENABLE_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_BL_CONFIG_BL_ENABLE_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_BL_CONFIG_BL_LEVEL_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_BL_CONFIG_BL_LEVEL_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_BL_CONFIG_BL_PIN_NUMBER_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_BL_CONFIG_BL_PIN_NUMBER_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_BL_CONFIG_BOOTLOADER_ENABLE_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_BL_CONFIG_BOOTLOADER_ENABLE_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_CCFG_TAP_DAP_0_CPU_DAP_ENABLE_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_CCFG_TAP_DAP_0_CPU_DAP_ENABLE_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_CCFG_TAP_DAP_0_PWRPROF_TAP_ENABLE_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_CCFG_TAP_DAP_0_PWRPROF_TAP_ENABLE_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_CCFG_TAP_DAP_0_TEST_TAP_ENABLE_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_CCFG_TAP_DAP_0_TEST_TAP_ENABLE_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_CCFG_TI_OPTIONS_TI_FA_ENABLE_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_CCFG_TI_OPTIONS_TI_FA_ENABLE_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_ERASE_CONF_BANK_ERASE_DIS_N_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_ERASE_CONF_BANK_ERASE_DIS_N_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_ERASE_CONF_CHIP_ERASE_DIS_N_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_ERASE_CONF_CHIP_ERASE_DIS_N_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_EXT_LF_CLK_DIO_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_EXT_LF_CLK_RTC_INCREMENT_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_EXT_LF_CLK_RTC_INCREMENT_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_ALT_DCDC_DITHER_EN_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_ALT_DCDC_DITHER_EN_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_ALT_DCDC_IPEAK_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_ALT_DCDC_IPEAK_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_ALT_DCDC_VMIN_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_ALT_DCDC_VMIN_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_DELTA_IBIAS_INIT_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_DELTA_IBIAS_INIT_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_DELTA_IBIAS_OFFSET_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_DELTA_IBIAS_OFFSET_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_TCXO_MAX_START_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_TCXO_MAX_START_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_TCXO_TYPE_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_TCXO_TYPE_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_XOSC_MAX_START_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_1_XOSC_MAX_START_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_DCDC_ACTIVE_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_DCDC_ACTIVE_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_DCDC_RECHARGE_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_DCDC_RECHARGE_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_HF_COMP_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_HF_COMP_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_RTC_COMP_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_RTC_COMP_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_SCLK_LF_OPTION_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_SCLK_LF_OPTION_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDR_CAP_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDR_CAP_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDR_EXT_LOAD (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDR_EXT_LOAD_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDR_EXT_LOAD_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDR_TRIM_SLEEP_DELTA_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDR_TRIM_SLEEP_DELTA_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDR_TRIM_SLEEP_TC_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDR_TRIM_SLEEP_TC_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDS_BOD_LEVEL (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDS_BOD_LEVEL_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_VDDS_BOD_LEVEL_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_XOSC_CAPARRAY_DELTA_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_XOSC_CAPARRAY_DELTA_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_XOSC_CAP_MOD_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_XOSC_CAP_MOD_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_XOSC_FREQ_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_MODE_CONF_XOSC_FREQ_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DISABLE_FLAGS_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DISABLE_FLAGS_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_ALT_DCDC_SETTING (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_ALT_DCDC_SETTING_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_ALT_DCDC_SETTING_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_GPRAM_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_GPRAM_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_TCXO_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_TCXO_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_XOSC_OVR_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_DIS_XOSC_OVR_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_SIZE_OF_CCFG_m (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCFG_SIZE_AND_DIS_FLAGS_SIZE_OF_CCFG_s (macro definition) of file cc26xx_cc13xx_ccfg.h is not documented. +warning: Member CCM_ERR_INVALID_CBC_MAC (macro definition) of file ccm.h is not documented. +warning: Member CCM_ERR_INVALID_DATA_LENGTH (macro definition) of file ccm.h is not documented. +warning: Member CCM_ERR_INVALID_LENGTH_ENCODING (macro definition) of file ccm.h is not documented. +warning: Member CCM_ERR_INVALID_MAC_LENGTH (macro definition) of file ccm.h is not documented. +warning: Member CCM_ERR_INVALID_NONCE_LENGTH (macro definition) of file ccm.h is not documented. +warning: Member CCS811_I2C_ADDRESS_2 (macro definition) of file ccs811.h is not documented. +warning: Member CCS811_I2C (macro definition) of file board.h is not documented. +warning: Member CCS811_PARAM_I2C_ADDR (macro definition) of file board.h is not documented. +warning: Member CCS811_PARAM_I2C_ADDR (macro definition) of file ccs811_params.h is not documented. +warning: Member CCS811_PARAM_I2C_DEV (macro definition) of file board.h is not documented. +warning: Member CCS811_PARAM_I2C_DEV (macro definition) of file ccs811_params.h is not documented. +warning: Member CCS811_PARAM_INT_MODE (macro definition) of file board.h is not documented. +warning: Member CCS811_PARAM_INT_MODE (macro definition) of file ccs811_params.h is not documented. +warning: Member CCS811_PARAM_INT_PIN (macro definition) of file board.h is not documented. +warning: Member CCS811_PARAM_INT_PIN (macro definition) of file ccs811_params.h is not documented. +warning: Member CCS811_PARAM_MODE (macro definition) of file ccs811_params.h is not documented. +warning: Member CCS811_PARAM_RESET_PIN (macro definition) of file board.h is not documented. +warning: Member CCS811_PARAM_RESET_PIN (macro definition) of file ccs811_params.h is not documented. +warning: Member CCS811_PARAMS (macro definition) of file ccs811_params.h is not documented. +warning: Member CCS811_PARAM_WAKE_PIN (macro definition) of file board.h is not documented. +warning: Member CCS811_PARAM_WAKE_PIN (macro definition) of file ccs811_params.h is not documented. +warning: Member CCS811_PIC_ADDR (macro definition) of file board.h is not documented. +warning: Member CCS811_PIC_EN_BIT (macro definition) of file board.h is not documented. +warning: Member CCS811_PIC_WAKE_BIT (macro definition) of file board.h is not documented. +warning: Member CCS811_REG_ALG_RESULT_DATA (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_APP_DATA (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_APP_ERASE (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_APP_START (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_APP_VERIFY (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_BASELINE (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_ENV_DATA (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_ERROR_ID (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_FW_APP_VER (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_FW_BOOT_VER (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_HW_ID (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_HW_VER (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_MEAS_MODE (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_NTC (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_RAW_DATA (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_STATUS (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_SW_RESET (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_REG_THRESHOLDS (macro definition) of file ccs811_regs.h is not documented. +warning: Member CCS811_SAUL_INFO (macro definition) of file ccs811_params.h is not documented. +warning: Member CDEFAULT (macro definition) of file ColorTextColors.h is not documented. +warning: Member CDL_SORT2(list, cmp, prev, next) (macro definition) of group sys_ut is not documented. +warning: Member CDL_SORT(list, cmp) (macro definition) of group sys_ut is not documented. +warning: Member CGREEN (macro definition) of file ColorTextColors.h is not documented. +warning: Member CHARGING_ACTIVE (macro definition) of file board.h is not documented. +warning: Member CIPHER_ERR_DEC_FAILED (macro definition) of file ciphers.h is not documented. +warning: Member CIPHER_ERR_ENC_FAILED (macro definition) of file ciphers.h is not documented. +warning: Member CIPHER_ERR_INVALID_KEY_SIZE (macro definition) of file ciphers.h is not documented. +warning: Member CIPHER_ERR_INVALID_LENGTH (macro definition) of file ciphers.h is not documented. +warning: Member cipher_id_t (variable) of file ciphers.h is not documented. +warning: Member CIPHER_MAX_BLOCK_SIZE (macro definition) of file ciphers.h is not documented. +warning: Member CLIC_BASE_ADDR (macro definition) of file cpu_conf.h is not documented. +warning: Member clic_clicint_t (variable) of file clic.h is not documented. +warning: Member CLIC_NUM_INTERRUPTS (macro definition) of file cpu_conf.h is not documented. +warning: Member CLK16 (macro definition) of file periph_conf.h is not documented. +warning: Member CLK1 (macro definition) of file periph_conf.h is not documented. +warning: Member CLK40 (macro definition) of file periph_conf.h is not documented. +warning: Member CLK50 (macro definition) of file periph_conf.h is not documented. +warning: Member CLK80 (macro definition) of file periph_conf.h is not documented. +warning: Member CLK_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member clk_div_config[] (variable) of file periph_conf.h is not documented. +warning: Member CLK_DIV_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member CLKLOADCTL_LOADDONE (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member CLKLOADCTL_LOADDONE (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member CLK (macro definition) of file msp430_regs.h is not documented. +warning: Member clk_mux_config[] (variable) of file periph_conf.h is not documented. +warning: Member CLK_MUX_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_8MHZ (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_AHB (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CLOCK_APB1 (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CLOCK_APB2 (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CLOCK_BUSCLOCK (macro definition) of file periph_conf_common.h is not documented. +warning: Member CLOCK_BUSCLOCK (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_CMCLK (macro definition) of file periph_conf.h is not documented. +warning: Member clock_config (variable) of file periph_conf_common.h is not documented. +warning: Member clock_config (variable) of file periph_conf.h is not documented. +warning: Member CLOCK_CORECLOCK (macro definition) of file board.h is not documented. +warning: Member CLOCK_CORECLOCK (macro definition) of file cfg_clk_default.h is not documented. +warning: Member CLOCK_CORECLOCK (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CLOCK_CORECLOCK (macro definition) of file clk_conf.h is not documented. +warning: Member CLOCK_CORECLOCK (macro definition) of file periph_conf_atmega_common.h is not documented. +warning: Member CLOCK_CORECLOCK (macro definition) of file periph_conf_common.h is not documented. +warning: Member CLOCK_CORECLOCK (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_CORECLOCK (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member CLOCK_CORE_DIV (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_EXTAHB_DIV (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_EXTAHB (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_EXT_OSC (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_FWS (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_HFCLK (macro definition) of file cfg_clock_16_0.h is not documented. +warning: Member CLOCK_HFCLK (macro definition) of file cfg_clock_16_1.h is not documented. +warning: Member CLOCK_HFCLK (macro definition) of file cfg_clock_32_0.h is not documented. +warning: Member CLOCK_HFCLK (macro definition) of file cfg_clock_32_1.h is not documented. +warning: Member CLOCK_HFCLK (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_HF (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_IO (macro definition) of file cfg_clk_default.h is not documented. +warning: Member CLOCK_LFA (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_LFB (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_LFCLK (macro definition) of file cfg_clock_16_0.h is not documented. +warning: Member CLOCK_LFCLK (macro definition) of file cfg_clock_16_1.h is not documented. +warning: Member CLOCK_LFCLK (macro definition) of file cfg_clock_32_0.h is not documented. +warning: Member CLOCK_LFCLK (macro definition) of file cfg_clock_32_1.h is not documented. +warning: Member CLOCK_LFCLK (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_LFE (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_MCGFLLCLK (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_MCGIRCLK (macro definition) of file periph_conf_common.h is not documented. +warning: Member CLOCK_MCGIRCLK (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_OSC32K (macro definition) of file cfg_clk_default.h is not documented. +warning: Member CLOCK_OSCERCLK (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_OSC (macro definition) of file cfg_clk_default.h is not documented. +warning: Member CLOCK_PCLK (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_PLL_DIV (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CLOCK_PLL_DIV (macro definition) of file periph_conf_common.h is not documented. +warning: Member CLOCK_PLL_DIV (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_PLL_INPUT_CLOCK (macro definition) of file clk_conf.h is not documented. +warning: Member CLOCK_PLL_MUL (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CLOCK_PLL_MUL (macro definition) of file periph_conf_common.h is not documented. +warning: Member CLOCK_PLL_MUL (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_PLL_OUT (macro definition) of file clk_conf.h is not documented. +warning: Member CLOCK_PLLQ (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CLOCK_PLL_REFR (macro definition) of file clk_conf.h is not documented. +warning: Member CLOCK_PLL_SRC (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CLOCK_PLL_VCO (macro definition) of file clk_conf.h is not documented. +warning: Member CLOCK_RADIOXTAL (macro definition) of file periph_conf_common.h is not documented. +warning: Member CLOCK_RADIOXTAL (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_SCLK_XTAL (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_SOURCE (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_USE_PLL (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CLOCK_USE_PLL (macro definition) of file periph_conf_common.h is not documented. +warning: Member CLOCK_USE_PLL (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_USE_XOSC32_DFLL (macro definition) of file periph_conf.h is not documented. +warning: Member CLOCK_XOSC32K (macro definition) of file periph_conf.h is not documented. +warning: Member CMD_BFC (macro definition) of file enc28j60_regs.h is not documented. +warning: Member CMD_BFS (macro definition) of file enc28j60_regs.h is not documented. +warning: Member CMD_FLUSH_RX (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMD_FLUSH_TX (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMD_NOOP (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMD_RBM (macro definition) of file enc28j60_regs.h is not documented. +warning: Member CMD_RCR (macro definition) of file enc28j60_regs.h is not documented. +warning: Member CMD_READ (macro definition) of file w5100_regs.h is not documented. +warning: Member CMD_REUSE_TX_PL (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMD_RF_NOP (macro definition) of file at86rf215_registers.h is not documented. +warning: Member CMD_RF_RESET (macro definition) of file at86rf215_registers.h is not documented. +warning: Member CMD_RF_RX (macro definition) of file at86rf215_registers.h is not documented. +warning: Member CMD_RF_SLEEP (macro definition) of file at86rf215_registers.h is not documented. +warning: Member CMD_RF_TRXOFF (macro definition) of file at86rf215_registers.h is not documented. +warning: Member CMD_RF_TX (macro definition) of file at86rf215_registers.h is not documented. +warning: Member CMD_RF_TXPREP (macro definition) of file at86rf215_registers.h is not documented. +warning: Member CMD_R_REGISTER (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMD_R_RX_PAYLOAD (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMD_R_RX_PL_WID (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMD_SRC (macro definition) of file enc28j60_regs.h is not documented. +warning: Member CMD_W_ACK_PAYLOAD (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMD_WBM (macro definition) of file enc28j60_regs.h is not documented. +warning: Member CMD_WCR (macro definition) of file enc28j60_regs.h is not documented. +warning: Member CMD_W_REGISTER (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMD_WRITE (macro definition) of file w5100_regs.h is not documented. +warning: Member CMD_W_TX_PAYLOAD (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMD_W_TX_PAYLOAD_NOACK (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CMU_HFXOINIT (macro definition) of file periph_conf.h is not documented. +warning: Member CMU_LFXOINIT (macro definition) of file periph_conf.h is not documented. +warning: Member COAP_BLOCKWISE_MORE_OFF (macro definition) of group net_coap is not documented. +warning: Member COAP_BLOCKWISE_NUM_OFF (macro definition) of group net_coap is not documented. +warning: Member COAP_BLOCKWISE_SZX_MASK (macro definition) of group net_coap is not documented. +warning: Member COAP_BLOCKWISE_SZX_MAX (macro definition) of group net_coap is not documented. +warning: Member COAP_CLASS_CLIENT_FAILURE (macro definition) of group net_coap is not documented. +warning: Member COAP_CLASS_REQ (macro definition) of group net_coap is not documented. +warning: Member COAP_CLASS_SERVER_FAILURE (macro definition) of group net_coap is not documented. +warning: Member COAP_CLASS_SUCCESS (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_204 (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_205 (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_231 (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_404 (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_BAD_GATEWAY (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_BAD_OPTION (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_BAD_REQUEST (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_CHANGED (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_CONFLICT (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_CONTENT (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_CONTINUE (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_CREATED (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_DELETED (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_EMPTY (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_FORBIDDEN (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_GATEWAY_TIMEOUT (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_INTERNAL_SERVER_ERROR (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_METHOD_NOT_ALLOWED (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_NOT_ACCEPTABLE (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_NOT_IMPLEMENTED (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_PATH_NOT_FOUND (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_PRECONDITION_FAILED (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_PROXYING_NOT_SUPPORTED (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_REQUEST_ENTITY_INCOMPLETE (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_REQUEST_ENTITY_TOO_LARGE (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_SERVICE_UNAVAILABLE (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_TOO_MANY_REQUESTS (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_UNAUTHORIZED (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_UNPROCESSABLE_ENTITY (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_UNSUPPORTED_CONTENT_FORMAT (macro definition) of group net_coap is not documented. +warning: Member COAP_CODE_VALID (macro definition) of group net_coap is not documented. +warning: Member COAP_DEFAULT_LEISURE (macro definition) of group net_coap is not documented. +warning: Member COAP_DELETE (macro definition) of group net_nanocoap is not documented. +warning: Member COAP_FETCH (macro definition) of group net_nanocoap is not documented. +warning: Member COAP_FORMAT_CBOR (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_EXI (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_JSON (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_JSON_PATCH_JSON (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_LINK (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_MERGE_PATCH_JSON (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_OCTET (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_SENML_CBOR (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_SENML_EXI (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_SENML_JSON (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_SENML_XML (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_SENSML_CBOR (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_SENSML_EXI (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_SENSML_JSON (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_SENSML_XML (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_TEXT (macro definition) of group net_coap is not documented. +warning: Member COAP_FORMAT_XML (macro definition) of group net_coap is not documented. +warning: Member COAP_GET (macro definition) of group net_nanocoap is not documented. +warning: Member COAP_IPATCH (macro definition) of group net_nanocoap is not documented. +warning: Member COAP_METHOD_DELETE (macro definition) of group net_coap is not documented. +warning: Member COAP_METHOD_FETCH (macro definition) of group net_coap is not documented. +warning: Member COAP_METHOD_GET (macro definition) of group net_coap is not documented. +warning: Member COAP_METHOD_IPATCH (macro definition) of group net_coap is not documented. +warning: Member COAP_METHOD_PATCH (macro definition) of group net_coap is not documented. +warning: Member COAP_METHOD_POST (macro definition) of group net_coap is not documented. +warning: Member COAP_METHOD_PUT (macro definition) of group net_coap is not documented. +warning: Member COAP_NSTART (macro definition) of group net_coap is not documented. +warning: Member COAP_OBS_DEREGISTER (macro definition) of group net_coap is not documented. +warning: Member COAP_OBS_REGISTER (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_ACCEPT (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_BLOCK1 (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_BLOCK2 (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_CONTENT_FORMAT (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_ETAG (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_IF_MATCH (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_IF_NONE_MATCH (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_LOCATION_PATH (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_LOCATION_QUERY (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_MAX_AGE (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_OBSERVE (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_PROXY_SCHEME (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_PROXY_URI (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_URI_HOST (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_URI_PATH (macro definition) of group net_coap is not documented. +warning: Member COAP_OPT_URI_QUERY (macro definition) of group net_coap is not documented. +warning: Member COAP_PATCH (macro definition) of group net_nanocoap is not documented. +warning: Member COAP_POST (macro definition) of group net_nanocoap is not documented. +warning: Member COAP_PUT (macro definition) of group net_nanocoap is not documented. +warning: Member COAP_TOKEN_LENGTH_MAX (macro definition) of group net_coap is not documented. +warning: Member COAP_TYPE_ACK (macro definition) of group net_coap is not documented. +warning: Member COAP_TYPE_CON (macro definition) of group net_coap is not documented. +warning: Member COAP_TYPE_NON (macro definition) of group net_coap is not documented. +warning: Member COAP_TYPE_RST (macro definition) of group net_coap is not documented. +warning: Member COMPASS_ASAX_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member COMPASS_ASAY_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member COMPASS_ASAZ_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member COMPASS_ASTC_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member COMPASS_CNTL_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member COMPASS_DATA_START_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member COMPASS_ST1_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member COMPASS_ST2_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member COMPASS_WHOAMI_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member CONFIG_AT86RF215_BATMON_THRESHOLD (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_CHANNEL (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_MR_FSK_FEC (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_MR_FSK_MOD_IDX (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_MR_FSK_MORD (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_MR_FSK_SRATE (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_MR_OFDM_MCS (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_MR_OFDM_OPT (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_MR_OQPSK_CHIPS (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_MR_OQPSK_RATE (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_OQPSK_RATE (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_PHY_MODE (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_DEFAULT_SUBGHZ_CHANNEL (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_AT86RF215_RPC_EN (macro definition) of group drivers_at86rf215_config is not documented. +warning: Member CONFIG_BOARD_HAS_HSE (macro definition) of file periph_conf_common.h is not documented. +warning: Member CONFIG_BOARD_HAS_HSE (macro definition) of file periph_conf.h is not documented. +warning: Member CONFIG_BOARD_HAS_HXTAL (macro definition) of file periph_conf.h is not documented. +warning: Member CONFIG_BOARD_HAS_LSE (macro definition) of file periph_conf_common.h is not documented. +warning: Member CONFIG_BOARD_HAS_LSE (macro definition) of file periph_conf.h is not documented. +warning: Member CONFIG_CC2538_RF_OBS_0 (macro definition) of file cc2538_rf.h is not documented. +warning: Member CONFIG_CC2538_RF_OBS_1 (macro definition) of file cc2538_rf.h is not documented. +warning: Member CONFIG_CC2538_RF_OBS_2 (macro definition) of file cc2538_rf.h is not documented. +warning: Member CONFIG_CC2538_RF_OBS_SIG_0_PCX (macro definition) of file board.h is not documented. +warning: Member CONFIG_CC2538_RF_OBS_SIG_0_PCX (macro definition) of file cc2538_rf.h is not documented. +warning: Member CONFIG_CC2538_RF_OBS_SIG_1_PCX (macro definition) of file board.h is not documented. +warning: Member CONFIG_CC2538_RF_OBS_SIG_1_PCX (macro definition) of file cc2538_rf.h is not documented. +warning: Member CONFIG_CC2538_RF_OBS_SIG_2_PCX (macro definition) of file board.h is not documented. +warning: Member CONFIG_CC2538_RF_OBS_SIG_2_PCX (macro definition) of file cc2538_rf.h is not documented. +warning: Member CONFIG_CLOCK_APB1_DIV (macro definition) of file cfg_clock_default_100.h is not documented. +warning: Member CONFIG_CLOCK_APB1_DIV (macro definition) of file cfg_clock_default_120.h is not documented. +warning: Member CONFIG_CLOCK_APB1_DIV (macro definition) of file cfg_clock_default_180.h is not documented. +warning: Member CONFIG_CLOCK_APB1_DIV (macro definition) of file cfg_clock_default_216.h is not documented. +warning: Member CONFIG_CLOCK_APB1_DIV (macro definition) of file cfg_clock_default_84.h is not documented. +warning: Member CONFIG_CLOCK_APB1_DIV (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_APB2_DIV (macro definition) of file cfg_clock_default_100.h is not documented. +warning: Member CONFIG_CLOCK_APB2_DIV (macro definition) of file cfg_clock_default_120.h is not documented. +warning: Member CONFIG_CLOCK_APB2_DIV (macro definition) of file cfg_clock_default_180.h is not documented. +warning: Member CONFIG_CLOCK_APB2_DIV (macro definition) of file cfg_clock_default_216.h is not documented. +warning: Member CONFIG_CLOCK_APB2_DIV (macro definition) of file cfg_clock_default_84.h is not documented. +warning: Member CONFIG_CLOCK_APB2_DIV (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_APB3_DIV (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_DESIRED_FREQUENCY (macro definition) of file clk_conf.h is not documented. +warning: Member CONFIG_CLOCK_HFROSC_DIV (macro definition) of file clk_conf.h is not documented. +warning: Member CONFIG_CLOCK_HFROSC_TRIM (macro definition) of file clk_conf.h is not documented. +warning: Member CONFIG_CLOCK_HSE (macro definition) of file cfg_clock_common_fx_gx_mp1.h is not documented. +warning: Member CONFIG_CLOCK_HSE (macro definition) of file cfg_clock_common_lx_u5_wx.h is not documented. +warning: Member CONFIG_CLOCK_HSE (macro definition) of file cfg_clock_common_lx_wx.h is not documented. +warning: Member CONFIG_CLOCK_HSE (macro definition) of file periph_conf_common.h is not documented. +warning: Member CONFIG_CLOCK_HSE (macro definition) of file periph_conf.h is not documented. +warning: Member CONFIG_CLOCK_HSI (macro definition) of file cfg_clock_common_fx_gx_mp1.h is not documented. +warning: Member CONFIG_CLOCK_HSI (macro definition) of file cfg_clock_common_lx_u5_wx.h is not documented. +warning: Member CONFIG_CLOCK_HSI (macro definition) of file cfg_clock_common_lx_wx.h is not documented. +warning: Member CONFIG_CLOCK_MCU_DIV (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_MSI (macro definition) of file cfg_clock_common_lx_u5_wx.h is not documented. +warning: Member CONFIG_CLOCK_MSI (macro definition) of file cfg_clock_common_lx_wx.h is not documented. +warning: Member CONFIG_CLOCK_PLL_DIV (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_PLL_F (macro definition) of file clk_conf.h is not documented. +warning: Member CONFIG_CLOCK_PLL_M (macro definition) of file cfg_clock_default_100.h is not documented. +warning: Member CONFIG_CLOCK_PLL_M (macro definition) of file cfg_clock_default_120.h is not documented. +warning: Member CONFIG_CLOCK_PLL_M (macro definition) of file cfg_clock_default_180.h is not documented. +warning: Member CONFIG_CLOCK_PLL_M (macro definition) of file cfg_clock_default_216.h is not documented. +warning: Member CONFIG_CLOCK_PLL_M (macro definition) of file cfg_clock_default_84.h is not documented. +warning: Member CONFIG_CLOCK_PLL_M (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_PLL_M (macro definition) of file periph_conf.h is not documented. +warning: Member CONFIG_CLOCK_PLL_MUL (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_PLL_N (macro definition) of file cfg_clock_default_100.h is not documented. +warning: Member CONFIG_CLOCK_PLL_N (macro definition) of file cfg_clock_default_120.h is not documented. +warning: Member CONFIG_CLOCK_PLL_N (macro definition) of file cfg_clock_default_180.h is not documented. +warning: Member CONFIG_CLOCK_PLL_N (macro definition) of file cfg_clock_default_216.h is not documented. +warning: Member CONFIG_CLOCK_PLL_N (macro definition) of file cfg_clock_default_84.h is not documented. +warning: Member CONFIG_CLOCK_PLL_N (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_PLL_P (macro definition) of file cfg_clock_default_100.h is not documented. +warning: Member CONFIG_CLOCK_PLL_P (macro definition) of file cfg_clock_default_120.h is not documented. +warning: Member CONFIG_CLOCK_PLL_P (macro definition) of file cfg_clock_default_180.h is not documented. +warning: Member CONFIG_CLOCK_PLL_P (macro definition) of file cfg_clock_default_216.h is not documented. +warning: Member CONFIG_CLOCK_PLL_P (macro definition) of file cfg_clock_default_84.h is not documented. +warning: Member CONFIG_CLOCK_PLL_P (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_PLL_PREDIV (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_PLL_Q (macro definition) of file cfg_clock_default_100.h is not documented. +warning: Member CONFIG_CLOCK_PLL_Q (macro definition) of file cfg_clock_default_120.h is not documented. +warning: Member CONFIG_CLOCK_PLL_Q (macro definition) of file cfg_clock_default_180.h is not documented. +warning: Member CONFIG_CLOCK_PLL_Q (macro definition) of file cfg_clock_default_216.h is not documented. +warning: Member CONFIG_CLOCK_PLL_Q (macro definition) of file cfg_clock_default_84.h is not documented. +warning: Member CONFIG_CLOCK_PLL_Q (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_PLL_Q (macro definition) of file clk_conf.h is not documented. +warning: Member CONFIG_CLOCK_PLL_R (macro definition) of file cfg_clock_default_100.h is not documented. +warning: Member CONFIG_CLOCK_PLL_R (macro definition) of file cfg_clock_default_180.h is not documented. +warning: Member CONFIG_CLOCK_PLL_R (macro definition) of file cfg_clock_default_216.h is not documented. +warning: Member CONFIG_CLOCK_PLL_R (macro definition) of file cfg_clock_default_84.h is not documented. +warning: Member CONFIG_CLOCK_PLL_R (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_PLL_R (macro definition) of file clk_conf.h is not documented. +warning: Member CONFIG_CLOCK_PLL_SRC_HSE (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_PLL_SRC_HSI (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_CLOCK_PLL_SRC_MSI (macro definition) of file cfg_clock_default.h is not documented. +warning: Member CONFIG_GNRC_PKTBUF_SIZE (macro definition) of file cpu_conf.h is not documented. +warning: Member CONFIG_GNRC_RPL_DAO_ACK_DELAY (macro definition) of group net_gnrc_rpl is not documented. +warning: Member CONFIG_GNRC_RPL_DAO_SEND_RETRIES (macro definition) of group net_gnrc_rpl is not documented. +warning: Member CONFIG_GNRC_RPL_DEFAULT_DIO_INTERVAL_DOUBLINGS (macro definition) of group net_gnrc_rpl is not documented. +warning: Member CONFIG_GNRC_RPL_DEFAULT_DIO_INTERVAL_MIN (macro definition) of group net_gnrc_rpl is not documented. +warning: Member CONFIG_GNRC_RPL_DEFAULT_DIO_REDUNDANCY_CONSTANT (macro definition) of group net_gnrc_rpl is not documented. +warning: Member CONFIG_GNRC_RPL_DEFAULT_LIFETIME (macro definition) of group net_gnrc_rpl is not documented. +warning: Member CONFIG_GNRC_RPL_LIFETIME_UNIT (macro definition) of group net_gnrc_rpl is not documented. +warning: Member CONFIG_PTHREAD_REAPER_BASE_STACKSIZE (macro definition) of file cpu_conf.h is not documented. +warning: Member CONFIG_USE_CLOCK_HFROSC (macro definition) of file clk_conf.h is not documented. +warning: Member CONFIG_USE_CLOCK_HFROSC_PLL (macro definition) of file clk_conf.h is not documented. +warning: Member CONFIG_USE_CLOCK_HFXOSC (macro definition) of file clk_conf.h is not documented. +warning: Member CONFIG_USE_CLOCK_HFXOSC_PLL (macro definition) of file clk_conf.h is not documented. +warning: Member CONFIG_USE_CLOCK_PLL (macro definition) of file cfg_clock_common_fx_gx_mp1.h is not documented. +warning: Member CONFIG_USE_CLOCK_PLL (macro definition) of file cfg_clock_common_lx_u5_wx.h is not documented. +warning: Member CONFIG_USE_CLOCK_PLL (macro definition) of file cfg_clock_common_lx_wx.h is not documented. +warning: Member CONFIG_ZTIMER_LPTIMER_BLOCK_PM_MODE (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_LPTIMER_DEV (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_LPTIMER_FREQ (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_LPTIMER_WIDTH (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_USEC_ADJUST_SET (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_USEC_ADJUST_SET (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member CONFIG_ZTIMER_USEC_ADJUST_SLEEP (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_USEC_ADJUST_SLEEP (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member CONFIG_ZTIMER_USEC_DEV (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_USEC_DEV (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member CONFIG_ZTIMER_USEC_DEV (macro definition) of group boards_common_iotlab is not documented. +warning: Member CONFIG_ZTIMER_USEC_FREQ (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_USEC_FREQ (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member CONFIG_ZTIMER_USEC_MIN (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_USEC_MIN (macro definition) of group boards_common_iotlab is not documented. +warning: Member CONFIG_ZTIMER_USEC_TYPE (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_USEC_TYPE (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member CONFIG_ZTIMER_USEC_TYPE (macro definition) of group boards_common_iotlab is not documented. +warning: Member CONFIG_ZTIMER_USEC_TYPE_PERIPH_TIMER (macro definition) of file config.h is not documented. +warning: Member CONFIG_ZTIMER_USEC_WIDTH (macro definition) of file board.h is not documented. +warning: Member CONFIG_ZTIMER_USEC_WIDTH (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member CORETEMP_ADC (macro definition) of file board.h is not documented. +warning: Member CPU_ATMEGA_CLK_SCALE_INIT (macro definition) of file board.h is not documented. +warning: Member CPU_ATMEGA_CLK_SCALE_INIT (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member cpu_clock_init(int) (function) of group cpu_lm4f120 is not documented. +warning: Member CPU_DEFAULT_IRQ_PRIO (macro definition) of file cpu_conf.h is not documented. +warning: Member CPU_DEFAULT_IRQ_PRIO (macro definition) of file cpu_conf_kinetis.h is not documented. +warning: Member CPU_DEFAULT_IRQ_PRIO (macro definition) of group cpu_nrf52 is not documented. +warning: Member CPU_EBI_H (macro definition) of file cpu_ebi.h is not documented. +warning: Member CPU_FLASH_BASE (macro definition) of file cpu_conf.h is not documented. +warning: Member CPU_FLASH_BASE (macro definition) of file cpu_conf_kinetis.h is not documented. +warning: Member CPU_FLASH_BASE (macro definition) of group cpu_cc26xx_cc13xx is not documented. +warning: Member CPU_FLASH_BASE (macro definition) of group cpu_lm4f120 is not documented. +warning: Member CPU_FLASH_BASE (macro definition) of group cpu_lpc1768 is not documented. +warning: Member CPU_FLASH_BASE (macro definition) of group cpu_nrf51 is not documented. +warning: Member CPU_FLASH_BASE (macro definition) of group cpu_nrf52 is not documented. +warning: Member CPU_FLASH_RWWEE_BASE (macro definition) of file cpu_conf.h is not documented. +warning: Member CPU_HAS_BITBAND (macro definition) of file cpu_conf.h is not documented. +warning: Member CPU_HAS_BITBAND (macro definition) of group cpu_lm4f120 is not documented. +warning: Member CPU_HAS_BITBAND (macro definition) of group cpu_lpc1768 is not documented. +warning: Member CPUID_LEN (macro definition) of file periph_cpu_common.h is not documented. +warning: Member CPUID_LEN (macro definition) of file periph_cpu.h is not documented. +warning: Member cpu_int_lvl_t (enumeration) of file periph_cpu.h is not documented. +warning: Member CPU_IRQ_NUMOF (macro definition) of file cpu_conf.h is not documented. +warning: Member CPU_IRQ_NUMOF (macro definition) of file cpu_conf_kinetis.h is not documented. +warning: Member CPU_IRQ_NUMOF (macro definition) of group cpu_cc26xx_cc13xx is not documented. +warning: Member CPU_IRQ_NUMOF (macro definition) of group cpu_lm4f120 is not documented. +warning: Member CPU_IRQ_NUMOF (macro definition) of group cpu_lpc1768 is not documented. +warning: Member CPU_IRQ_NUMOF (macro definition) of group cpu_nrf51 is not documented. +warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_MISOOUT_AF (macro definition) of group cpu_stm32_wl_debug_subghz_spi is not documented. +warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_MISOOUT (macro definition) of group cpu_stm32_wl_debug_subghz_spi is not documented. +warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_MOSIOUT_AF (macro definition) of group cpu_stm32_wl_debug_subghz_spi is not documented. +warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_MOSIOUT (macro definition) of group cpu_stm32_wl_debug_subghz_spi is not documented. +warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_NSSOUT_AF (macro definition) of group cpu_stm32_wl_debug_subghz_spi is not documented. +warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_NSSOUT (macro definition) of group cpu_stm32_wl_debug_subghz_spi is not documented. +warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_SCKOUT_AF (macro definition) of group cpu_stm32_wl_debug_subghz_spi is not documented. +warning: Member CPU_STM32WL_SUBGHZSPI_DEBUG_SCKOUT (macro definition) of group cpu_stm32_wl_debug_subghz_spi is not documented. +warning: Member CRCO (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member CRED (macro definition) of file ColorTextColors.h is not documented. +warning: Member critical_enter() (macro definition) of file irq_arch_common.h is not documented. +warning: Member critical_enter_var(m) (macro definition) of file irq_arch_common.h is not documented. +warning: Member critical_exit() (macro definition) of file irq_arch_common.h is not documented. +warning: Member critical_exit_var(m) (macro definition) of file irq_arch_common.h is not documented. +warning: Member CS_PIN_MASK (macro definition) of file board.h is not documented. +warning: Member CST816S_PARAM_I2C_ADDR (macro definition) of file board.h is not documented. +warning: Member CST816S_PARAM_I2C_ADDR (macro definition) of file cst816s_params.h is not documented. +warning: Member CST816S_PARAM_I2C_DEV (macro definition) of file board.h is not documented. +warning: Member CST816S_PARAM_I2C_DEV (macro definition) of file cst816s_params.h is not documented. +warning: Member CST816S_PARAM_IRQ_FLANK (macro definition) of file board.h is not documented. +warning: Member CST816S_PARAM_IRQ_FLANK (macro definition) of file cst816s_params.h is not documented. +warning: Member CST816S_PARAM_IRQ (macro definition) of file board.h is not documented. +warning: Member CST816S_PARAM_IRQ (macro definition) of file cst816s_params.h is not documented. +warning: Member CST816S_PARAM_RESET (macro definition) of file board.h is not documented. +warning: Member CST816S_PARAM_RESET (macro definition) of file cst816s_params.h is not documented. +warning: Member CST816S_PARAMS (macro definition) of file cst816s_params.h is not documented. +warning: Member CST816S_RESET_DURATION_HIGH (macro definition) of file cst816s_internal.h is not documented. +warning: Member CST816S_RESET_DURATION_LOW (macro definition) of file cst816s_internal.h is not documented. +warning: Member CT_COEF_IF (macro definition) of file tcs37727-internal.h is not documented. +warning: Member CT_OFFSET_IF (macro definition) of file tcs37727-internal.h is not documented. +warning: Member CTRL_REG0_DEFAULT (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member dac_channel_config[] (variable) of file periph_conf.h is not documented. +warning: Member DAC_CLOCK (macro definition) of file periph_conf.h is not documented. +warning: Member dac_config[] (variable) of file periph_conf.h is not documented. +warning: Member DAC_DDS_PARAM_DAC (macro definition) of file dac_dds_params.h is not documented. +warning: Member DAC_DDS_PARAMS (macro definition) of file dac_dds_params.h is not documented. +warning: Member DAC_DDS_PARAM_TIMER_HZ (macro definition) of file dac_dds_params.h is not documented. +warning: Member DAC_DDS_PARAM_TIMER (macro definition) of file dac_dds_params.h is not documented. +warning: Member DAC_DEV_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member DAC_GPIOS (macro definition) of file periph_conf.h is not documented. +warning: Member DAC_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member DAC_VREF (macro definition) of file periph_conf.h is not documented. +warning: Member DATA_BASE (macro definition) of file bmx280_internals.h is not documented. +warning: Member DATA_RESPONSE_ACCEPTED(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member DATA_RESPONSE_CRC_ERR(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member DATA_RESPONSE_IS_VALID(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member DATA_RESPONSE_WRITE_ERR(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member DCF77_PARAM_PIN (macro definition) of file dcf77_params.h is not documented. +warning: Member DCF77_PARAM_PULL (macro definition) of file dcf77_params.h is not documented. +warning: Member DCF77_PARAMS (macro definition) of file dcf77_params.h is not documented. +warning: Member DDI_0_OSC_CTL0_ACLK_REF_SRC_SEL_RCOSC_HF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_ACLK_REF_SRC_SEL_RCOSC_LF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_ACLK_REF_SRC_SEL_RCOSC_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_ACLK_REF_SRC_SEL_XOSC_HF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_ACLK_REF_SRC_SEL_XOSC_LF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_ACLK_TDC_SRC_SEL (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_ACLK_TDC_SRC_SEL_RCOSC_HF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_ACLK_TDC_SRC_SEL_RCOSC_LF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_ACLK_TDC_SRC_SEL_RCOSC_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_ACLK_TDC_SRC_SEL_XOSC_HF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_BYPASS_RCOSC_LF_CLK_QUAL (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_BYPASS_RCOSC_LF_CLK_QUAL (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_BYPASS_XOSC_LF_CLK_QUAL (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_BYPASS_XOSC_LF_CLK_QUAL (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_CLK_DCDC_SRC_SEL_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_CLK_LOSS_EN (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_DOUBLER_RESET_DURATION (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_DOUBLER_START_DURATION (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_DOUBLER_START_DURATION_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_HPOSC_MODE_EN (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_RCOSC_LF_TRIMMED (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_SCLK_HF_SRC_SEL_RCOSC (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_SCLK_HF_SRC_SEL_s (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_SCLK_HF_SRC_SEL_XOSC (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_HF_RCOSC (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_HF_XOSC (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_LF_RCOSC (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_LF_XOSC (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_SCLK_LF_SRC_SEL_s (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_XOSC_HF_POWER_MODE (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_XOSC_LF_DIG_BYPASS (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_XTAL_IS_24M (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member DDI_0_OSC_CTL0_XTAL_IS_24M (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_STAT0_PENDINGSCLKHFSWITCHING (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_STAT0_SCLK_HF_SRC_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_STAT0_SCLK_HF_SRC_s (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_STAT0_SCLK_LF_SRC_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_0_OSC_STAT0_SCLK_LF_SRC_s (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member DDI_CLR (macro definition) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented. +warning: Member DDI_DIR (macro definition) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented. +warning: Member DDI_MASK16B (macro definition) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented. +warning: Member DDI_MASK4B (macro definition) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented. +warning: Member DDI_MASK8B (macro definition) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented. +warning: Member DDI_SET (macro definition) of group cpu_cc26x2_cc13x2_peripheral_memory_map is not documented. +warning: Member dek_hash(const uint8_t *buf, size_t len) (function) of file hashes.h is not documented. +warning: Member DELAY_AFTER_FUNC_US (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DELAY_CE_HIGH_US (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DELAY_CE_START_US (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DELAY_CHANGE_PWR_MODE_US (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DELAY_CHANGE_TXRX_US (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DELAY_CS_TOGGLE_US (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DELAY_DATA_ON_AIR (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DGF_IF (macro definition) of file tcs37727-internal.h is not documented. +warning: Member DHT_PARAM_PIN (macro definition) of file dht_params.h is not documented. +warning: Member DHT_PARAM_PULL (macro definition) of file dht_params.h is not documented. +warning: Member DHT_PARAMS (macro definition) of file dht_params.h is not documented. +warning: Member DHT_PARAM_TYPE (macro definition) of file dht_params.h is not documented. +warning: Member DHT_SAULINFO (macro definition) of file dht_params.h is not documented. +warning: Member DIGITAL0 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member DIGITAL1 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member DIGITAL2 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member DIGITAL3 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member DIGITAL4 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member DIGITAL5 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member DIGITAL6 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member DIGITAL7 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member DIGITAL8 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member DISABLE_INTERRUPTS() (macro definition) of file board_info.h is not documented. +warning: Member DISK_GET_BLOCK_SIZE (macro definition) of group sys_shell_commands is not documented. +warning: Member DISK_GET_SECTOR_COUNT (macro definition) of group sys_shell_commands is not documented. +warning: Member DISK_GET_SECTOR_SIZE (macro definition) of group sys_shell_commands is not documented. +warning: Member DISK_READ_BYTES_CMD (macro definition) of group sys_shell_commands is not documented. +warning: Member DISK_READ_SECTOR_CMD (macro definition) of group sys_shell_commands is not documented. +warning: Member DISP_COM_PIN (macro definition) of file board.h is not documented. +warning: Member DISP_CS_PIN (macro definition) of file board.h is not documented. +warning: Member DISP_ENABLE_PIN (macro definition) of file board.h is not documented. +warning: Member DISP_EN_PIN (macro definition) of file board.h is not documented. +warning: Member DISP_EXTCOMIN_PIN (macro definition) of file board.h is not documented. +warning: Member DISP_POWER_PIN (macro definition) of file board.h is not documented. +warning: Member DISP_SCS_PIN (macro definition) of file board.h is not documented. +warning: Member DISP_SELECT_PIN (macro definition) of file board.h is not documented. +warning: Member DISP_SPI (macro definition) of file board.h is not documented. +warning: Member _div_mulhi64(const uint64_t a, const uint64_t b) (function) of file div.h is not documented. +warning: Member djb2_hash(const uint8_t *buf, size_t len) (function) of file hashes.h is not documented. +warning: Member DL_SORT2(list, cmp, prev, next) (macro definition) of group sys_ut is not documented. +warning: Member DL_SORT(list, cmp) (macro definition) of group sys_ut is not documented. +warning: Member DMA_0_ISR (macro definition) of file periph_conf_common.h is not documented. +warning: Member DMA_0_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_1_ISR (macro definition) of file periph_conf_common.h is not documented. +warning: Member DMA_1_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_2_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_3_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_4_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_5_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_6_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_7_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member dma_config[] (variable) of file periph_conf_common.h is not documented. +warning: Member dma_config[] (variable) of file periph_conf.h is not documented. +warning: Member DMA_DATA_WIDTH_BYTE (macro definition) of file periph_cpu.h is not documented. +warning: Member DMA_DATA_WIDTH_HALF_WORD (macro definition) of file periph_cpu.h is not documented. +warning: Member DMA_DATA_WIDTH_MASK (macro definition) of file periph_cpu.h is not documented. +warning: Member DMA_DATA_WIDTH_SHIFT (macro definition) of file periph_cpu.h is not documented. +warning: Member DMA_DATA_WIDTH_WORD (macro definition) of file periph_cpu.h is not documented. +warning: Member DMA_INC_BOTH_ADDR (macro definition) of file periph_cpu.h is not documented. +warning: Member DMA_INC_DST_ADDR (macro definition) of file periph_cpu.h is not documented. +warning: Member DMA_INC_SRC_ADDR (macro definition) of file periph_cpu.h is not documented. +warning: Member DMA_NUMOF (macro definition) of file periph_conf_common.h is not documented. +warning: Member DMA_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_SHARED_ISR_0 (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_SHARED_ISR_0_STREAMS (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_SHARED_ISR_1 (macro definition) of file periph_conf.h is not documented. +warning: Member DMA_SHARED_ISR_1_STREAMS (macro definition) of file periph_conf.h is not documented. +warning: Member DNS_CLASS_IN (macro definition) of group net_dns is not documented. +warning: Member DNS_TYPE_AAAA (macro definition) of group net_dns is not documented. +warning: Member DNS_TYPE_A (macro definition) of group net_dns is not documented. +warning: Member DOSE_PARAM_BAUDRATE (macro definition) of file dose_params.h is not documented. +warning: Member DOSE_PARAM_SENSE_PIN (macro definition) of file dose_params.h is not documented. +warning: Member DOSE_PARAMS (macro definition) of file dose_params.h is not documented. +warning: Member DOSE_PARAM_UART (macro definition) of file dose_params.h is not documented. +warning: Member dose_signal_t (enumeration) of group drivers_dose is not documented. +warning: Member dose_state_t (enumeration) of group drivers_dose is not documented. +warning: Member DPL_ASSERT_CRITICAL() (macro definition) of file dpl_os.h is not documented. +warning: Member DPL_ENTER_CRITICAL(_sr) (macro definition) of file dpl_os.h is not documented. +warning: Member DPL_EXIT_CRITICAL(_sr) (macro definition) of file dpl_os.h is not documented. +warning: Member DPL_FLOAT32_ADD(__X, __Y) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_CEIL(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_DIV(__X, __Y) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_FABS(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_FMOD(__X, __Y) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_FROM_F64(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_I32_TO_F32(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_INIT(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_INT(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_ISNAN(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_LOG10(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_MUL(__X, __Y) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_NAN() (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_PRINTF_PRIM (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_PRINTF_VALS(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT32_SUB(__X, __Y) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_ADD(__X, __Y) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_ASIN(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_ATAN(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_CEIL(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_DIV(__X, __Y) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_F64_TO_U64(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_FMOD(__X, __Y) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_FROM_F32(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_I32_TO_F64(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_I64_TO_F64(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_INIT(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_INT(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_ISNAN(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_LOG10(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_MUL(__X, __Y) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_NAN() (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_PRINTF_PRIM (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_PRINTF_VALS(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_SUB(__X, __Y) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64TO32(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_FLOAT64_U64_TO_F64(__X) (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_STACK_ALIGNMENT (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_TIMEOUT_NEVER (macro definition) of file dpl_types.h is not documented. +warning: Member DPL_WAIT_FOREVER (macro definition) of file dpl_types.h is not documented. +warning: Member DS1307_PARAM_I2C (macro definition) of file ds1307_params.h is not documented. +warning: Member DS1307_PARAMS (macro definition) of file ds1307_params.h is not documented. +warning: Member DS18_CMD_ALARMSEARCH (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_CMD_CONVERT (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_CMD_COPYSCRATCHPAD (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_CMD_MATCHROM (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_CMD_READROM (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_CMD_RECALLE (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_CMD_RPWRSPPLY (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_CMD_RSCRATCHPAD (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_CMD_SEARCHROM (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_CMD_SKIPROM (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_CMD_WRITESCRATCHPAD (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_DELAY_CONVERT (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_DELAY_PRESENCE (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_DELAY_RESET (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_DELAY_R_RECOVER (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_DELAY_RW_PULSE (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_DELAY_SLOT (macro definition) of file ds18_internal.h is not documented. +warning: Member DS18_ERROR (macro definition) of group drivers_ds18 is not documented. +warning: Member DS18_OK (macro definition) of group drivers_ds18 is not documented. +warning: Member DS18_PARAM_PIN (macro definition) of file board.h is not documented. +warning: Member DS18_PARAM_PULL (macro definition) of file board.h is not documented. +warning: Member DS18_PARAM_PULL (macro definition) of file ds18_params.h is not documented. +warning: Member DS18_PARAMS_DEFAULT (macro definition) of file ds18_params.h is not documented. +warning: Member DS18_SAMPLE_TIME (macro definition) of file ds18_internal.h is not documented. +warning: Member DS3231_FLAG_ALARM_2 (macro definition) of group drivers_ds3231 is not documented. +warning: Member DS3231_PARAM_I2C (macro definition) of file ds3231_params.h is not documented. +warning: Member DS3231_PARAM_OPT (macro definition) of file ds3231_params.h is not documented. +warning: Member DS3231_PARAMS (macro definition) of file ds3231_params.h is not documented. +warning: Member DS3234_PARAM_CLK (macro definition) of file ds3234_params.h is not documented. +warning: Member DS3234_PARAM_CS (macro definition) of file ds3234_params.h is not documented. +warning: Member DS3234_PARAMS (macro definition) of file ds3234_params.h is not documented. +warning: Member DS3234_PARAM_SPI (macro definition) of file ds3234_params.h is not documented. +warning: Member DS75LX_CONF_F0_MASK (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_CONF_F0_POS (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_CONF_POL_POS (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_CONF_R0_MASK (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_CONF_R0_POS (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_CONF_SD_POS (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_CONF_TM_POS (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_PARAM_I2C_ADDR (macro definition) of file ds75lx_params.h is not documented. +warning: Member DS75LX_PARAM_I2C_DEV (macro definition) of file ds75lx_params.h is not documented. +warning: Member DS75LX_PARAM_RESOLUTION (macro definition) of file ds75lx_params.h is not documented. +warning: Member DS75LX_PARAMS (macro definition) of file ds75lx_params.h is not documented. +warning: Member DS75LX_REG_CONFIGURATION (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_REG_TEMPERATURE (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_REG_T_HYST (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_REG_T_OS (macro definition) of file ds75lx_internals.h is not documented. +warning: Member DS75LX_SAUL_INFO (macro definition) of file ds75lx_params.h is not documented. +warning: Member DSP0401_PARAM_BRIGHTNESS (macro definition) of file dsp0401_params.h is not documented. +warning: Member DSP0401_PARAM_CLK_PIN (macro definition) of file dsp0401_params.h is not documented. +warning: Member DSP0401_PARAM_LAT_PIN (macro definition) of file dsp0401_params.h is not documented. +warning: Member DSP0401_PARAM_MODULE_COUNT (macro definition) of file dsp0401_params.h is not documented. +warning: Member DSP0401_PARAM_PWM_CHAN (macro definition) of file dsp0401_params.h is not documented. +warning: Member DSP0401_PARAM_PWM_DEV (macro definition) of file dsp0401_params.h is not documented. +warning: Member DSP0401_PARAM_SDI_PIN (macro definition) of file dsp0401_params.h is not documented. +warning: Member DSP0401_PARAMS (macro definition) of file dsp0401_params.h is not documented. +warning: Member DW1000_EXT_CLOCK_DELAY (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_PARAM_CS_PIN (macro definition) of file board.h is not documented. +warning: Member DW1000_PARAM_CS_PIN (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_PARAM_INT_PIN (macro definition) of file board.h is not documented. +warning: Member DW1000_PARAM_IRQ_PIN (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_PARAM_RESET_PIN (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_PARAMS (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_PARAM_SPI_CLK_HIGH (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_PARAM_SPI_CLK_LOW (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_PARAM_SPI (macro definition) of file board.h is not documented. +warning: Member DW1000_PARAM_SPI (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_RX_ANTENNA_DELAY (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_SPI_MODE (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_SPI_SEM (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DW1000_TX_ANTENNA_DELAY (macro definition) of file uwb_dw1000_params.h is not documented. +warning: Member DXL_HEADER (macro definition) of file dynamixel_protocol.h is not documented. +warning: Member DXL_PING_SIZE (macro definition) of file dynamixel_reader.h is not documented. +warning: Member DXL_READ_SIZE (macro definition) of file dynamixel_reader.h is not documented. +warning: Member DXL_STATUS_SIZE(len) (macro definition) of file dynamixel_reader.h is not documented. +warning: Member DXL_WRITE_SIZE(len) (macro definition) of file dynamixel_reader.h is not documented. +warning: Member dynamixel_crc_update(uint16_t crc_accum, const uint8_t *buffer, size_t size) (function) of file dynamixel_crc.h is not documented. +warning: Member dynamixel_intruction_t (enumeration) of file dynamixel_protocol.h is not documented. +warning: Member DYNPD_DPL_P0 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DYNPD_DPL_P1 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DYNPD_DPL_P2 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DYNPD_DPL_P3 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DYNPD_DPL_P4 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member DYNPD_DPL_P5 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member ebi_config (variable) of file periph_conf.h is not documented. +warning: Member ebi_init(void) (function) of file cpu_ebi.h is not documented. +warning: Member ECON1_BSEL0 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON1_BSEL1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON1_BSEL_MASK (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON1_CSUMEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON1_DMAST (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON1_RXEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON1_RXRST (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON1_TXRST (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON1_TXRTS (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON2_AUTOINC (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON2_PKTDEC (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON2_PWRSV (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ECON2_VRPS (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EDDYSTONE_EID (macro definition) of group net_eddystone is not documented. +warning: Member EDDYSTONE_INSTANCE_LEN (macro definition) of group net_eddystone is not documented. +warning: Member EDDYSTONE_NAMESPACE_LEN (macro definition) of group net_eddystone is not documented. +warning: Member EDDYSTONE_TLM (macro definition) of group net_eddystone is not documented. +warning: Member EDDYSTONE_UID (macro definition) of group net_eddystone is not documented. +warning: Member EDDYSTONE_URL (macro definition) of group net_eddystone is not documented. +warning: Member EDHOC_AUTH_CBOR_CERT (macro definition) of file edhoc_config.h is not documented. +warning: Member EDHOC_AUTH_METHOD_1_ENABLED (macro definition) of file edhoc_config.h is not documented. +warning: Member EDHOC_AUTH_METHOD_2_ENABLED (macro definition) of file edhoc_config.h is not documented. +warning: Member EDHOC_AUTH_METHOD_3_ENABLED (macro definition) of file edhoc_config.h is not documented. +warning: Member EEPROM_MAC_ADDR (macro definition) of file eui_provider_params.h is not documented. +warning: Member EEPROM_SIZE (macro definition) of file periph_cpu.h is not documented. +warning: Member EEPROM_START_ADDR (macro definition) of file periph_cpu.h is not documented. +warning: Member EFLOCON_FCEN0 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EFLOCON_FCEN1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EFLOCON_FCEN_MASK (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EFLOCON_FULDPXS (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EFM32_USE_LEUART (macro definition) of file periph_conf.h is not documented. +warning: Member EIE_DMAIE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIE_INTIE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIE_LINKIE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIE_PKTIE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIE_RXERIE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIE_TXERIE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIE_TXIE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIR_DMAIF (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIR_LINKIF (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIR_PKTIF (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIR_RXERIF (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIR_TXERIF (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EIR_TXIF (macro definition) of file enc28j60_regs.h is not documented. +warning: Member EN3V3_MASK (macro definition) of file board.h is not documented. +warning: Member EN3V3_OFF (macro definition) of file board.h is not documented. +warning: Member EN3V3_ON (macro definition) of file board.h is not documented. +warning: Member EN3V3_PIN (macro definition) of file board.h is not documented. +warning: Member EN3V3_PORT (macro definition) of file board.h is not documented. +warning: Member EN3V3_TOGGLE (macro definition) of file board.h is not documented. +warning: Member ENAA_P0 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member ENAA_P1 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member ENAA_P2 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member ENAA_P3 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member ENAA_P4 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member ENAA_P5 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member ENABLE_INTERRUPTS() (macro definition) of file board_info.h is not documented. +warning: Member ENC28J60_PARAM_CS (macro definition) of file enc28j60_params.h is not documented. +warning: Member ENC28J60_PARAM_INT (macro definition) of file enc28j60_params.h is not documented. +warning: Member ENC28J60_PARAM_RESET (macro definition) of file enc28j60_params.h is not documented. +warning: Member ENC28J60_PARAMS (macro definition) of file enc28j60_params.h is not documented. +warning: Member ENC28J60_PARAM_SPI (macro definition) of file enc28j60_params.h is not documented. +warning: Member ENC_AESIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_AESIF (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_AESOP0 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_AESOP1 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_AESST (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_AUTOFC (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_B0SEL (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_B1SEL (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_B2SEL (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_B3SEL (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_BFC (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_BFCU (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_BFS (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_BFSU (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_CLKRDY (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_CLREIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_CRYPTEN (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_DISABLERX (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_DMACPY (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_DMACSSD (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_DMAIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_DMAIF (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_DMANOCS (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_DMAST (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ECON1 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ECON2 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_EGPRDPT (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_EGPWRPT (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_EIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_EIR (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ENABLERX (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ERXFCON (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ERXHEAD (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ERXRDPT (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ERXST (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ERXTAIL (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ERXWRPT (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ESTAT (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ETHRST (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ETXLEN (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ETXSTAT (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ETXST (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_ETXWIRE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_EUDAST (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_FCOP0 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_FCOP1 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_HASHEN (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_HASHIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_HASHIF (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_HASHLST (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_HASHOP (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_INTIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_LINKIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_LINKIF (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MAADR1 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MAADR2 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MAADR3 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MACON2 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MAMXFL (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MCEN (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MIREGADR (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MIWR (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MODEXIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MODEXIF (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_MODEXST (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PCFULIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PCFULIF (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PHANA (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PHANE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PHANLPA (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PHCON1 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PHCON2 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PHSTAT1 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PHSTAT2 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PHSTAT3 (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PHYLNK (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PKTDEC (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PKTIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_PKTIF (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_RBSEL (macro definition) of file encx24j600_defines.h is not documented. +warning: Member EN_CRC (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member ENC_RCR (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_RCRU (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_RGPDATA (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_RRXDATA (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_RUDADATA (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_RXABTIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_RXABTIF (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_RXEN (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_SETEIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_SETETHRST (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_SETPKTDEC (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_SETTXRTS (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_TXABTIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_TXABTIF (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_TXIE (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_TXIF (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_TXRTS (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_WCR (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_WCRU (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_WGPDATA (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_WRXDATA (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENC_WUDADATA (macro definition) of file encx24j600_defines.h is not documented. +warning: Member ENCX24J600_PARAM_CS (macro definition) of file encx24j600_params.h is not documented. +warning: Member ENCX24J600_PARAM_INT (macro definition) of file encx24j600_params.h is not documented. +warning: Member ENCX24J600_PARAMS (macro definition) of file encx24j600_params.h is not documented. +warning: Member ENCX24J600_PARAM_SPI (macro definition) of file encx24j600_params.h is not documented. +warning: Member ENV_SENSE_PIC_ADDR (macro definition) of file board.h is not documented. +warning: Member ENV_SENSE_PIC_BIT (macro definition) of file board.h is not documented. +warning: Member ERXFCON_ANDOR (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ERXFCON_BCEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ERXFCON_CRCEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ERXFCON_HTEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ERXFCON_MCEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ERXFCON_MPEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ERXFCON_PMEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ERXFCON_UCEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ESP32_XTAL_FREQ (macro definition) of file board_common.h is not documented. +warning: Member ESP_NOW_STACKSIZE (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member ESP_PM_DEEP_SLEEP (macro definition) of file periph_cpu.h is not documented. +warning: Member ESP_PM_LIGHT_SLEEP (macro definition) of file periph_cpu.h is not documented. +warning: Member ESP_PM_MODEM_SLEEP (macro definition) of file periph_cpu.h is not documented. +warning: Member ESTAT_BUFFER (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ESTAT_CLKRDY (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ESTAT_INT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ESTAT_LATECOL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ESTAT_RXBUSY (macro definition) of file enc28j60_regs.h is not documented. +warning: Member ESTAT_TXABRT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member eth_config (variable) of file periph_conf.h is not documented. +warning: Member ETH_DMA_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member ETHOS_ESC_CHAR (macro definition) of group drivers_ethos is not documented. +warning: Member ETHOS_FRAME_DELIMITER (macro definition) of group drivers_ethos is not documented. +warning: Member ETHOS_FRAME_TYPE_DATA (macro definition) of group drivers_ethos is not documented. +warning: Member ETHOS_FRAME_TYPE_HELLO (macro definition) of group drivers_ethos is not documented. +warning: Member ETHOS_FRAME_TYPE_HELLO_REPLY (macro definition) of group drivers_ethos is not documented. +warning: Member ETHOS_FRAME_TYPE_TEXT (macro definition) of group drivers_ethos is not documented. +warning: Member ETHOS_PARAMS (macro definition) of file ethos_params.h is not documented. +warning: Member ETH_RX_BUFFER_COUNT (macro definition) of file periph_cpu_common.h is not documented. +warning: Member ETH_RX_BUFFER_SIZE (macro definition) of file periph_cpu_common.h is not documented. +warning: Member ETH_TX_BUFFER_COUNT (macro definition) of file periph_cpu_common.h is not documented. +warning: Member ETH_TX_BUFFER_SIZE (macro definition) of file periph_cpu_common.h is not documented. +warning: Member ETS_SOFT_INT_HDL_MAC (macro definition) of file irq_arch.h is not documented. +warning: Member ETS_SOFT_INT_NONE (macro definition) of file irq_arch.h is not documented. +warning: Member ETS_SOFT_INT_YIELD (macro definition) of file irq_arch.h is not documented. +warning: Member eui48_conf[] (variable) of file eui48_provider_params.h is not documented. +warning: Member EUI48_PROVIDER_FUNC (macro definition) of file eui_provider_params.h is not documented. +warning: Member EUI48_PROVIDER_TYPE (macro definition) of file eui_provider_params.h is not documented. +warning: Member eui64_conf[] (variable) of file eui64_provider_params.h is not documented. +warning: Member EUI64_PROVIDER_FUNC (macro definition) of file cc2538_eui_primary.h is not documented. +warning: Member EUI64_PROVIDER_FUNC (macro definition) of file eui_provider_params.h is not documented. +warning: Member EUI64_PROVIDER_INDEX (macro definition) of file cc2538_eui_primary.h is not documented. +warning: Member EUI64_PROVIDER_INDEX (macro definition) of file eui_provider_params.h is not documented. +warning: Member EUI64_PROVIDER_TYPE (macro definition) of file cc2538_eui_primary.h is not documented. +warning: Member EUI64_PROVIDER_TYPE (macro definition) of file eui_provider_params.h is not documented. +warning: Member event_thread_queues[EVENT_QUEUE_PRIO_NUMOF] (variable) of file thread.h is not documented. +warning: Member EXTERNAL_OSC32_SOURCE (macro definition) of file periph_conf.h is not documented. +warning: Member EXTFLASH_CS (macro definition) of file board.h is not documented. +warning: Member EXTFLASH_HOLD (macro definition) of file board.h is not documented. +warning: Member EXTFLASH (macro definition) of file board.h is not documented. +warning: Member EXTFLASH_SPI (macro definition) of file board.h is not documented. +warning: Member EXTFLASH_WRITE (macro definition) of file board.h is not documented. +warning: Member FATFS_DISKIO_DSTASTUS_OK (macro definition) of group pkg_fatfs is not documented. +warning: Member FATFS_DISKIO_FATTIME_DAY_OFFS (macro definition) of group pkg_fatfs is not documented. +warning: Member FATFS_DISKIO_FATTIME_HH_OFFS (macro definition) of group pkg_fatfs is not documented. +warning: Member FATFS_DISKIO_FATTIME_MM_OFFS (macro definition) of group pkg_fatfs is not documented. +warning: Member FATFS_DISKIO_FATTIME_MON_OFFS (macro definition) of group pkg_fatfs is not documented. +warning: Member FATFS_DISKIO_FATTIME_YEAR_OFFS (macro definition) of group pkg_fatfs is not documented. +warning: Member FATFS_VFS_FILE_BUFFER_SIZE (macro definition) of group sys_vfs is not documented. +warning: Member FATFS_YEAR_OFFSET (macro definition) of group pkg_fatfs is not documented. +warning: Member F_Bit (macro definition) of group cpu_arm7_common is not documented. +warning: Member FCFG1_DAC_BIAS_CNF_LPM_BIAS_BACKUP_EN (macro definition) of file cc26x2_cc13x2_fcfg.h is not documented. +warning: Member FCFG1_DAC_BIAS_CNF_LPM_BIAS_WIDTH_TRIM_m (macro definition) of file cc26x2_cc13x2_fcfg.h is not documented. +warning: Member FCFG1_DAC_BIAS_CNF_LPM_BIAS_WIDTH_TRIM_s (macro definition) of file cc26x2_cc13x2_fcfg.h is not documented. +warning: Member FCFG1_DAC_BIAS_CNF_LPM_TRIM_IOUT_s (macro definition) of file cc26x2_cc13x2_fcfg.h is not documented. +warning: Member F_CPU (macro definition) of file board.h is not documented. +warning: Member FEATURE_EN_ACK_PAY (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member FEATURE_EN_DPL (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member FEATURE_EN_DYN_ACK (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member FE_CTRL1 (macro definition) of file board.h is not documented. +warning: Member FE_CTRL2 (macro definition) of file board.h is not documented. +warning: Member FE_CTRL3 (macro definition) of file board.h is not documented. +warning: Member FEETECH_ACK_SIZE (macro definition) of file feetech_reader.h is not documented. +warning: Member feetech_intruction_t (enumeration) of file feetech_protocol.h is not documented. +warning: Member FEETECH_RESPONSE_SIZE(len) (macro definition) of file feetech_reader.h is not documented. +warning: Member FEETECH_START (macro definition) of file feetech_protocol.h is not documented. +warning: Member __FILENAME_MAX__ (macro definition) of file cpu_conf.h is not documented. +warning: Member FIQ32Mode (macro definition) of group cpu_arm7_common is not documented. +warning: Member FIXED_BLOCK_SIZE (macro definition) of group pkg_fatfs is not documented. +warning: Member FLAG_READ (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FLAG_WRITE (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FLASH_CFG_DIS_EFUSECLK (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member FLASH_CS_PIN (macro definition) of file board.h is not documented. +warning: Member FLASH_ERASE_STATE (macro definition) of file cpu_conf.h is not documented. +warning: Member FLASH_FPAC1_PSLEEPTDIS_m (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member FLASH_FPAC1_PSLEEPTDIS_s (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member FLASHPAGE_BLOCK_PHRASE (macro definition) of file cpu_conf_kinetis_k.h is not documented. +warning: Member FLASHPAGE_BLOCK_SECTION_ALIGNMENT (macro definition) of file cpu_conf_kinetis_k.h is not documented. +warning: Member FLASHPAGE_BLOCK_SECTION_ALIGNMENT (macro definition) of file cpu_conf_kinetis_w.h is not documented. +warning: Member FLASHPAGE_CC2538_USE_CCA_PAGE (macro definition) of file cpu_conf.h is not documented. +warning: Member FLASHPAGE_ERASE_STATE (macro definition) of file cpu_conf.h is not documented. +warning: Member FLASHPAGE_NUMOF (macro definition) of file cpu_conf.h is not documented. +warning: Member FLASHPAGE_NUMOF (macro definition) of file cpu_conf_kinetis_k.h is not documented. +warning: Member FLASHPAGE_NUMOF (macro definition) of file cpu_conf_kinetis_w.h is not documented. +warning: Member FLASHPAGE_SIZE (macro definition) of file cpu_conf.h is not documented. +warning: Member FLASHPAGE_SIZE (macro definition) of file cpu_conf_kinetis_k.h is not documented. +warning: Member FLASHPAGE_SIZE (macro definition) of file cpu_conf_kinetis_w.h is not documented. +warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT (macro definition) of file cpu_conf.h is not documented. +warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT (macro definition) of file cpu_conf_kinetis_k.h is not documented. +warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT (macro definition) of file cpu_conf_kinetis_w.h is not documented. +warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT (macro definition) of group cpu_nrf51 is not documented. +warning: Member FLASHPAGE_WRITE_BLOCK_ALIGNMENT (macro definition) of group cpu_nrf52 is not documented. +warning: Member FLASHPAGE_WRITE_BLOCK_SIZE (macro definition) of file cpu_conf.h is not documented. +warning: Member FLASHPAGE_WRITE_BLOCK_SIZE (macro definition) of file cpu_conf_kinetis_k.h is not documented. +warning: Member FLASHPAGE_WRITE_BLOCK_SIZE (macro definition) of file cpu_conf_kinetis_w.h is not documented. +warning: Member FLASHPAGE_WRITE_BLOCK_SIZE (macro definition) of group cpu_nrf51 is not documented. +warning: Member FLASH_SPI (macro definition) of file board.h is not documented. +warning: Member fnv_hash(const uint8_t *buf, size_t len) (function) of file hashes.h is not documented. +warning: Member __FOPEN_MAX__ (macro definition) of file cpu_conf.h is not documented. +warning: Member FRAME_4_CARRIER_EVT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_4_CRC_ERR (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_4_LENGTH_ERR (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_4_LENGTH_OOR (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_4_LONG_EVT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_4_RECV_OK (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_5_BCAST (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_5_DRIPPLE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_5_MCAST (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_5_PAUSE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_5_RCV_CTRL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_5_UKWN_OPCODE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member FRAME_5_VLAN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member F_RC_OSCILLATOR (macro definition) of file board.h is not documented. +warning: Member FRDM_NOR_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member FRDM_NOR_SPI_DEV (macro definition) of file board.h is not documented. +warning: Member FSK_BT_10 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_BT_15 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_BT_20 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_CHANNEL_SPACING_400K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_MIDX_10_BY_8 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_MIDX_12_BY_8 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_MIDX_14_BY_8 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_MIDX_16_BY_8 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_MIDX_4_BY_8 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_MIDX_6_BY_8 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_MIDX_8_BY_8 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_MIDXS_SCALE_10_BY_8 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_MIDXS_SCALE_8_BY_8 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_MIDXS_SCALE_9_BY_8 (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_SRATE_100K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_SRATE_150K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_SRATE_200K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_SRATE_300K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FSK_SRATE_400K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member FT5X06_AUTO_CALIB_NEEDED (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_DEVIDE_MODE_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_AUTO_CLB_MODE_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_CIPHER_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_GESTURE_ID_MOVE_DOWN (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_GESTURE_ID_MOVE_LEFT (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_GESTURE_ID_MOVE_RIGHT (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_GESTURE_ID_MOVE_UP (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_GESTURE_ID_NONE (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_GESTURE_ID_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_GESTURE_ID_ZOOM_IN (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_GESTURE_ID_ZOOM_OUT (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_FIRMID_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_LIB_VERSION_H_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_LIB_VERSION_L_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_MODE_INTERRUPT_MASK (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_MODE_INTERRUPT_POLLING (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_MODE_INTERRUPT_SHIFT (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_MODE_INTERRUPT_TRIGGER (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_MODE_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_PMODE_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_STATE_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_G_VENDOR_ID_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_I2C_DEFAULT_ADDRESS (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_PARAM_ADDR (macro definition) of file ft5x06_params.h is not documented. +warning: Member FT5X06_PARAM_I2C_DEV (macro definition) of file ft5x06_params.h is not documented. +warning: Member FT5X06_PARAM_INT_PIN (macro definition) of file ft5x06_params.h is not documented. +warning: Member FT5X06_PARAMS (macro definition) of file ft5x06_params.h is not documented. +warning: Member FT5X06_PARAM_TYPE (macro definition) of file ft5x06_params.h is not documented. +warning: Member FT5X06_PARAM_XMAX (macro definition) of file ft5x06_params.h is not documented. +warning: Member FT5X06_PARAM_YMAX (macro definition) of file ft5x06_params.h is not documented. +warning: Member FT5X06_TD_STATUS_MASK (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TD_STATUS_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH1_XH_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH1_XL_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH1_YH_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH1_YL_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH2_XH_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH2_XL_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH2_YH_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH2_YL_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH3_XH_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH3_XL_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH3_YH_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH3_YL_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH4_XH_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH4_XL_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH4_YH_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH4_YL_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH5_XH_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH5_XL_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH5_YH_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH5_YL_REG (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCHES_COUNT_MAX (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH_POS_LSB_MASK (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_TOUCH_POS_MSB_MASK (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FT5X06_VENDOR_ID (macro definition) of file ft5x06_constants.h is not documented. +warning: Member FTFA_Collision_IRQn (macro definition) of file cpu_conf.h is not documented. +warning: Member FTFA_IRQn (macro definition) of file cpu_conf.h is not documented. +warning: Member FTFE_Collision_IRQn (macro definition) of file cpu_conf.h is not documented. +warning: Member FTFE_IRQn (macro definition) of file cpu_conf.h is not documented. +warning: Member FTFL_Collision_IRQn (macro definition) of file cpu_conf.h is not documented. +warning: Member FTFL_IRQn (macro definition) of file cpu_conf.h is not documented. +warning: Member FXOS8700_WHO_AM_I_VAL (macro definition) of file fxos8700_regs.h is not documented. +warning: Member GCOAP_OBS_INIT_ERR (macro definition) of group net_gcoap is not documented. +warning: Member GCOAP_OBS_INIT_OK (macro definition) of group net_gcoap is not documented. +warning: Member GCOAP_OBS_INIT_UNUSED (macro definition) of group net_gcoap is not documented. +warning: Member GCOAP_RESOURCE_ERROR (macro definition) of group net_gcoap is not documented. +warning: Member GCOAP_RESOURCE_FOUND (macro definition) of group net_gcoap is not documented. +warning: Member GCOAP_RESOURCE_NO_PATH (macro definition) of group net_gcoap is not documented. +warning: Member GCOAP_RESOURCE_WRONG_METHOD (macro definition) of group net_gcoap is not documented. +warning: Member GCOAP_STACK_SIZE (macro definition) of group net_gcoap is not documented. +warning: Member G_COEF_IF (macro definition) of file tcs37727-internal.h is not documented. +warning: Member gd32v_disable_irc8(void) (function) of file periph_cpu.h is not documented. +warning: Member gd32v_enable_irc8(void) (function) of file periph_cpu.h is not documented. +warning: Member gd32vf103_clock_init(void) (function) of file periph_cpu.h is not documented. +warning: Member GEN2_ULP32K (macro definition) of file periph_conf.h is not documented. +warning: Member _GENERAL_INTERRUPT_ENABLE (macro definition) of file irq_arch.h is not documented. +warning: Member GET_BYTE(buffer, index) (macro definition) of file cc2538_rf.h is not documented. +warning: Member __get_cpsr(void) (function) of file irq_arch.h is not documented. +warning: Member GETU32(pt) (macro definition) of file aes.h is not documented. +warning: Member GNRC_IPV6_STACK_SIZE (macro definition) of file cpu_conf.h is not documented. +warning: Member GNRC_IPV6_STACK_SIZE (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member GNRC_PKTDUMP_STACKSIZE (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member GNRC_RPL_COUNTER_GREATER_THAN_LOCAL(uint8_t A, uint8_t B) (function) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_COUNTER_GREATER_THAN(uint8_t A, uint8_t B) (function) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_COUNTER_INCREMENT(uint8_t counter) (function) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_COUNTER_INIT (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_COUNTER_IS_INIT(uint8_t counter) (function) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_COUNTER_LOWER_REGION (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_COUNTER_MAX (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_COUNTER_SEQ_WINDOW (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_DAO_ACK_D_BIT (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_DAO_D_BIT (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_DAO_K_BIT (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_DIS_SOLICITED_INFO_FLAG_D (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_DIS_SOLICITED_INFO_FLAG_I (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_DIS_SOLICITED_INFO_FLAG_V (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_GLOBAL_INSTANCE_MASK (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_INSTANCE_D_FLAG_MASK (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_INSTANCE_ID_MSB (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_LEAF_NODE (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_LOCAL_INSTANCE_MASK (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_MOP_NO_DOWNWARD_ROUTES (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_MOP_NON_STORING_MODE (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_MOP_STORING_MODE_MC (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_MOP_STORING_MODE_NO_MC (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_NETSTATS_MULTICAST (macro definition) of file netstats.h is not documented. +warning: Member GNRC_RPL_NETSTATS_UNICAST (macro definition) of file netstats.h is not documented. +warning: Member GNRC_RPL_NORMAL_NODE (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_OPT_DAG_METRIC_CONTAINER (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_OPT_DODAG_CONF_LEN (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_OPT_DODAG_CONF (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_OPT_PAD1 (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_OPT_PADN (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_OPT_PREFIX_INFO_LEN (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_OPT_PREFIX_INFO (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_OPT_ROUTE_INFO (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_OPT_SOLICITED_INFO (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_OPT_TARGET_DESC (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_OPT_TARGET_LEN (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_OPT_TARGET (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_OPT_TRANSIT_INFO_LEN (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_OPT_TRANSIT (macro definition) of group net_gnrc_rpl is not documented. +warning: Member GNRC_RPL_P2P_DEFAULT_DIO_INTERVAL_MIN (macro definition) of group net_gnrc_rpl_p2p is not documented. +warning: Member GNRC_RPL_P2P_DEFAULT_DIO_REDUNDANCY_CONSTANT (macro definition) of group net_gnrc_rpl_p2p is not documented. +warning: Member GNRC_RPL_P2P_DEFAULT_LIFETIME (macro definition) of group net_gnrc_rpl_p2p is not documented. +warning: Member GNRC_RPL_P2P_LIFETIME_UNIT (macro definition) of group net_gnrc_rpl_p2p is not documented. +warning: Member GNRC_RPL_REQ_DIO_OPT_DODAG_CONF (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_REQ_DIO_OPT_DODAG_CONF_SHIFT (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_REQ_DIO_OPT_PREFIX_INFO (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_REQ_DIO_OPT_PREFIX_INFO_SHIFT (macro definition) of file structs.h is not documented. +warning: Member GNRC_RPL_ROOT_NODE (macro definition) of group net_gnrc_rpl is not documented. +warning: Member gnrc_rpl_rpble_update(const gnrc_rpl_dodag_t *dodag) (function) of file rpble.h is not documented. +warning: Member GPIO0 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO10 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO11 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO12 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO13 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO14 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO15 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO16 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO17 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO18 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO19 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO1 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO21 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO22 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO23 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO25 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO26 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO27 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO2 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO32 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO33 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO34 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO35 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO36 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO37 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO38 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO39 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO3 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO4 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO5 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO6 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO7 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO8 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO9 (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIOCLKGDS_CLK_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member GPIOCLKGDS_CLK_EN (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member GPIOCLKGR_CLK_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member GPIOCLKGR_CLK_EN (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member GPIOCLKGS_CLK_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member GPIOCLKGS_CLK_EN (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member gpio_dir_t (enumeration) of file periph_cpu.h is not documented. +warning: Member gpio_flank_t (enumeration) of file periph_cpu.h is not documented. +warning: Member GPIOHANDLE_REQUEST_PULL_DOWN (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIOHANDLE_REQUEST_PULL_UP (macro definition) of file periph_cpu.h is not documented. +warning: Member GPIO_MODE (enumeration) of file periph_cpu.h is not documented. +warning: Member gpio_mode_t (typedef) of file periph_cpu.h is not documented. +warning: Member GPIO_PIN(x, y) (macro definition) of file periph_cpu_common.h is not documented. +warning: Member GPIO_PIN(x, y) (macro definition) of file periph_cpu.h is not documented. +warning: Member gpio_t (typedef) of file periph_cpu_common.h is not documented. +warning: Member gpio_t (typedef) of file periph_cpu.h is not documented. +warning: Member gpio_t (typedef) of group cpu_msp430fxyz is not documented. +warning: Member GPRS_PIN (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member GPRS_PW (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member GPS_ENABLE_MASK (macro definition) of file board.h is not documented. +warning: Member GPS_ENABLE_OFF (macro definition) of file board.h is not documented. +warning: Member GPS_ENABLE_ON (macro definition) of file board.h is not documented. +warning: Member GPS_ENABLE_PIN (macro definition) of file board.h is not documented. +warning: Member GPS_ENABLE_PORT (macro definition) of file board.h is not documented. +warning: Member GPS_PW (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member GPS_RST_PIN (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member GPS_TIMEPULSE_MODE (macro definition) of file board.h is not documented. +warning: Member GPS_TIMEPULSE_PIN (macro definition) of file board.h is not documented. +warning: Member GPT1 (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT2 (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT3 (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CFG_16T (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CFG_32RTC (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_RTCEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TAEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TAEVENT_BOTH (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TAEVENT_NEG (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TAEVENT_POS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TAPWML_INV (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TASTALL (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TBEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TBEVENT_BOTH (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TBEVENT_NEG (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TBEVENT_POS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TBPWML_INV (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_CTL_TBSTALL (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_DMAEV_CAEDMAEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_DMAEV_CAMDMAEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_DMAEV_CBEDMAEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_DMAEV_CBMDMAEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_DMAEV_RTCDMAEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_DMAEV_TAMDMAEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_DMAEV_TATODMAEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_DMAEV_TBMDMAEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_DMAEV_TBTODMAEN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_CAECINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_CAMCINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_CBECINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_CBMCINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_DMACINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_RTCCINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_TAMCINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_TATOCINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_TBMCINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_TBTOCINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_ICLR_WUCINT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_CAEIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_CAMIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_CBEIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_CBMIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_DMAAIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_DMABIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_RTCIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_TAMIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_TATOIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_TBMIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_TBTOIM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_IMR_WUMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_CAEMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_CAMMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_CBEMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_CBMMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_DMAMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_RTCMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_TAMMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_TATOMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_TBMMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_TBTOMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_MIS_WUMIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_CAERIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_CAMRIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_CBERIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_CBMRIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_DMARIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_RTCRIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_TAMRIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_TATORIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_TBMRIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_TBTORIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_RIS_WURIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_SYNC_SYNC1_A (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_SYNC_SYNC1_B (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_SYNC_SYNC2_A (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_SYNC_SYNC2_B (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_SYNC_SYNC3_A (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_SYNC_SYNC3_B (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_SYNC_SYNC4_A (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_SYNC_SYNC4_B (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TCACT_CLR_NOW_SET_TO (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TCACT_CLR_NOW_TGL_TO (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TCACT_CLR_TO (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TCACT_DIS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TCACT_SET_NOW_CLR_TO (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TCACT_SET_NOW_TGL_TO (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TCACT_SET_TO (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TCACT_TGL_TO (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXAMS_CAPTCOMP (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXAMS_PWM (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXCDIR_DOWN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXCDIR_UP (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXCIN (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXCM_EDGECNT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXCM_EDGETIME (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXILD_CLOCK (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXILD_TIMEOUT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXMIE (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXMR_CAPTURE (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXMR_ONE_SHOT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXMR_PERIODIC (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXMRSU (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXPLO (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXPWMIE (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXSNAPS (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GPT_TXMR_TXWOT (macro definition) of file cc26xx_cc13xx_gpt.h is not documented. +warning: Member GROVE_LEDBAR_G2R (macro definition) of group drivers_grove_ledbar is not documented. +warning: Member GROVE_LEDBAR_R2G (macro definition) of group drivers_grove_ledbar is not documented. +warning: Member __HAL_DISABLE_INTERRUPTS(x) (macro definition) of file mcu.h is not documented. +warning: Member __HAL_ENABLE_INTERRUPTS(x) (macro definition) of file mcu.h is not documented. +warning: Member _handle_6co(const icmpv6_hdr_t *icmpv6, const sixlowpan_nd_opt_6ctx_t *sixco, _nib_abr_entry_t *abr) (function) of file _nib-6ln.h is not documented. +warning: Member _handle_abro(const sixlowpan_nd_opt_abr_t *abro) (function) of file _nib-6ln.h is not documented. +warning: Member HAVE_GPIO_FLANK_T (macro definition) of file periph_cpu.h is not documented. +warning: Member HAVE_GPIO_MODE_T (macro definition) of file periph_cpu.h is not documented. +warning: Member HAVE_GPIO_T (macro definition) of file periph_cpu.h is not documented. +warning: Member HAVE_I2C_SPEED_T (macro definition) of file periph_cpu.h is not documented. +warning: Member HAVE_PWM_MODE_T (macro definition) of file periph_conf.h is not documented. +warning: Member HAVE_UART_DATA_BITS_T (macro definition) of file periph_cpu.h is not documented. +warning: Member HAVE_UART_PARITY_T (macro definition) of file periph_cpu.h is not documented. +warning: Member HAVE_UART_STOP_BITS_T (macro definition) of file periph_cpu.h is not documented. +warning: Member HD44780_1LINE (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_2LINE (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_4BITMODE (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_5x10DOTS (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_5x8DOTS (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_8BITMODE (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_BLINKOFF (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_BLINKON (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_CLEARDISPLAY (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_CMD_WAIT (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_CURSORMOVE (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_CURSOROFF (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_CURSORON (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_CURSORSHIFT (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_DISPLAYCONTROL (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_DISPLAYMOVE (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_DISPLAYOFF (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_DISPLAYON (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_ENTRYLEFT (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_ENTRYMODESET (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_ENTRYRIGHT (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_ENTRYSHIFTDECREMENT (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_ENTRYSHIFTINCREMENT (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_FUNCTIONSET (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_INIT_WAIT_LONG (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_INIT_WAIT_SHORT (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_INIT_WAIT_XXL (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_MOVELEFT (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_MOVERIGHT (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_PARAM_COLS (macro definition) of file board.h is not documented. +warning: Member HD44780_PARAM_COLS (macro definition) of file hd44780_params.h is not documented. +warning: Member HD44780_PARAM_PIN_ENABLE (macro definition) of file board.h is not documented. +warning: Member HD44780_PARAM_PIN_ENABLE (macro definition) of file hd44780_params.h is not documented. +warning: Member HD44780_PARAM_PIN_RS (macro definition) of file board.h is not documented. +warning: Member HD44780_PARAM_PIN_RS (macro definition) of file hd44780_params.h is not documented. +warning: Member HD44780_PARAM_PIN_RW (macro definition) of file board.h is not documented. +warning: Member HD44780_PARAM_PIN_RW (macro definition) of file hd44780_params.h is not documented. +warning: Member HD44780_PARAM_PINS_DATA (macro definition) of file board.h is not documented. +warning: Member HD44780_PARAM_PINS_DATA (macro definition) of file hd44780_params.h is not documented. +warning: Member HD44780_PARAM_ROWS (macro definition) of file board.h is not documented. +warning: Member HD44780_PARAM_ROWS (macro definition) of file hd44780_params.h is not documented. +warning: Member HD44780_PARAMS (macro definition) of file hd44780_params.h is not documented. +warning: Member HD44780_PULSE_WAIT_LONG (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_PULSE_WAIT_SHORT (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_RETURNHOME (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_SETCGRAMADDR (macro definition) of file hd44780_internal.h is not documented. +warning: Member HD44780_SETDDRAMADDR (macro definition) of file hd44780_internal.h is not documented. +warning: Member HDC1000_BTST_LOW (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_CONFIG (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_DEVICE_ID (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_DID_VALUE (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_HEAT (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_HRES11 (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_HRES14 (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_HRES8 (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_HRES_MSK (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_HUMIDITY (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_MANUFACTURER_ID (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_MID_VALUE (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_RST (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_SEQ_MOD (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_SID1 (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_SID2 (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_SID3 (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_TEMPERATURE (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_TRES11 (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_TRES14 (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1000_TRES_MSK (macro definition) of file hdc1000_regs.h is not documented. +warning: Member HDC1010_PARAM_ADDR (macro definition) of file board.h is not documented. +warning: Member HDC1010_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member HDC1010_PIN_DRDY (macro definition) of file board.h is not documented. +warning: Member HFXO_FREQ (macro definition) of file periph_conf.h is not documented. +warning: Member HIB_PIN (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member HMC5883L_PARAM_DEV (macro definition) of file hmc5883l_params.h is not documented. +warning: Member HMC5883L_PARAM_DOR (macro definition) of file hmc5883l_params.h is not documented. +warning: Member HMC5883L_PARAM_GAIN (macro definition) of file hmc5883l_params.h is not documented. +warning: Member HMC5883L_PARAM_INT_PIN (macro definition) of file hmc5883l_params.h is not documented. +warning: Member HMC5883L_PARAM_MEAS_AVG (macro definition) of file hmc5883l_params.h is not documented. +warning: Member HMC5883L_PARAM_MEAS_MODE (macro definition) of file hmc5883l_params.h is not documented. +warning: Member HMC5883L_PARAM_OP_MODE (macro definition) of file hmc5883l_params.h is not documented. +warning: Member HMC5883L_PARAMS (macro definition) of file hmc5883l_params.h is not documented. +warning: Member HMC5883L_REG_CFG_A (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_CFG_B (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_ID_A (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_ID_B (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_ID_C (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_MODE (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_OUT_X_LSB (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_OUT_X_MSB (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_OUT_Y_LSB (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_OUT_Y_MSB (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_OUT_Z_LSB (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_OUT_Z_MSB (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_REG_STATUS (macro definition) of file hmc5883l_regs.h is not documented. +warning: Member HMC5883L_SAUL_INFO (macro definition) of file hmc5883l_params.h is not documented. +warning: Member HSC_PARAM_I2C_ADDR (macro definition) of file hsc_params.h is not documented. +warning: Member HSC_PARAM_I2C_DEV (macro definition) of file hsc_params.h is not documented. +warning: Member HSC_PARAM_RANGE (macro definition) of file hsc_params.h is not documented. +warning: Member HSC_PARAMS (macro definition) of file hsc_params.h is not documented. +warning: Member HSC_SAUL_INFO (macro definition) of file hsc_params.h is not documented. +warning: Member HTS221_DEVICE_ID (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_PARAM_ADDR (macro definition) of file hts221_params.h is not documented. +warning: Member HTS221_PARAM_AVGX (macro definition) of file hts221_params.h is not documented. +warning: Member HTS221_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member HTS221_PARAM_I2C (macro definition) of file hts221_params.h is not documented. +warning: Member HTS221_PARAM_RATE (macro definition) of file hts221_params.h is not documented. +warning: Member HTS221_PARAMS (macro definition) of file hts221_params.h is not documented. +warning: Member HTS221_REGS_AV_CONF (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_CTRL_REG1 (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_CTRL_REG2 (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_H0_RH_X2 (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_H0_T0_OUT_H (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_H0_T0_OUT_L (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_H1_RH_X2 (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_H1_T0_OUT_H (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_H1_T0_OUT_L (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_HUMIDITY_OUT_H (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_HUMIDITY_OUT_L (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_STATUS_REG (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_T0_DEGC_X8 (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_T0_OUT_H (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_T0_OUT_L (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_T1_DEGC_X8 (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_T1_OUT_H (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_T1_OUT_L (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_T1_T0_MSB (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_TEMP_OUT_H (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_TEMP_OUT_L (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_REGS_WHO_AM_I (macro definition) of file hts221_regs.h is not documented. +warning: Member HTS221_SAULINFO (macro definition) of file hts221_params.h is not documented. +warning: Member HUGEMEM_NULL (macro definition) of file cpu_ebi.h is not documented. +warning: Member hugemem_ptr_t (typedef) of file cpu_ebi.h is not documented. +warning: Member I2C_0_ISR (macro definition) of file cfg_i2c1_pb6_pb7.h is not documented. +warning: Member I2C_0_ISR (macro definition) of file cfg_i2c_default.h is not documented. +warning: Member I2C_0_ISR (macro definition) of file periph_conf_common.h is not documented. +warning: Member I2C_0_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member I2C_1_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member I2C_2_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member I2CCLKGDS_CLK_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member I2CCLKGDS_CLK_EN (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member I2CCLKGR_CLK_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member I2CCLKGR_CLK_EN (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member I2CCLKGS_CLK_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member I2CCLKGS_CLK_EN (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member i2c_config[] (variable) of file cfg_i2c1_pb6_pb7.h is not documented. +warning: Member i2c_config[] (variable) of file cfg_i2c1_pb8_pb9.h is not documented. +warning: Member i2c_config[] (variable) of file cfg_i2c_default.h is not documented. +warning: Member i2c_config[] (variable) of file periph_conf_common.h is not documented. +warning: Member i2c_config[] (variable) of file periph_conf.h is not documented. +warning: Member I2C_DISABLE (macro definition) of file board.h is not documented. +warning: Member I2C_ENABLE (macro definition) of file board.h is not documented. +warning: Member I2C_EN_MASK (macro definition) of file board.h is not documented. +warning: Member I2C_EN_MODE (macro definition) of file board.h is not documented. +warning: Member I2C_EN_PIN (macro definition) of file board.h is not documented. +warning: Member I2C_EN_PORT (macro definition) of file board.h is not documented. +warning: Member I2C_IRQ_PRIO (macro definition) of file cfg_i2c_default.h is not documented. +warning: Member I2C_IRQ_PRIO (macro definition) of file periph_conf.h is not documented. +warning: Member I2C_NUMOF (macro definition) of file cfg_i2c1_pb6_pb7.h is not documented. +warning: Member I2C_NUMOF (macro definition) of file cfg_i2c1_pb8_pb9.h is not documented. +warning: Member I2C_NUMOF (macro definition) of file cfg_i2c_default.h is not documented. +warning: Member I2C_NUMOF (macro definition) of file periph_conf_common.h is not documented. +warning: Member I2C_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member I2C_PIN_MASK (macro definition) of file periph_cpu.h is not documented. +warning: Member i2c_pin_scl(dev) (macro definition) of file periph_cpu.h is not documented. +warning: Member i2c_pin_sda(dev) (macro definition) of file periph_cpu.h is not documented. +warning: Member I2C_PORT_REG (macro definition) of file periph_cpu.h is not documented. +warning: Member I2C_SCL (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member I2C_SCL_PIN (macro definition) of file periph_conf.h is not documented. +warning: Member I2C_SDA (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member I2C_SDA_PIN (macro definition) of file periph_conf.h is not documented. +warning: Member i2c_speed_t (enumeration) of file periph_cpu.h is not documented. +warning: Member IANA_DYNAMIC_PORTRANGE_MAX (macro definition) of group net_iana_portrange is not documented. +warning: Member IANA_DYNAMIC_PORTRANGE_MIN (macro definition) of group net_iana_portrange is not documented. +warning: Member IANA_SYSTEM_PORTRANGE_MAX (macro definition) of group net_iana_portrange is not documented. +warning: Member IANA_SYSTEM_PORTRANGE_MIN (macro definition) of group net_iana_portrange is not documented. +warning: Member IANA_USER_PORTRANGE_MAX (macro definition) of group net_iana_portrange is not documented. +warning: Member IANA_USER_PORTRANGE_MIN (macro definition) of group net_iana_portrange is not documented. +warning: Member I_Bit (macro definition) of group cpu_arm7_common is not documented. +warning: Member ICM20648_ENABLED (macro definition) of file board.h is not documented. +warning: Member ICM20648_PIC_ADDR (macro definition) of file board.h is not documented. +warning: Member ICM20648_PIC_EN_BIT (macro definition) of file board.h is not documented. +warning: Member ICM20648_SPI (macro definition) of file board.h is not documented. +warning: Member IEEE802154_CHAN2FREQ(chan) (macro definition) of file cc2538_rf.h is not documented. +warning: Member IEEE802154_FCF_DST_ADDR_MASK (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCF_LEN (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCF_SRC_ADDR_MASK (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCF_TYPE_ACK (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCF_TYPE_BEACON (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCF_TYPE_DATA (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCF_TYPE_MACCMD (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCF_TYPE_MASK (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCF_VERS_MASK (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCF_VERS_V0 (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCF_VERS_V1 (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FCS_LEN (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_FREQ2CHAN(freq) (macro definition) of file cc2538_rf.h is not documented. +warning: Member IEEE802154_MIN_FRAME_LEN (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_PHY_MR_FSK_2FSK_CODED_SFD_1 (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_PHY_MR_FSK_2FSK_UNCODED_SFD_0 (macro definition) of group net_ieee802154_header is not documented. +warning: Member IEEE802154_PHY_MR_FSK_2FSK_UNCODED_SFD_1 (macro definition) of group net_ieee802154_header is not documented. +warning: Member IKEA_TRADFRI_NOR_FLAGS (macro definition) of file board.h is not documented. +warning: Member IKEA_TRADFRI_NOR_PAGE_SIZE (macro definition) of file board.h is not documented. +warning: Member IKEA_TRADFRI_NOR_PAGES_PER_SECTOR (macro definition) of file board.h is not documented. +warning: Member IKEA_TRADFRI_NOR_SECTOR_COUNT (macro definition) of file board.h is not documented. +warning: Member IKEA_TRADFRI_NOR_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member IKEA_TRADFRI_NOR_SPI_CS (macro definition) of file board.h is not documented. +warning: Member IKEA_TRADFRI_NOR_SPI_DEV (macro definition) of file board.h is not documented. +warning: Member IKEA_TRADFRI_NOR_SPI_MODE (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_CS (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_CS (macro definition) of file ili9341_params.h is not documented. +warning: Member ILI9341_PARAM_DCX (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_DCX (macro definition) of file ili9341_params.h is not documented. +warning: Member ILI9341_PARAM_INVERTED (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_INVERTED (macro definition) of file ili9341_params.h is not documented. +warning: Member ILI9341_PARAM_NUM_LINES (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_NUM_LINES (macro definition) of file ili9341_params.h is not documented. +warning: Member ILi9341_PARAM_RGB (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_RGB (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_RGB (macro definition) of file ili9341_params.h is not documented. +warning: Member ILI9341_PARAM_ROTATION (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_ROTATION (macro definition) of file ili9341_params.h is not documented. +warning: Member ILI9341_PARAM_RST (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_RST (macro definition) of file ili9341_params.h is not documented. +warning: Member ILI9341_PARAMS (macro definition) of file ili9341_params.h is not documented. +warning: Member ILI9341_PARAM_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_SPI_CLK (macro definition) of file ili9341_params.h is not documented. +warning: Member ILI9341_PARAM_SPI (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_SPI (macro definition) of file ili9341_params.h is not documented. +warning: Member ILI9341_PARAM_SPI_MODE (macro definition) of file board.h is not documented. +warning: Member ILI9341_PARAM_SPI_MODE (macro definition) of file ili9341_params.h is not documented. +warning: Member INA2XX_PARAMS (macro definition) of file ina2xx_params.h is not documented. +warning: Member INA2XX_SAULINFO (macro definition) of file ina2xx_params.h is not documented. +warning: Member INFOMEM (macro definition) of file board-conf.h is not documented. +warning: Member INITIAL_ADDRESS_WIDTH (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member INITIAL_RF_CHANNEL (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member INITIAL_RX_POWER_0dB (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member INT1_XL_MODE (macro definition) of file board.h is not documented. +warning: Member INT1_XL_PIN (macro definition) of file board.h is not documented. +warning: Member INT2_XL_MODE (macro definition) of file board.h is not documented. +warning: Member INT2_XL_PIN (macro definition) of file board.h is not documented. +warning: Member INTERNAL_OSC32_SOURCE (macro definition) of file periph_conf.h is not documented. +warning: Member INTERNAL_PERIPHERAL_PID (macro definition) of file board.h is not documented. +warning: Member INTERNAL_PERIPHERAL_VID (macro definition) of file board.h is not documented. +warning: Member INTERRUPT_DECLARATION() (macro definition) of file board_info.h is not documented. +warning: Member INT_MAG_MODE (macro definition) of file board.h is not documented. +warning: Member INT_MAG_PIN (macro definition) of file board.h is not documented. +warning: Member INTMode (macro definition) of group cpu_arm7_common is not documented. +warning: Member IO1_GPIO1_PIN (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_GPIO2_PIN (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_LED_PIN (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_LIGHT_ADC_LINE (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_LIGHT_ADC_RES (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_SDCARD_SPI_PARAM_CLK (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_SDCARD_SPI_PARAM_CS (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_SDCARD_SPI_PARAM_DETECT (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_SDCARD_SPI_PARAM_MISO (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_SDCARD_SPI_PARAM_MOSI (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_SDCARD_SPI_PARAM_POWER_AH (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_SDCARD_SPI_PARAM_POWER (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_SDCARD_SPI_PARAM_SPI (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_TEMPERATURE_BASE_ADDR (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_TEMPERATURE_DEFAULT_ADDR (macro definition) of file io1_xplained_internals.h is not documented. +warning: Member IO1_XPLAINED_PARAM_ADDR (macro definition) of file io1_xplained_params.h is not documented. +warning: Member IO1_XPLAINED_PARAMS (macro definition) of file io1_xplained_params.h is not documented. +warning: Member IO1_XPLAINED_SAUL_INFO (macro definition) of file io1_xplained_params.h is not documented. +warning: Member IOCFG_HYST_ENABLE (macro definition) of file cc26xx_cc13xx_ioc.h is not documented. +warning: Member IOCFG_INPUT_ENABLE (macro definition) of file cc26xx_cc13xx_ioc.h is not documented. +warning: Member IOCFG_WUCFG_HIGH (macro definition) of file cc26xx_cc13xx_ioc.h is not documented. +warning: Member IOCFG_WUCFG_LOW (macro definition) of file cc26xx_cc13xx_ioc.h is not documented. +warning: Member IOC_PXX_OVER (macro definition) of group cpu_cc2538_gpio is not documented. +warning: Member IOC_PXX_SEL (macro definition) of group cpu_cc2538_gpio is not documented. +warning: Member IR_NEC_PARAM_PIN (macro definition) of file ir_nec_params.h is not documented. +warning: Member IR_NEC_PARAMS (macro definition) of file ir_nec_params.h is not documented. +warning: Member IRQ32Mode (macro definition) of group cpu_arm7_common is not documented. +warning: Member irq_disable(void) (function) of file irq_arch.h is not documented. +warning: Member irq_enable(void) (function) of file irq_arch.h is not documented. +warning: Member irq_is_enabled(void) (function) of file irq_arch.h is not documented. +warning: Member __irq_is_in (variable) of file irq_arch.h is not documented. +warning: Member irq_is_in(void) (function) of file irq_arch.h is not documented. +warning: Member irq_isr_enter() (macro definition) of file irq_arch_common.h is not documented. +warning: Member irq_isr_exit() (macro definition) of file irq_arch_common.h is not documented. +warning: Member IRQ_MASK (macro definition) of file irq_arch.h is not documented. +warning: Member irq_restore(unsigned int state) (function) of file irq_arch.h is not documented. +warning: Member irq_restore(unsigned oldCPSR) (function) of file irq_arch.h is not documented. +warning: Member ISL29020_CMD_EN (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_CMD_LIGHT (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_CMD_MODE (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_CMD_RAGNE (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_CMD_RES (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_PARAM_ADDR (macro definition) of file isl29020_params.h is not documented. +warning: Member ISL29020_PARAM_MODE (macro definition) of file isl29020_params.h is not documented. +warning: Member ISL29020_PARAM_RANGE (macro definition) of file isl29020_params.h is not documented. +warning: Member ISL29020_PARAMS (macro definition) of file isl29020_params.h is not documented. +warning: Member ISL29020_RANGE_1 (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_RANGE_2 (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_RANGE_3 (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_RANGE_4 (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_REG_CMD (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_REG_HDATA (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_REG_LDATA (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_RES_EXT_ADC (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_RES_EXT_TIM (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_RES_INT_12 (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_RES_INT_16 (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_RES_INT_4 (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_RES_INT_8 (macro definition) of file isl29020-internal.h is not documented. +warning: Member ISL29020_SAUL_INFO (macro definition) of file isl29020_params.h is not documented. +warning: Member ISL29125_CMD_RESET (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_CON1_MASK_MODE (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_CON1_MASK_RANGE (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_CON1_MASK_RES (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_CON1_MASK_SYNC (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_CON1_SYNCOFF (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_CON1_SYNCON (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_ID (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_PARAM_GPIO (macro definition) of file isl29125_params.h is not documented. +warning: Member ISL29125_PARAM_MODE (macro definition) of file isl29125_params.h is not documented. +warning: Member ISL29125_PARAM_RANGE (macro definition) of file isl29125_params.h is not documented. +warning: Member ISL29125_PARAM_RES (macro definition) of file isl29125_params.h is not documented. +warning: Member ISL29125_PARAMS (macro definition) of file isl29125_params.h is not documented. +warning: Member ISL29125_REG_BDHB (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_BDLB (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_CONF1 (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_CONF2 (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_CONF3 (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_GDHB (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_GDLB (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_HTHHB (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_HTHLB (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_ID (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_LTHHB (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_LTHLB (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_RDHB (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_RDLB (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_RESET (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISL29125_REG_STATUS (macro definition) of file isl29125-internal.h is not documented. +warning: Member ISR_CAN1_RX0 (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN1_RX1 (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN1_SCE (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN1_TX (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN2_RX0 (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN2_RX1 (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN2_SCE (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN2_TX (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN3_RX0 (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN3_RX1 (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN3_SCE (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_CAN3_TX (macro definition) of file candev_stm32.h is not documented. +warning: Member ISR_STACKSIZE (macro definition) of file cpu_conf.h is not documented. +warning: Member ITG320X_PARAM_ADDR (macro definition) of file itg320x_params.h is not documented. +warning: Member ITG320X_PARAM_CLK_SEL (macro definition) of file itg320x_params.h is not documented. +warning: Member ITG320X_PARAM_DEV (macro definition) of file itg320x_params.h is not documented. +warning: Member ITG320X_PARAM_INT_DRIVE (macro definition) of file itg320x_params.h is not documented. +warning: Member ITG320X_PARAM_INT_LEVEL (macro definition) of file itg320x_params.h is not documented. +warning: Member ITG320X_PARAM_INT_PIN (macro definition) of file itg320x_params.h is not documented. +warning: Member ITG320X_PARAM_ISR_DIV (macro definition) of file itg320x_params.h is not documented. +warning: Member ITG320X_PARAM_LPF_BW (macro definition) of file itg320x_params.h is not documented. +warning: Member ITG320X_PARAMS (macro definition) of file itg320x_params.h is not documented. +warning: Member ITG320X_REG_DLPFS (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_GYRO_XOUT_H (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_GYRO_XOUT_L (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_GYRO_YOUT_H (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_GYRO_YOUT_L (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_GYRO_ZOUT_H (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_GYRO_ZOUT_L (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_INT_CFG (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_INT_STATUS (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_PWR_MGM (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_SMPLRT_DIV (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_TEMP_OUT_H (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_TEMP_OUT_L (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_REG_WHO_AM_I (macro definition) of file itg320x_regs.h is not documented. +warning: Member ITG320X_SAUL_INFO (macro definition) of file itg320x_params.h is not documented. +warning: Member J1_PIN1 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J1_PIN2 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J1_PIN3 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J1_PIN4 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J1_PIN5 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J1_PIN6 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J1_PIN7 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J1_PIN8 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J2_PIN1 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J2_PIN2 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J2_PIN3 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J2_PIN4 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J2_PIN5 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J2_PIN6 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J2_PIN7 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J2_PIN8 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J3_PIN1 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J3_PIN2 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J3_PIN3 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J3_PIN4 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J3_PIN5 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J3_PIN6 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J3_PIN7 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J3_PIN8 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J4_PIN1 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J4_PIN2 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J4_PIN3 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J4_PIN4 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J4_PIN5 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J4_PIN6 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J4_PIN7 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member J4_PIN8 (macro definition) of file mega-xplained_pinmap.h is not documented. +warning: Member JC42_BUS_FREE_TIME_US (macro definition) of file jc42_internal.h is not documented. +warning: Member JC42_NODEV (macro definition) of group drivers_jc42 is not documented. +warning: Member JC42_NOI2C (macro definition) of group drivers_jc42 is not documented. +warning: Member JC42_OK (macro definition) of group drivers_jc42 is not documented. +warning: Member JC42_PARAM_ADDR (macro definition) of file jc42_params.h is not documented. +warning: Member JC42_PARAM_I2C_DEV (macro definition) of file jc42_params.h is not documented. +warning: Member JC42_PARAMS (macro definition) of file jc42_params.h is not documented. +warning: Member JC42_PARAM_SPEED (macro definition) of file jc42_params.h is not documented. +warning: Member JC42_REG_CAP (macro definition) of file jc42_internal.h is not documented. +warning: Member JC42_REG_CONFIG (macro definition) of file jc42_internal.h is not documented. +warning: Member JC42_REG_DEVICEID (macro definition) of file jc42_internal.h is not documented. +warning: Member JC42_REG_MANID (macro definition) of file jc42_internal.h is not documented. +warning: Member JC42_REG_TEMP_CRITICAL (macro definition) of file jc42_internal.h is not documented. +warning: Member JC42_REG_TEMP_LOWER (macro definition) of file jc42_internal.h is not documented. +warning: Member JC42_REG_TEMP (macro definition) of file jc42_internal.h is not documented. +warning: Member JC42_REG_TEMP_UPPER (macro definition) of file jc42_internal.h is not documented. +warning: Member JC42_SAUL_INFO (macro definition) of file jc42_params.h is not documented. +warning: Member JTAGCFG_JTAG_PD_FORCE_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member KINETIS_FOPT (macro definition) of file board.h is not documented. +warning: Member KINETIS_TRNG (macro definition) of file periph_conf_common.h is not documented. +warning: Member KINETIS_TRNG (macro definition) of file periph_conf.h is not documented. +warning: Member kr_hash(const uint8_t *buf, size_t len) (function) of file hashes.h is not documented. +warning: Member KW2XRF_MAX_CHANNEL (macro definition) of group drivers_kw2xrf is not documented. +warning: Member KW2XRF_MIN_CHANNEL (macro definition) of group drivers_kw2xrf is not documented. +warning: Member KW2XRF_PARAM_CS (macro definition) of file board.h is not documented. +warning: Member KW2XRF_PARAM_CS (macro definition) of file kw2xrf_params.h is not documented. +warning: Member KW2XRF_PARAM_INT (macro definition) of file board.h is not documented. +warning: Member KW2XRF_PARAM_INT (macro definition) of file kw2xrf_params.h is not documented. +warning: Member KW2XRF_PARAM_RESET (macro definition) of file board.h is not documented. +warning: Member KW2XRF_PARAM_RESET (macro definition) of file kw2xrf_params.h is not documented. +warning: Member KW2XRF_PARAM_SLEEP (macro definition) of file kw2xrf_params.h is not documented. +warning: Member KW2XRF_PARAMS (macro definition) of file kw2xrf_params.h is not documented. +warning: Member KW2XRF_PARAM_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member KW2XRF_PARAM_SPI_CLK (macro definition) of file kw2xrf_params.h is not documented. +warning: Member KW2XRF_PARAM_SPI (macro definition) of file board.h is not documented. +warning: Member KW2XRF_PARAM_SPI (macro definition) of file kw2xrf_params.h is not documented. +warning: Member KW2XRF_SHARED_SPI (macro definition) of file board.h is not documented. +warning: Member KW41ZRF_ENABLE_LEDS (macro definition) of file kw41zrf_intern.h is not documented. +warning: Member KW41ZRF_LED_IRQ_OFF (macro definition) of file kw41zrf_intern.h is not documented. +warning: Member KW41ZRF_LED_IRQ_ON (macro definition) of file kw41zrf_intern.h is not documented. +warning: Member KW41ZRF_LED_NDSM_OFF (macro definition) of file kw41zrf_intern.h is not documented. +warning: Member KW41ZRF_LED_NDSM_ON (macro definition) of file kw41zrf_intern.h is not documented. +warning: Member KW41ZRF_LED_RX_OFF (macro definition) of file kw41zrf_intern.h is not documented. +warning: Member KW41ZRF_LED_RX_ON (macro definition) of file kw41zrf_intern.h is not documented. +warning: Member KW41ZRF_LED_TX_OFF (macro definition) of file kw41zrf_intern.h is not documented. +warning: Member KW41ZRF_LED_TX_ON (macro definition) of file kw41zrf_intern.h is not documented. +warning: Member KW41ZRF_MAX_CHANNEL (macro definition) of group drivers_kw41zrf is not documented. +warning: Member KW41ZRF_PM_BLOCKER (macro definition) of file kw41zrf_intern.h is not documented. +warning: Member L3G4200D_CTRL1_ALLON (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL1_MODE_POS (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL1_PD (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL1_XEN (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL1_YEN (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL1_ZEN (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL4_BDU (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL4_BLE (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL4_FS1 (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL4_FS2 (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL4_FS_POS (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL4_SIM (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL4_ST1 (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_CTRL4_ST2 (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_PARAM_ADDR (macro definition) of file l3g4200d_params.h is not documented. +warning: Member L3G4200D_PARAM_I2C (macro definition) of file l3g4200d_params.h is not documented. +warning: Member L3G4200D_PARAM_INT1 (macro definition) of file board.h is not documented. +warning: Member L3G4200D_PARAM_INT1 (macro definition) of file l3g4200d_params.h is not documented. +warning: Member L3G4200D_PARAM_INT2 (macro definition) of file board.h is not documented. +warning: Member L3G4200D_PARAM_INT2 (macro definition) of file l3g4200d_params.h is not documented. +warning: Member L3G4200D_PARAM_MODE (macro definition) of file l3g4200d_params.h is not documented. +warning: Member L3G4200D_PARAM_SCALE (macro definition) of file l3g4200d_params.h is not documented. +warning: Member L3G4200D_PARAMS (macro definition) of file l3g4200d_params.h is not documented. +warning: Member L3G4200D_REG_CTRL1 (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_CTRL2 (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_CTRL3 (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_CTRL4 (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_CTRL5 (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_FIFO_CTRL (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_FIFO_SRC (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_INT1_CFG (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_INT1_DURATION (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_INT1_SRC (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_INT1_THS_XH (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_INT1_THS_XL (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_INT1_THS_YH (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_INT1_THS_YL (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_INT1_THS_ZH (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_INT1_THS_ZL (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_OUT_TEMP (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_OUT_X_H (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_OUT_X_L (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_OUT_Y_H (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_OUT_Y_L (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_OUT_Z_H (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_OUT_Z_L (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_REF (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_STATUS (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_REG_WHO_AM_I (macro definition) of file l3g4200d-regs.h is not documented. +warning: Member L3G4200D_SAUL_INFO (macro definition) of file l3g4200d_params.h is not documented. +warning: Member LC709203F_PARAMS_ADDR (macro definition) of file lc709203f_params.h is not documented. +warning: Member LC709203F_PARAMS_ALARM_PIN (macro definition) of file lc709203f_params.h is not documented. +warning: Member LC709203F_PARAMS (macro definition) of file lc709203f_params.h is not documented. +warning: Member LCD_BACKLIGHT_HIGH (macro definition) of file board.h is not documented. +warning: Member LCD_BACKLIGHT_LOW (macro definition) of file board.h is not documented. +warning: Member LCD_BACKLIGHT (macro definition) of file board.h is not documented. +warning: Member LCD_BACKLIGHT_MID (macro definition) of file board.h is not documented. +warning: Member LCD_CS (macro definition) of file board.h is not documented. +warning: Member LCD_DC (macro definition) of file board.h is not documented. +warning: Member LCD_DET (macro definition) of file board.h is not documented. +warning: Member LCD_RESET (macro definition) of file board.h is not documented. +warning: Member LCD_RS (macro definition) of file board.h is not documented. +warning: Member LCD_RST (macro definition) of file board.h is not documented. +warning: Member LDECLTYPE(x) (macro definition) of group sys_ut is not documented. +warning: Member LED0_ACTIVE (macro definition) of file board.h is not documented. +warning: Member LED0_BIT (macro definition) of file board.h is not documented. +warning: Member LED0B_PIN (macro definition) of file board.h is not documented. +warning: Member LED0G_PIN (macro definition) of file board.h is not documented. +warning: Member LED0 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member LED0R_PIN (macro definition) of file board.h is not documented. +warning: Member LED1_BIT (macro definition) of file board.h is not documented. +warning: Member LED1B_PIN (macro definition) of file board.h is not documented. +warning: Member LED1G_PIN (macro definition) of file board.h is not documented. +warning: Member LED1 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member LED1R_PIN (macro definition) of file board.h is not documented. +warning: Member LED2_BIT (macro definition) of file board.h is not documented. +warning: Member LED_ALL_OFF (macro definition) of file board.h is not documented. +warning: Member LED_ALL_OFF (macro definition) of group boards_common_remote is not documented. +warning: Member LED_ALL_ON (macro definition) of file board.h is not documented. +warning: Member LED_ALL_ON (macro definition) of group boards_common_remote is not documented. +warning: Member LED_BLUE_OFF (macro definition) of file board.h is not documented. +warning: Member LED_BLUE_ON (macro definition) of file board.h is not documented. +warning: Member LED_BLUE_PIN (macro definition) of file board.h is not documented. +warning: Member LED_BLUE_TOGGLE (macro definition) of file board.h is not documented. +warning: Member LED_FADE_EXPAND(led) (macro definition) of file fancy_leds.h is not documented. +warning: Member LED_FADE(led) (macro definition) of file fancy_leds.h is not documented. +warning: Member LED_GREEN_OFF (macro definition) of file board.h is not documented. +warning: Member LED_GREEN_ON (macro definition) of file board.h is not documented. +warning: Member LED_GREEN_PIN (macro definition) of file board.h is not documented. +warning: Member LED_GREEN_TOGGLE (macro definition) of file board.h is not documented. +warning: Member LED_MASK (macro definition) of file board.h is not documented. +warning: Member LED_MASK_P0 (macro definition) of file board.h is not documented. +warning: Member LED_MASK_P1 (macro definition) of file board.h is not documented. +warning: Member LED_OUT_REG (macro definition) of file board.h is not documented. +warning: Member LED_OUT_REG (macro definition) of group boards_common_msb-430 is not documented. +warning: Member LED_PANIC (macro definition) of file board.h is not documented. +warning: Member LED_PANIC (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member LED_PORT_DDR (macro definition) of file board.h is not documented. +warning: Member LED_PORT (macro definition) of file board.h is not documented. +warning: Member LED_PORT (macro definition) of group boards_bastwan is not documented. +warning: Member LED_PORT (macro definition) of group boards_common_arduino_zero is not documented. +warning: Member LED_PORT (macro definition) of group boards_common_saml1x is not documented. +warning: Member LED_PORT (macro definition) of group boards_samr30-xpro is not documented. +warning: Member LED_PORT (macro definition) of group boards_samr34-xpro is not documented. +warning: Member LED_PORT_MASK (macro definition) of file board.h is not documented. +warning: Member LED_RAINBOW() (macro definition) of file fancy_leds.h is not documented. +warning: Member LED_RED_OFF (macro definition) of file board.h is not documented. +warning: Member LED_RED_ON (macro definition) of file board.h is not documented. +warning: Member LED_RED_PIN (macro definition) of file board.h is not documented. +warning: Member LED_RED_TOGGLE (macro definition) of file board.h is not documented. +warning: Member LFXO_FREQ (macro definition) of file periph_conf.h is not documented. +warning: Member LINEFILL (macro definition) of file ColorTextColors.h is not documented. +warning: Member LIS2DH12_CLICK_THS_LIR (macro definition) of file lis2dh12_registers.h is not documented. +warning: Member LIS2DH12_CTRL_REG2_FDS (macro definition) of file lis2dh12_registers.h is not documented. +warning: Member LIS2DH12_CTRL_REG2_HPCLICK (macro definition) of file lis2dh12_registers.h is not documented. +warning: Member LIS2DH12_CTRL_REG2_HP_IA1 (macro definition) of file lis2dh12_registers.h is not documented. +warning: Member LIS2DH12_CTRL_REG2_HP_IA2 (macro definition) of file lis2dh12_registers.h is not documented. +warning: Member LIS2DH12_PARAM_ADDR (macro definition) of file lis2dh12_params.h is not documented. +warning: Member LIS2DH12_PARAM_CS (macro definition) of file board.h is not documented. +warning: Member LIS2DH12_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member LIS2DH12_PARAM_I2C (macro definition) of file lis2dh12_params.h is not documented. +warning: Member LIS2DH12_PARAM_INT_PIN1 (macro definition) of file board.h is not documented. +warning: Member LIS2DH12_PARAM_INT_PIN1 (macro definition) of file lis2dh12_params.h is not documented. +warning: Member LIS2DH12_PARAM_INT_PIN2 (macro definition) of file board.h is not documented. +warning: Member LIS2DH12_PARAM_INT_PIN2 (macro definition) of file lis2dh12_params.h is not documented. +warning: Member LIS2DH12_PARAM_RATE (macro definition) of file lis2dh12_params.h is not documented. +warning: Member LIS2DH12_PARAM_RESOLUTION (macro definition) of file lis2dh12_params.h is not documented. +warning: Member LIS2DH12_PARAMS_BUSCFG (macro definition) of file lis2dh12_params.h is not documented. +warning: Member LIS2DH12_PARAM_SCALE (macro definition) of file lis2dh12_params.h is not documented. +warning: Member LIS2DH12_PARAMS (macro definition) of file lis2dh12_params.h is not documented. +warning: Member LIS2DH12_SAULINFO (macro definition) of file lis2dh12_params.h is not documented. +warning: Member lis2dh12_saul_temp_driver (variable) of group drivers_lis2dh12 is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FM0_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FM1_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FM_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FM_SHIFT (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FTH0_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FTH1_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FTH2_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FTH3_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FTH4_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FTH_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_FTH_SHIFT (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_CTRL_REG_TR_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_SRC_REG_EMPTY_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_SRC_REG_FSS0_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_SRC_REG_FSS1_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_SRC_REG_FSS2_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_SRC_REG_FSS3_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_SRC_REG_FSS4_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_SRC_REG_FSS_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_SRC_REG_FSS_SHIFT (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_SRC_REG_OVRN_FIFO_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_FIFO_SRC_REG_WTM_MASK (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_PARAM_CLK (macro definition) of file board.h is not documented. +warning: Member LIS3DH_PARAM_CLK (macro definition) of file lis3dh_params.h is not documented. +warning: Member LIS3DH_PARAM_CS (macro definition) of file board.h is not documented. +warning: Member LIS3DH_PARAM_CS (macro definition) of file lis3dh_params.h is not documented. +warning: Member LIS3DH_PARAM_INT1 (macro definition) of file board.h is not documented. +warning: Member LIS3DH_PARAM_INT1 (macro definition) of file lis3dh_params.h is not documented. +warning: Member LIS3DH_PARAM_INT2 (macro definition) of file board.h is not documented. +warning: Member LIS3DH_PARAM_INT2 (macro definition) of file lis3dh_params.h is not documented. +warning: Member LIS3DH_PARAM_ODR (macro definition) of file lis3dh_params.h is not documented. +warning: Member LIS3DH_PARAM_SCALE (macro definition) of file lis3dh_params.h is not documented. +warning: Member LIS3DH_PARAMS (macro definition) of file lis3dh_params.h is not documented. +warning: Member LIS3DH_PARAM_SPI (macro definition) of file lis3dh_params.h is not documented. +warning: Member LIS3DH_REG_CLICK_CFG (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_CLICK_SRC (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_CLICK_THS (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_CTRL_REG1 (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_CTRL_REG2 (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_CTRL_REG3 (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_CTRL_REG4 (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_CTRL_REG5 (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_CTRL_REG6 (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_FIFO_CTRL_REG (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_FIFO_SRC_REG (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_INT1_CFG (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_INT1_DURATION (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_INT1_SOURCE (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_INT1_THS (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_INT_COUNTER_REG (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_AUX_ADC1_H (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_AUX_ADC1_L (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_AUX_ADC2_H (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_AUX_ADC2_L (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_AUX_ADC3_H (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_AUX_ADC3_L (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_X_H (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_X_L (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_Y_H (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_Y_L (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_Z_H (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_OUT_Z_L (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_REFERENCE (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_STATUS_AUX (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_STATUS_REG (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_TEMP_CFG_REG (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_TIME_LATENCY (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_TIME_LIMIT (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_TIME_WINDOW (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_REG_WHO_AM_I (macro definition) of group drivers_lis3dh is not documented. +warning: Member LIS3DH_SAUL_INFO (macro definition) of file lis3dh_params.h is not documented. +warning: Member LIS3DML_WHO_AM_I_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_CHIP_ADDR (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_CHIP_ID (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_CTRL_REG1 (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_CTRL_REG2 (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_CTRL_REG3 (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_CTRL_REG4 (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_CTRL_REG5 (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_INT_CFG_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_INT_SRC_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_INT_THS_H_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_INT_THS_L_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_CFG_IEA (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_CFG_IEN (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_CFG_LIR (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_CFG_XIEN (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_CFG_YIEN (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_CFG_ZIEN (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_SRC_INT (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_SRC_MROI (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_SRC_NTH_X (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_SRC_NTH_Y (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_SRC_NTH_Z (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_SRC_PTH_X (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_SRC_PTH_Y (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_INT_SRC_PTH_Z (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_REG1_TEMP_EN (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_REG2_REBOOT (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_REG2_SOFT_RST (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_REG3_CONT_CONV_MODE (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_REG3_LOW_POWER_EN (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_REG3_Z_LOW_POWER (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_REG3_Z_MEDIUM_POWER (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_REG5_BDU (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_MASK_REG5_BDU_OFF (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_OUT_X_H_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_OUT_X_L_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_OUT_Y_H_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_OUT_Y_L_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_OUT_Z_H_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_OUT_Z_L_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_PARAM_ADDR (macro definition) of file board.h is not documented. +warning: Member LIS3MDL_PARAM_ADDR (macro definition) of file lis3mdl_params.h is not documented. +warning: Member LIS3MDL_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member LIS3MDL_PARAM_I2C (macro definition) of file lis3mdl_params.h is not documented. +warning: Member LIS3MDL_PARAM_ODR (macro definition) of file lis3mdl_params.h is not documented. +warning: Member LIS3MDL_PARAM_OPMODE (macro definition) of file lis3mdl_params.h is not documented. +warning: Member LIS3MDL_PARAM_SCALE (macro definition) of file lis3mdl_params.h is not documented. +warning: Member LIS3MDL_PARAMS (macro definition) of file lis3mdl_params.h is not documented. +warning: Member LIS3MDL_PARAM_XYMODE (macro definition) of file lis3mdl_params.h is not documented. +warning: Member LIS3MDL_PARAM_ZMODE (macro definition) of file lis3mdl_params.h is not documented. +warning: Member LIS3MDL_SAUL_INFO (macro definition) of file lis3mdl_params.h is not documented. +warning: Member LIS3MDL_STATUS_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_TEMP_OUT_H_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LIS3MDL_TEMP_OUT_L_REG (macro definition) of file lis3mdl-internal.h is not documented. +warning: Member LITTLEFS2_VFS_FILE_BUFFER_SIZE (macro definition) of group sys_vfs is not documented. +warning: Member LITTLEFS_VFS_FILE_BUFFER_SIZE (macro definition) of group sys_vfs is not documented. +warning: Member LL_APPEND2_VS2008(head, add, next) (macro definition) of group sys_ut is not documented. +warning: Member LL_APPEND_VS2008(head, add) (macro definition) of group sys_ut is not documented. +warning: Member LL_DELETE2_VS2008(head, del, next) (macro definition) of group sys_ut is not documented. +warning: Member LL_DELETE_VS2008(head, del) (macro definition) of group sys_ut is not documented. +warning: Member LL_SORT2(list, cmp, next) (macro definition) of group sys_ut is not documented. +warning: Member LL_SORT(list, cmp) (macro definition) of group sys_ut is not documented. +warning: Member LOCK_TCPIP_CORE() (macro definition) of file sys_arch.h is not documented. +warning: Member LOCK_TCPIP_CORE() (macro definition) of group pkg_lwip_sys is not documented. +warning: Member LOG_CRITICAL(...) (macro definition) of file log.h is not documented. +warning: Member LOG_DEBUG(...) (macro definition) of file log.h is not documented. +warning: Member LOG_ERROR(...) (macro definition) of file log.h is not documented. +warning: Member LOG_INFO(...) (macro definition) of file log.h is not documented. +warning: Member log_register(__X, __Y, __Z, __A, __B) (macro definition) of file log.h is not documented. +warning: Member LOG_RIOT_DEBUG(...) (macro definition) of file openwsn_log.h is not documented. +warning: Member LOG_RIOT_ERROR(...) (macro definition) of file openwsn_log.h is not documented. +warning: Member LOG_RIOT_INFO(...) (macro definition) of file openwsn_log.h is not documented. +warning: Member LOG_RIOT_WARNING(...) (macro definition) of file openwsn_log.h is not documented. +warning: Member LOG_WARNING(...) (macro definition) of file log.h is not documented. +warning: Member LOG_WARN(...) (macro definition) of file log.h is not documented. +warning: Member log_write(level,...) (macro definition) of file log_module.h is not documented. +warning: Member LORA_RESET_MASK (macro definition) of file board.h is not documented. +warning: Member LORA_RESET_OFF (macro definition) of file board.h is not documented. +warning: Member LORA_RESET_ON (macro definition) of file board.h is not documented. +warning: Member LORA_RESET_PIN (macro definition) of file board.h is not documented. +warning: Member LORA_RESET_PORT (macro definition) of file board.h is not documented. +warning: Member LORA_RESET_TOGGLE (macro definition) of file board.h is not documented. +warning: Member LOW_BAT_MON (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member LPD8808_PARAM_LED_CNT (macro definition) of file lpd8808_params.h is not documented. +warning: Member LPD8808_PARAM_PIN_CLK (macro definition) of file lpd8808_params.h is not documented. +warning: Member LPD8808_PARAM_PIN_DAT (macro definition) of file lpd8808_params.h is not documented. +warning: Member LPD8808_PARAMS (macro definition) of file lpd8808_params.h is not documented. +warning: Member LPSXXX_CTRL_REG1_ODR (macro definition) of file lpsxxx_internal.h is not documented. +warning: Member LPSXXX_CTRL_REG1_ODR_POS (macro definition) of file lpsxxx_internal.h is not documented. +warning: Member LPSXXX_CTRL_REG1_SIM (macro definition) of file lpsxxx_internal.h is not documented. +warning: Member LPSXXX_PARAM_ADDR (macro definition) of file board.h is not documented. +warning: Member LPSXXX_PARAM_ADDR (macro definition) of file lpsxxx_params.h is not documented. +warning: Member LPSXXX_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member LPSXXX_PARAM_I2C (macro definition) of file lpsxxx_params.h is not documented. +warning: Member LPSXXX_PARAM_RATE (macro definition) of file lpsxxx_params.h is not documented. +warning: Member LPSXXX_PARAMS (macro definition) of file lpsxxx_params.h is not documented. +warning: Member LPSXXX_REG_PRESS_OUT_H (macro definition) of file lpsxxx_internal.h is not documented. +warning: Member LPSXXX_REG_PRESS_OUT_L (macro definition) of file lpsxxx_internal.h is not documented. +warning: Member LPSXXX_REG_PRESS_OUT_XL (macro definition) of file lpsxxx_internal.h is not documented. +warning: Member LPSXXX_REG_STATUS (macro definition) of file lpsxxx_internal.h is not documented. +warning: Member LPSXXX_REG_TEMP_OUT_H (macro definition) of file lpsxxx_internal.h is not documented. +warning: Member LPSXXX_REG_TEMP_OUT_L (macro definition) of file lpsxxx_internal.h is not documented. +warning: Member LPSXXX_REG_WHO_AM_I (macro definition) of file lpsxxx_internal.h is not documented. +warning: Member LPSXXX_SAUL_INFO (macro definition) of file lpsxxx_params.h is not documented. +warning: Member LPTMR_CONFIG (macro definition) of file periph_conf_common.h is not documented. +warning: Member LPTMR_CONFIG (macro definition) of file periph_conf.h is not documented. +warning: Member LPTMR_ISR_0 (macro definition) of file periph_conf_common.h is not documented. +warning: Member LPTMR_ISR_0 (macro definition) of file periph_conf.h is not documented. +warning: Member LPTMR_NUMOF (macro definition) of file periph_conf_common.h is not documented. +warning: Member LPTMR_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member LPUART_0_CLOCK (macro definition) of file periph_conf.h is not documented. +warning: Member LPUART_0_ISR (macro definition) of file periph_conf_common.h is not documented. +warning: Member LPUART_0_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member LPUART_0_SRC (macro definition) of file periph_conf_common.h is not documented. +warning: Member LPUART_0_SRC (macro definition) of file periph_conf.h is not documented. +warning: Member LSM303AGR_PARAM_ACC_ADDR (macro definition) of file board.h is not documented. +warning: Member LSM303AGR_PARAM_MAG_ADDR (macro definition) of file board.h is not documented. +warning: Member LSM303DLHC_ACC_DEFAULT_ADDRESS (macro definition) of group drivers_lsm303dlhc is not documented. +warning: Member LSM303DLHC_CTRL1_A_100HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_10HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_1620HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_1HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_200HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_25HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_400HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_50HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_LOW_POWER (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_N1344HZ_L5376HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_POWEROFF (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_XEN (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_YEN (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL1_A_ZEN (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL3_A_I1_AOI1 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL3_A_I1_AOI2 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL3_A_I1_CLICK (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL3_A_I1_DRDY1 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL3_A_I1_DRDY2 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL3_A_I1_NONE (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL3_A_I1_OVERRUN (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL3_A_I1_WTM (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL4_A_BDU (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL4_A_BLE (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL4_A_HR (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL4_A_SCALE_16G (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL4_A_SCALE_2G (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL4_A_SCALE_4G (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_CTRL4_A_SCALE_8G (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_GAIN_1 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_GAIN_2 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_GAIN_3 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_GAIN_4 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_GAIN_5 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_GAIN_6 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_GAIN_7 (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_MAG_DEFAULT_ADDRESS (macro definition) of group drivers_lsm303dlhc is not documented. +warning: Member LSM303DLHC_MAG_MODE_CONTINUOUS (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_MAG_MODE_SINGLE (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_MAG_MODE_SLEEP (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_PARAM_ACC_ADDR (macro definition) of file lsm303dlhc_params.h is not documented. +warning: Member LSM303DLHC_PARAM_ACC_PIN (macro definition) of file board.h is not documented. +warning: Member LSM303DLHC_PARAM_ACC_PIN (macro definition) of file lsm303dlhc_params.h is not documented. +warning: Member LSM303DLHC_PARAM_ACC_RATE (macro definition) of file lsm303dlhc_params.h is not documented. +warning: Member LSM303DLHC_PARAM_ACC_SCALE (macro definition) of file lsm303dlhc_params.h is not documented. +warning: Member LSM303DLHC_PARAM_MAG_ADDR (macro definition) of file lsm303dlhc_params.h is not documented. +warning: Member LSM303DLHC_PARAM_MAG_GAIN (macro definition) of file lsm303dlhc_params.h is not documented. +warning: Member LSM303DLHC_PARAM_MAG_PIN (macro definition) of file board.h is not documented. +warning: Member LSM303DLHC_PARAM_MAG_PIN (macro definition) of file lsm303dlhc_params.h is not documented. +warning: Member LSM303DLHC_PARAM_MAG_RATE (macro definition) of file lsm303dlhc_params.h is not documented. +warning: Member LSM303DLHC_PARAMS (macro definition) of file lsm303dlhc_params.h is not documented. +warning: Member LSM303DLHC_REG_CRA_M (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_CRB_M (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_CTRL1_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_CTRL2_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_CTRL3_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_CTRL4_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_CTRL5_A_BOOT (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_CTRL5_A_FIFO_EN (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_CTRL5_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_CTRL6_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_MR_M (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_X_H_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_X_H_M (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_X_L_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_X_L_M (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_Y_H_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_Y_H_M (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_Y_L_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_Y_L_M (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_Z_H_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_Z_H_M (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_Z_L_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_OUT_Z_L_M (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_REFERENCE_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_SR_M (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_STATUS_A (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_TEMP_OUT_H (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_REG_TEMP_OUT_L (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_SAUL_INFO (macro definition) of file lsm303dlhc_params.h is not documented. +warning: Member LSM303DLHC_STATUS_XDA (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_STATUS_XOR (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_STATUS_YDA (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_STATUS_YOR (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_STATUS_ZDA (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_STATUS_ZOR (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_STATUS_ZYXDA (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_STATUS_ZYXOR (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_TEMP_DIS (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_TEMP_EN (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_TEMP_SAMPLE_0_75HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_TEMP_SAMPLE_15HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_TEMP_SAMPLE_1_5HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_TEMP_SAMPLE_220HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_TEMP_SAMPLE_30HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_TEMP_SAMPLE_3HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_TEMP_SAMPLE_75HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM303DLHC_TEMP_SAMPLE_7_5HZ (macro definition) of file lsm303dlhc-internal.h is not documented. +warning: Member LSM6DSL_CTRL3_C_BOOT (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_CTRL_FS_MASK (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_CTRL_FS_SHIFT (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_CTRL_ODR_MASK (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_CTRL_ODR_SHIFT (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_FIFO_CTRL3_GYRO_DEC_SHIFT (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_FIFO_CTRL5_CONTINUOUS_MODE (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_FIFO_CTRL5_FIFO_ODR_SHIFT (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_PARAM_ACC_FIFO_DEC (macro definition) of file lsm6dsl_params.h is not documented. +warning: Member LSM6DSL_PARAM_ACC_FS (macro definition) of file lsm6dsl_params.h is not documented. +warning: Member LSM6DSL_PARAM_ACC_ODR (macro definition) of file lsm6dsl_params.h is not documented. +warning: Member LSM6DSL_PARAM_ADDR (macro definition) of file board.h is not documented. +warning: Member LSM6DSL_PARAM_ADDR (macro definition) of file lsm6dsl_params.h is not documented. +warning: Member LSM6DSL_PARAM_GYRO_FIFO_DEC (macro definition) of file lsm6dsl_params.h is not documented. +warning: Member LSM6DSL_PARAM_GYRO_FS (macro definition) of file lsm6dsl_params.h is not documented. +warning: Member LSM6DSL_PARAM_GYRO_ODR (macro definition) of file lsm6dsl_params.h is not documented. +warning: Member LSM6DSL_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member LSM6DSL_PARAM_I2C (macro definition) of file lsm6dsl_params.h is not documented. +warning: Member LSM6DSL_PARAMS (macro definition) of file lsm6dsl_params.h is not documented. +warning: Member LSM6DSL_REG_CTRL10_C (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_CTRL1_XL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_CTRL2_G (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_CTRL3_C (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_CTRL4_C (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_CTRL5_C (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_CTRL6_C (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_CTRL7_G (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_CTRL8_XL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_CTRL9_XL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_D6D_SRC (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_DRDY_PULSE_CFG_G (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_CTRL1 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_CTRL2 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_CTRL3 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_CTRL4 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_CTRL5 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_DATA_OUT_H (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_DATA_OUT_L (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_STATUS1 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_STATUS2 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_STATUS3 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FIFO_STATUS4 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FREE_FALL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FUNC_CFG_ACCESS (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FUNC_SRC_1 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_FUNC_SRC_2 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_INT1_CTRL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_INT2_CTRL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_INT_DUR2 (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_MASTER_CMD_CODE (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_MASTER_CONFIG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_MD1_CFG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_MD2_CFG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUT_MAG_RAW_X_H (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUT_MAG_RAW_X_L (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUT_MAG_RAW_Y_H (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUT_MAG_RAW_Y_L (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUT_MAG_RAW_Z_H (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUT_MAG_RAW_Z_L (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUT_TEMP_H (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUT_TEMP_L (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTX_H_G (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTX_H_XL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTX_L_G (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTX_L_XL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTY_H_G (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTY_H_XL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTY_L_G (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTY_L_XL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTZ_H_G (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTZ_H_XL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTZ_L_G (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_OUTZ_L_XL (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB10_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB11_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB12_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB13_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB14_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB15_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB16_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB17_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB18_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB1_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB2_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB3_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB4_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB5_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB6_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB7_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB8_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSORHUB9_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSOR_SYC_RES_RATIO (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENSOR_SYNC_TIME_FRAME (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_SENS_SYNC_SPI_ERR_CODE (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_STATUS_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_STEP_COUNTER_H (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_STEP_COUNTER_L (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_STEP_TIMESTAMP_H (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_STEP_TIMESTAMP_L (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_TAP_CFG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_TAP_SRC (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_TAP_THS_6D (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_TIMESTAMP0_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_TIMESTAMP1_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_TIMESTAMP2_REG (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_WAKE_UP_DUR (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_WAKE_UP_SRC (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_WAKE_UP_THS (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_WHO_AM_I (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_WRIST_TILT_IA (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_X_OFS_USR (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_Y_OFS_USR (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_REG_Z_OFS_USR (macro definition) of file lsm6dsl_internal.h is not documented. +warning: Member LSM6DSL_SAUL_INFO (macro definition) of file lsm6dsl_params.h is not documented. +warning: Member LTC4150_PARAM_FLAGS (macro definition) of file ltc4150_params.h is not documented. +warning: Member LTC4150_PARAM_INT (macro definition) of file ltc4150_params.h is not documented. +warning: Member LTC4150_PARAM_POL (macro definition) of file ltc4150_params.h is not documented. +warning: Member LTC4150_PARAM_PULSES (macro definition) of file ltc4150_params.h is not documented. +warning: Member LTC4150_PARAM_RECDATA (macro definition) of file ltc4150_params.h is not documented. +warning: Member LTC4150_PARAM_RECS (macro definition) of file ltc4150_params.h is not documented. +warning: Member LTC4150_PARAM_SHUTDOWN (macro definition) of file ltc4150_params.h is not documented. +warning: Member LTC4150_PARAMS (macro definition) of file ltc4150_params.h is not documented. +warning: Member LTC4150_SAULINFO (macro definition) of file ltc4150_params.h is not documented. +warning: Member LUAR_LOAD_ALL (macro definition) of file lua_run.h is not documented. +warning: Member LUAR_LOAD_NONE (macro definition) of file lua_run.h is not documented. +warning: Member lv_anim_user_data_t (typedef) of group pkg_lvgl7 is not documented. +warning: Member lv_anim_user_data_t (typedef) of group pkg_lvgl is not documented. +warning: Member LV_ANTIALIAS (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ANTIALIAS (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ATTRIBUTE_DMA (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ATTRIBUTE_DMA (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ATTRIBUTE_FAST_MEM (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ATTRIBUTE_FAST_MEM (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ATTRIBUTE_FLUSH_READY (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ATTRIBUTE_FLUSH_READY (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ATTRIBUTE_LARGE_CONST (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ATTRIBUTE_LARGE_CONST (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ATTRIBUTE_MEM_ALIGN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ATTRIBUTE_MEM_ALIGN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ATTRIBUTE_MEM_ALIGN_SIZE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ATTRIBUTE_MEM_ALIGN_SIZE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ATTRIBUTE_TASK_HANDLER (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ATTRIBUTE_TASK_HANDLER (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ATTRIBUTE_TICK_INC (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ATTRIBUTE_TICK_INC (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_BIG_ENDIAN_SYSTEM (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_BIG_ENDIAN_SYSTEM (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_CALENDAR_WEEK_STARTS_MONDAY (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_CALENDAR_WEEK_STARTS_MONDAY (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_CHART_AXIS_TICK_LABEL_MAX_LEN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_CHART_AXIS_TICK_LABEL_MAX_LEN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_COLOR_16_SWAP (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_COLOR_16_SWAP (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_COLOR_DEPTH (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_COLOR_DEPTH (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_COLOR_SCREEN_TRANSP (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_COLOR_SCREEN_TRANSP (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_COLOR_TRANSP (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_COLOR_TRANSP (macro definition) of group pkg_lvgl is not documented. +warning: Member lv_coord_t (typedef) of file lvgl_riot_conf.h is not documented. +warning: Member LV_DISP_DEF_REFR_PERIOD (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_DISP_DEF_REFR_PERIOD (macro definition) of group pkg_lvgl is not documented. +warning: Member lv_disp_drv_user_data_t (typedef) of group pkg_lvgl7 is not documented. +warning: Member lv_disp_drv_user_data_t (typedef) of group pkg_lvgl is not documented. +warning: Member LV_DISP_LARGE_LIMIT (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_DISP_LARGE_LIMIT (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_DISP_MEDIUM_LIMIT (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_DISP_MEDIUM_LIMIT (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_DISP_SMALL_LIMIT (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_DISP_SMALL_LIMIT (macro definition) of group pkg_lvgl is not documented. +warning: Member LVD_LVW_DCDC_IRQn (macro definition) of file cpu_conf.h is not documented. +warning: Member LV_DPI (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_DPI (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_DROPDOWN_DEF_ANIM_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_DROPDOWN_DEF_ANIM_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ENABLE_GC (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ENABLE_GC (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_EXPORT_CONST_INT(int_value) (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_EXPORT_CONST_INT(int_value) (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_CUSTOM_DECLARE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_CUSTOM_DECLARE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_DEJAVU_16_PERSIAN_HEBREW (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_DEJAVU_16_PERSIAN_HEBREW (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_FMT_TXT_LARGE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_FMT_TXT_LARGE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_12 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_12 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_12_SUBPX (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_12_SUBPX (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_14 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_14 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_16 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_16 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_18 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_18 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_20 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_20 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_22 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_22 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_24 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_24 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_26 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_26 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_28_COMPRESSED (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_28_COMPRESSED (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_28 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_28 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_30 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_30 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_32 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_32 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_34 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_34 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_36 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_36 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_38 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_38 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_40 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_40 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_42 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_42 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_44 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_44 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_46 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_46 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_MONTSERRAT_48 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_MONTSERRAT_48 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_SIMSUN_16_CJK (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_SIMSUN_16_CJK (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_SUBPX_BGR (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_SUBPX_BGR (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_FONT_UNSCII_8 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_FONT_UNSCII_8 (macro definition) of group pkg_lvgl is not documented. +warning: Member lv_font_user_data_t (typedef) of group pkg_lvgl7 is not documented. +warning: Member lv_font_user_data_t (typedef) of group pkg_lvgl is not documented. +warning: Member lv_group_user_data_t (typedef) of group pkg_lvgl7 is not documented. +warning: Member lv_group_user_data_t (typedef) of group pkg_lvgl is not documented. +warning: Member LV_IMGBTN_TILED (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_IMGBTN_TILED (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_IMG_CACHE_DEF_SIZE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_IMG_CACHE_DEF_SIZE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_IMG_CF_ALPHA (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_IMG_CF_ALPHA (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_IMG_CF_INDEXED (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_IMG_CF_INDEXED (macro definition) of group pkg_lvgl is not documented. +warning: Member lv_img_decoder_user_data_t (typedef) of group pkg_lvgl7 is not documented. +warning: Member lv_img_decoder_user_data_t (typedef) of group pkg_lvgl is not documented. +warning: Member LV_INDEV_DEF_DRAG_LIMIT (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_INDEV_DEF_DRAG_LIMIT (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_INDEV_DEF_DRAG_THROW (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_INDEV_DEF_DRAG_THROW (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_INDEV_DEF_GESTURE_LIMIT (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_INDEV_DEF_GESTURE_LIMIT (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_INDEV_DEF_GESTURE_MIN_VELOCITY (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_INDEV_DEF_GESTURE_MIN_VELOCITY (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_INDEV_DEF_LONG_PRESS_REP_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_INDEV_DEF_LONG_PRESS_REP_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_INDEV_DEF_LONG_PRESS_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_INDEV_DEF_LONG_PRESS_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_INDEV_DEF_READ_PERIOD (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_INDEV_DEF_READ_PERIOD (macro definition) of group pkg_lvgl is not documented. +warning: Member lv_indev_drv_user_data_t (typedef) of group pkg_lvgl7 is not documented. +warning: Member lv_indev_drv_user_data_t (typedef) of group pkg_lvgl is not documented. +warning: Member LV_LABEL_DEF_SCROLL_SPEED (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_LABEL_DEF_SCROLL_SPEED (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_LABEL_LONG_TXT_HINT (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_LABEL_LONG_TXT_HINT (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_LABEL_TEXT_SEL (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_LABEL_TEXT_SEL (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_LABEL_WAIT_CHAR_COUNT (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_LABEL_WAIT_CHAR_COUNT (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_LED_BRIGHT_MAX (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_LED_BRIGHT_MAX (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_LED_BRIGHT_MIN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_LED_BRIGHT_MIN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_LINEMETER_PRECISE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_LINEMETER_PRECISE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_LIST_DEF_ANIM_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_LIST_DEF_ANIM_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_MEM_ADR (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_MEM_ADR (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_MEM_ATTR (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_MEM_ATTR (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_MEM_AUTO_DEFRAG (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_MEM_AUTO_DEFRAG (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_MEMCPY_MEMSET_STD (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_MEMCPY_MEMSET_STD (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_MEM_CUSTOM (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_MEM_CUSTOM (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_MEM_SIZE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_MEM_SIZE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_PAGE_DEF_ANIM_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_PAGE_DEF_ANIM_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ROLLER_DEF_ANIM_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ROLLER_DEF_ANIM_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_ROLLER_INF_PAGES (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_ROLLER_INF_PAGES (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_SPINNER_DEF_ANIM (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_SPINNER_DEF_ANIM (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_SPINNER_DEF_ARC_LENGTH (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_SPINNER_DEF_ARC_LENGTH (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_SPINNER_DEF_SPIN_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_SPINNER_DEF_SPIN_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_SPRINTF_CUSTOM (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_SPRINTF_CUSTOM (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TABLE_CELL_STYLE_CNT (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TABLE_CELL_STYLE_CNT (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TABLE_COL_MAX (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TABLE_COL_MAX (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TABVIEW_DEF_ANIM_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TABVIEW_DEF_ANIM_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TEXTAREA_DEF_CURSOR_BLINK_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TEXTAREA_DEF_CURSOR_BLINK_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TEXTAREA_DEF_PWD_SHOW_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TEXTAREA_DEF_PWD_SHOW_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_THEME_DEFAULT_COLOR_PRIMARY (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_THEME_DEFAULT_COLOR_PRIMARY (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_THEME_DEFAULT_COLOR_SECONDARY (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_THEME_DEFAULT_COLOR_SECONDARY (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_THEME_DEFAULT_FLAG (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_THEME_DEFAULT_FLAG (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_THEME_DEFAULT_FONT_NORMAL (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_THEME_DEFAULT_FONT_NORMAL (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_THEME_DEFAULT_FONT_SMALL (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_THEME_DEFAULT_FONT_SMALL (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_THEME_DEFAULT_FONT_SUBTITLE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_THEME_DEFAULT_FONT_SUBTITLE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_THEME_DEFAULT_FONT_TITLE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_THEME_DEFAULT_FONT_TITLE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_THEME_DEFAULT_INCLUDE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_THEME_DEFAULT_INCLUDE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_THEME_DEFAULT_INIT (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_THEME_DEFAULT_INIT (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TICK_CUSTOM_INCLUDE (macro definition) of file lvgl_riot_conf.h is not documented. +warning: Member LV_TICK_CUSTOM (macro definition) of file lvgl_riot_conf.h is not documented. +warning: Member LV_TICK_CUSTOM_SYS_TIME_EXPR (macro definition) of file lvgl_riot_conf.h is not documented. +warning: Member LV_TILEVIEW_DEF_ANIM_TIME (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TILEVIEW_DEF_ANIM_TIME (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TXT_BREAK_CHARS (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TXT_BREAK_CHARS (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TXT_COLOR_CMD (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TXT_COLOR_CMD (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TXT_ENC (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TXT_ENC (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TXT_LINE_BREAK_LONG_LEN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TXT_LINE_BREAK_LONG_LEN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TXT_LINE_BREAK_LONG_POST_MIN_LEN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TXT_LINE_BREAK_LONG_POST_MIN_LEN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_TXT_LINE_BREAK_LONG_PRE_MIN_LEN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_TXT_LINE_BREAK_LONG_PRE_MIN_LEN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_ANIMATION (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_ANIMATION (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_API_EXTENSION_V6 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_API_EXTENSION_V6 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_API_EXTENSION_V7 (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_API_EXTENSION_V7 (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_ARABIC_PERSIAN_CHARS (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_ARABIC_PERSIAN_CHARS (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_ARC (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_ARC (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_BAR (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_BAR (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_BIDI (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_BIDI (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_BLEND_MODES (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_BLEND_MODES (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_BTN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_BTN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_BTNMATRIX (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_BTNMATRIX (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_CALENDAR (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_CALENDAR (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_CANVAS (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_CANVAS (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_CHART (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_CHART (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_CHECKBOX (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_CHECKBOX (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_CONT (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_CONT (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_CPICKER (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_CPICKER (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_DEBUG (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_DEBUG (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_DROPDOWN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_DROPDOWN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_EXT_CLICK_AREA (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_EXT_CLICK_AREA (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_FILESYSTEM (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_FILESYSTEM (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_FONT_COMPRESSED (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_FONT_COMPRESSED (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_FONT_SUBPX (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_FONT_SUBPX (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_GAUGE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_GAUGE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_GPU (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_GPU (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_GPU_STM32_DMA2D (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_GPU_STM32_DMA2D (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_GROUP (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_GROUP (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_IMGBTN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_IMGBTN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_IMG (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_IMG (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_IMG_TRANSFORM (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_IMG_TRANSFORM (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_KEYBOARD (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_KEYBOARD (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_LABEL (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_LABEL (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_LED (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_LED (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_LINE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_LINE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_LINEMETER (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_LINEMETER (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_LIST (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_LIST (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_LOG (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_LOG (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_MSGBOX (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_MSGBOX (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_OBJMASK (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_OBJMASK (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_OBJ_REALIGN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_OBJ_REALIGN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_OPA_SCALE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_OPA_SCALE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_OUTLINE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_OUTLINE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_PAGE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_PAGE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_PATTERN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_PATTERN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_PERF_MONITOR (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_PERF_MONITOR (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_ROLLER (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_ROLLER (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_SHADOW (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_SHADOW (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_SLIDER (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_SLIDER (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_SPINBOX (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_SPINBOX (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_SPINNER (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_SPINNER (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_SWITCH (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_SWITCH (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_TABLE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_TABLE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_TABVIEW (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_TABVIEW (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_TEXTAREA (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_TEXTAREA (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_THEME_EMPTY (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_THEME_EMPTY (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_THEME_MATERIAL (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_THEME_MATERIAL (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_THEME_MONO (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_THEME_MONO (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_THEME_TEMPLATE (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_THEME_TEMPLATE (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_TILEVIEW (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_TILEVIEW (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_USER_DATA (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_USER_DATA (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_VALUE_STR (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_VALUE_STR (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_USE_WIN (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_USE_WIN (macro definition) of group pkg_lvgl is not documented. +warning: Member LV_VER_RES_MAX (macro definition) of group pkg_lvgl7 is not documented. +warning: Member LV_VER_RES_MAX (macro definition) of group pkg_lvgl is not documented. +warning: Member LWIP_6LOWPAN (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_ASSERT_CORE_LOCKED() (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_AUTOIP (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_DHCP (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_DONT_PROVIDE_BYTEORDER_FUNCTIONS (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_ETHERNET (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_IGMP (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_IPV4 (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_IPV6_AUTOCONFIG (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_IPV6 (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_IPV6_MLD (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_MARK_TCPIP_THREAD (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_NETCONN (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_NETIF_API (macro definition) of group pkg_lwip_opts is not documented. +warning: Member lwip_netif_init_devs(void) (function) of file lwip_init_devs.h is not documented. +warning: Member lwip_netif_setup_func_t)(void) (typedef) of file lwip_init_devs.h is not documented. +warning: Member LWIP_PLATFORM_ASSERT(x) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member LWIP_PLATFORM_DIAG(x) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member LWIP_RAW (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_SOCKET (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_STATS (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_TCP (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_UDPLITE (macro definition) of group pkg_lwip_opts is not documented. +warning: Member LWIP_UDP (macro definition) of group pkg_lwip_opts is not documented. +warning: Member MABBIPG_FD (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MABBIPG_HD (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON1_MARXEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON1_PASSALL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON1_RXPAUS (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON1_TXPAUS (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON3_FRMLNEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON3_FULDPX (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON3_HFRMEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON3_PADCFG0 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON3_PADCFG1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON3_PADCFG2 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON3_PHDREN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON3_TXCRCEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON4_BPEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON4_DEFER (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MACON4_NOBKOFF (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MAG3110_CTRL_REG1_AC (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_CTRL_REG1_DROS_MASK (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_CTRL_REG1_DROS_SHIFT (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_CTRL_REG1_DROS(x) (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_CTRL_REG1_FR (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_CTRL_REG1_TM (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_CTRL_REG2_AUTO_MRST_EN (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_CTRL_REG2_MAG_RST (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_CTRL_REG2_RAW (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_DR_STATUS_XDR (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_DR_STATUS_XOW (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_DR_STATUS_YDR (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_DR_STATUS_YOW (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_DR_STATUS_ZDR (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_DR_STATUS_ZOW (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_DR_STATUS_ZYXDR (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_DR_STATUS_ZYXOW (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_PARAM_ADDR (macro definition) of file board.h is not documented. +warning: Member MAG3110_PARAM_ADDR (macro definition) of file mag3110_params.h is not documented. +warning: Member MAG3110_PARAM_ADDR (macro definition) of group boards_frdm-kl43z is not documented. +warning: Member MAG3110_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member MAG3110_PARAM_I2C (macro definition) of file mag3110_params.h is not documented. +warning: Member MAG3110_PARAM_I2C (macro definition) of group boards_frdm-kl43z is not documented. +warning: Member MAG3110_PARAM_OFFSET (macro definition) of file mag3110_params.h is not documented. +warning: Member MAG3110_PARAMS (macro definition) of file mag3110_params.h is not documented. +warning: Member MAG3110_SAUL_INFO (macro definition) of file mag3110_params.h is not documented. +warning: Member MAG3110_SYSMOD_ACTIVE (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_SYSMOD_ACTIVE_RAW (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAG3110_SYSMOD_STANDBY (macro definition) of file mag3110_reg.h is not documented. +warning: Member MAIPGL_FD (macro definition) of file enc28j60_regs.h is not documented. +warning: Member Maj(x, y, z) (macro definition) of group sys_hashes_sha2xx_common is not documented. +warning: Member MASK_MAX_RT (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member MASK_RX_DR (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member MASK_TX_DS (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member MAX4(a, b, c, d) (macro definition) of group sys_vfs is not documented. +warning: Member max(a, b) (macro definition) of file os.h is not documented. +warning: Member MAX_RT (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member MCP2515_BFPCTRL_B0BFE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_BFPCTRL_B0BFM (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_BFPCTRL_B0BFS (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_BFPCTRL_B1BFE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_BFPCTRL_B1BFM (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_BFPCTRL_B1BFS (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_BFPCTRL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_ABAT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_CLKEN (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_CLKPRE0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_CLKPRE1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_CLKPRE_MASK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_OSM (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_REQOP0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_REQOP1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_REQOP2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_REQOP_CONFIGURATION (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_REQOP_LISTEN_ONLY (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_REQOP_LOOPBACK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_REQOP_MASK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_REQOP_NORMAL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANCTRL_REQOP_SLEEP (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTE_ERRIE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTE_MERRE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTE_RX0IE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTE_RX1IE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTE_TX0IE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTE_TX1IE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTE_TX2IE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTE_WAKIE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTF_ERRIF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTF_MERRF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTF_RX0IF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTF_RX1IF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTF_TX0IF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTF_TX1IF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTF_TX2IF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANINTF_WAKIF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_ICOD0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_ICOD1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_ICOD2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_ICOD_MASK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_OPMOD0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_OPMOD1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_OPMOD2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_OPMOD_CONFIGURATION (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_OPMOD_LISTEN_ONLY (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_OPMOD_LOOPBACK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_OPMOD_MASK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_OPMOD_NORMAL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CANSTAT_OPMOD_SLEEP (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1_BRP0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1_BRP1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1_BRP2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1_BRP3 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1_BRP4 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1_BRP5 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1_BRP_MASK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1_SJW0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1_SJW1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF1_SJW_MASK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2_BTLMODE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2_PHSEG10 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2_PHSEG11 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2_PHSEG12 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2_PHSEG_MASK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2_PRSEG0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2_PRSEG1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2_PRSEG2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2_PRSEG_MASK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF2_SAM (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF3 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF3_PHSEG20 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF3_PHSEG21 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF3_PHSEG22 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF3_PHSEG_MASK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF3_SOF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_CNF3_WAKFIL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_DEFAULT_CONFIG (macro definition) of file mcp2515_params.h is not documented. +warning: Member MCP2515_EFLG_EWARN (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_EFLG (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_EFLG_RX0OVR (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_EFLG_RX1OVR (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_EFLG_RXEP (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_EFLG_RXWAR (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_EFLG_TXBO (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_EFLG_TXEP (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_EFLG_TXWAR (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_FILTERS (macro definition) of group drivers_mcp2515 is not documented. +warning: Member MCP2515_FILTERS_MB0 (macro definition) of group drivers_mcp2515 is not documented. +warning: Member MCP2515_FILTERS_MB1 (macro definition) of group drivers_mcp2515 is not documented. +warning: Member MCP2515_IRQ_ERROR (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_IRQ_FLAGGED (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_IRQ_HANDLED (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_IRQ_RX (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_IRQ_TX (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_IRQ_WAKEUP (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_ABORT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_CLOCKOUT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_LISTEN_ONLY (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_LOOPBACK (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_MULTISAMPLE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_ONESHOT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_ROLLOVER (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_SLEEP (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_SOFOUT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_WAKE_GLITCH_FILTER (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_OPTION_WAKE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_PARAM_CS (macro definition) of file mcp2515_params.h is not documented. +warning: Member MCP2515_PARAM_INT (macro definition) of file mcp2515_params.h is not documented. +warning: Member MCP2515_PARAM_RST (macro definition) of file mcp2515_params.h is not documented. +warning: Member MCP2515_PARAM_SPI_CLK (macro definition) of file mcp2515_params.h is not documented. +warning: Member MCP2515_PARAM_SPI (macro definition) of file mcp2515_params.h is not documented. +warning: Member MCP2515_PARAM_SPI_MODE (macro definition) of file mcp2515_params.h is not documented. +warning: Member MCP2515_REC (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_BUKT1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_BUKT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_FILHIT0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_MODE_RECV_ALL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_MODE_RECV_EXT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_MODE_RECV_FILTER (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_MODE_RECV_STD (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_MODE_RECV_STD_OR_EXT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_RXM0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_RXM1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0CTRL_RXRTR (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0D0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0D1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0D2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0D3 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0D4 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0D5 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0D6 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0D7 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0DLC (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB0SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_FILHIT0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_FILHIT1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_FILHIT2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_MODE_RECV_ALL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_MODE_RECV_EXT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_MODE_RECV_FILTER (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_MODE_RECV_STD (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_MODE_RECV_STD_OR_EXT (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_RXM0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_RXM1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1CTRL_RXRTR (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1D0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1D1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1D2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1D3 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1D4 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1D5 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1D6 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1D7 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1DLC (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXB1SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXBUF_RXB0D0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXBUF_RXB0SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXBUF_RXB1D0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXBUF_RXB1SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF0EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF0EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF0SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF0SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF1EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF1EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF1SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF1SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF2EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF2EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF2SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF2SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF3EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF3EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF3SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF3SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF4EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF4EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF4SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF4SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF5EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF5EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF5SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXF5SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RX_IDE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXM0EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXM0EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXM0SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXM0SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXM1EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXM1EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXM1SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RXM1SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_RX_MAILBOXES (macro definition) of group drivers_mcp2515 is not documented. +warning: Member MCP2515_SPI_BITMOD (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_SPI_LOAD_TXBUF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_SPI_READ (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_SPI_READ_RXBUF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_SPI_READ_STATUS (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_SPI_RESET (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_SPI_RTS (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_SPI_RX_STATUS (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_SPI_WRITE (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TEC (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0CTRL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0D0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0D1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0D2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0D3 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0D4 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0D5 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0D6 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0D7 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0DLC (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB0SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1CTRL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1D0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1D1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1D2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1D3 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1D4 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1D5 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1D6 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1D7 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1DLC (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB1SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2CTRL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2D0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2D1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2D2 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2D3 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2D4 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2D5 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2D6 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2D7 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2DLC (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2EID0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2EID8 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXB2SIDL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBCTRL_ABTF (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBCTRL_MLOA (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBCTRL_TXERR (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBCTRL_TXP0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBCTRL_TXP1 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBCTRL_TXREQ (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBUF_TXB0D0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBUF_TXB0SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBUF_TXB1D0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBUF_TXB1SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBUF_TXB2D0 (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXBUF_TXB2SIDH (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXRTSCTRL_B0RTS (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXRTSCTRL_B0RTSM (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXRTSCTRL_B1RTS (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXRTSCTRL_B1RTSM (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXRTSCTRL_B2RTS (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXRTSCTRL_B2RTSM (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCP2515_TXRTSCTRL (macro definition) of file mcp2515_defines.h is not documented. +warning: Member MCUCFG_SRAM_FIXED_WU_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member MCUCFG_SRAM_RET_B0124 (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member MCUCFG_SRAM_RET_B012 (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member MCUCFG_SRAM_RET_B01 (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member MCUCFG_SRAM_RET_B0 (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member MCUCFG_SRAM_RET_OFF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member MCUCFG_SRAM_VIRT_OFF (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member MCUCLK_PWR_DWN_SRC_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member MCUCLK_RCOSC_HF_CAL_DONE (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member MEAS_OSRS_P_POS (macro definition) of file bmx280_internals.h is not documented. +warning: Member MEAS_OSRS_T_POS (macro definition) of file bmx280_internals.h is not documented. +warning: Member MEM_ALIGNMENT (macro definition) of group pkg_lwip_opts is not documented. +warning: Member MEMP_MEM_MALLOC (macro definition) of group pkg_lwip_opts is not documented. +warning: Member MEM_PW (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member MEM_SIZE (macro definition) of group pkg_lwip_opts is not documented. +warning: Member M_GPIO2_PIN (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member M_GPIO3_PIN (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member MHZ19_BUF_SIZE (macro definition) of file mhz19_internals.h is not documented. +warning: Member MHZ19_SAUL_INFO (macro definition) of file mhz19_params.h is not documented. +warning: Member MHZ19_TIMEOUT_CMD (macro definition) of file mhz19_internals.h is not documented. +warning: Member MHZ19_TIMEOUT_READ (macro definition) of file mhz19_internals.h is not documented. +warning: Member MHZ19_UART_BAUDRATE (macro definition) of file mhz19_internals.h is not documented. +warning: Member MIC_IN_PIN (macro definition) of file board.h is not documented. +warning: Member MICMD_MIIRD (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MICMD_MIISCAN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MICROBIT_LED_COL1 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_COL2 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_COL3 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_COL4 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_COL5 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_COL6 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_COL7 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_COL8 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_COL9 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_ROW1 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_ROW2 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_ROW3 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_ROW4 (macro definition) of file board.h is not documented. +warning: Member MICROBIT_LED_ROW5 (macro definition) of file board.h is not documented. +warning: Member min(a, b) (macro definition) of file os.h is not documented. +warning: Member MINI_LED_COL1 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_COL2 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_COL3 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_COL4 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_COL5 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_COL6 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_COL7 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_COL8 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_COL9 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_ROW1 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_ROW2 (macro definition) of file board.h is not documented. +warning: Member MINI_LED_ROW3 (macro definition) of file board.h is not documented. +warning: Member MISTAT_BUSY (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MISTAT_NVALID (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MISTAT_SCAN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member MKW2XDM_CLK_OUT_DIV_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_CLK_OUT_DIV(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_CLK_OUT_DS (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_CLK_OUT_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_CLK_OUT_EXTEND (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_CLK_OUT_HIZ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_CLK_OUT_SR (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ABORT_STS_PLL_ABORTED (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ABORT_STS_SW_ABORTED (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ABORT_STS_TC3_ABORTED (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_AGC_CTRL_AD_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_AGC_CTRL_AGC_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_AGC_CTRL_AGC_LEVEL_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_AGC_CTRL_AGC_LEVEL_SHIFT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_AGC_CTRL_AGC_LEVEL(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_AGC_CTRL_ANTX (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_AGC_CTRL_SNF_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_CTRLMODE (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_EN_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_EN(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_HZ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_POL0 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_POL1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_POL2 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_ANT_PAD_CTRL_ANTX_POL3 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA2_CORR_PEAKS_CCA2_MIN_NUM_CORR_TH_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA2_CORR_PEAKS_CCA2_MIN_NUM_CORR_TH_SHIFT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA2_CORR_PEAKS_CCA2_MIN_NUM_CORR_TH(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA2_CORR_PEAKS_CCA2_NUM_CORR_PEAKS_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA_CTRL_AGC_FRZ_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA_CTRL_CCA3_AND_NOT_OR (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA_CTRL_CONT_RSSI_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA_CTRL_OWER_COMP_EN_CCA1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA_CTRL_OWER_COMP_EN_ED (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA_CTRL_OWER_COMP_EN_LQI (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_CCA_CTRL_QI_RSSI_NOT_CORR (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DTM_CTRL1_ATM_LOCKED (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DTM_CTRL1_DTM_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DTM_CTRL1_PAGE0 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DTM_CTRL1_PAGE1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DTM_CTRL1_PAGE2 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DTM_CTRL1_PAGE3 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DTM_CTRL1_PAGE4 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DTM_CTRL1_PAGE5 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DUAL_PAN_CTRL_ACTIVE_NETWORK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DUAL_PAN_CTRL_CURRENT_NETWORK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DUAL_PAN_CTRL_DUAL_PAN_AUTO (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DUAL_PAN_CTRL_DUAL_PAN_SAM_LVL_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DUAL_PAN_CTRL_DUAL_PAN_SAM_LVL_SHIFT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DUAL_PAN_CTRL_DUAL_PAN_SAM_LVL(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DUAL_PAN_CTRL_PANCORDNTR1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DUAL_PAN_STS_DUAL_PAN_REMAIN_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DUAL_PAN_STS_RECD_ON_PAN0 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_DUAL_PAN_STS_RECD_ON_PAN1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DATA1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DATA2 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DATA3 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DATA4 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DATA5 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DATA6 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DATA7 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DATA8 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DIR1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DIR2 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DIR3 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DIR4 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DIR5 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DIR6 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DIR7 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DIR8 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DS1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DS2 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DS3 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DS4 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DS5 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DS6 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DS7 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_DS8 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_EN1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_EN2 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_EN3 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_EN4 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_EN5 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_EN6 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_EN7 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_EN8 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_SEL1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_SEL2 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_SEL3 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_SEL4 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_SEL5 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_SEL6 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_SEL7 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_GPIO_PUL_SEL8 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_LPPS_CTRL_LPPS_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_MISC_PAD_CTRL_ANTX_CURR (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_MISC_PAD_CTRL_IRQ_B_OD (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_MISC_PAD_CTRL_MISO_HIZ_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_MISC_PAD_CTRL_NON_GPIO_DS (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_PART_ID_MANUF_ID_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_PART_ID_MASK_SET_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_PART_ID_VERSION_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_PLL_INT1_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS1_CCAIRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS1_FILTERFAIL_IRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS1_PLL_UNLOCK_IRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS1_RX_FRM_PEND (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS1_RXIRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS1_RXWTRMRKIRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS1_SEQIRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS1_TXIRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS2_CCA (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS2_CRCVALID (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS2_PB_ERR_IRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS2_PI (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS2_SRCADDR (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS2_TMRSTATUS (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS2_WAKE_IRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR1IRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR1MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR2IRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR2MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR3IRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR3MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR4IRQ (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR4MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR_IRQ_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR_IRQ_SHIFT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_IRQSTS3_TMR_IRQ(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_RX_FRAME_FILTER_ACK_FT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_RX_FRAME_FILTER_ACTIVE_PROMISCUOUS (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_RX_FRAME_FILTER_BEACON_FT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_RX_FRAME_FILTER_CMD_FT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_RX_FRAME_FILTER_DATA_FT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_RX_FRAME_FILTER_FRM_VER_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_RX_FRAME_FILTER_FRM_VER_SHIFT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_RX_FRAME_FILTER_FRM_VER(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_RX_FRAME_FILTER_NS_FT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_CTRL_CLR_NEW_SEQ_INHIBIT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_CTRL_EVENT_TMR_DO_NOT_LATCH (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_CTRL_LATCH_PREAMBLE (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_CTRL_NO_RX_RECYCLE (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_CTRL_PLL_ABORT_OVRD (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_CTRL_PSM_LOCK_DIS (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_CTRL_SEQ_STATE_CTRL_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_CTRL_SEQ_STATE_CTRL_SHIFT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_STS_NEW_SEQ_INHIBIT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_STS_RX_MODE (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_STS_RX_TIMEOUT_PENDING (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_STS_SEQ_IDLE (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_STS_TMR2_SEQ_TRIG_ARMED (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SEQ_MGR_STS_XCVSEQ_ACTUAL_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SOFT_RESET_PLL_RST (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SOFT_RESET_REGS_RST (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SOFT_RESET_RX_RST (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SOFT_RESET_SEQ_MGR_RST (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SOFT_RESET_SOG_RST (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_SOFT_RESET_TX_RST (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TESTMODE_CTRL_CONTINUOUS_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TESTMODE_CTRL_FPGA_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TESTMODE_CTRL_HOT_ANT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TESTMODE_CTRL_IDEAL_PFC_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TESTMODE_CTRL_IDEAL_RSSI_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TMR_PRESCALE_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TMR_PRESCALE_SET(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TMR_PRESCALE_SHIFT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TX_MODE_CTRL_BT_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TX_MODE_CTRL_DTS0 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TX_MODE_CTRL_DTS1 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TX_MODE_CTRL_DTS2 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TX_MODE_CTRL_DTS_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDMI_TX_MODE_CTRL_TX_INV (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PA_PWR_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PA_PWR(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL1_AUTOACK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL1_CCABFRTX (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL1_RXACKRQD (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL1_SLOTTED (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL1_TMRTRIGEN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL1_XCVSEQ_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL1_XCVSEQ(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL2_CCAMSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL2_CRC_MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL2_FILTERFAIL_MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL2_PLL_UNLOCK_MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL2_RXMSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL2_RX_WMRK_MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL2_SEQMSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL2_TXMSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL3_PB_ERR_MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL3_TMR1CMP_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL3_TMR2CMP_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL3_TMR3CMP_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL3_TMR4CMP_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL3_WAKE_MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL4_CCATYPE_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL4_CCATYPE_SHIFT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL4_CCATYPE(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL4_PANCORDNTR0 (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL4_PROMISCUOUS (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL4_TC2PRIME_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL4_TC3TMOUT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL4_TMRLOAD (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PHY_CTRL4_TRCV_MSK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PLL_INT0_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PLL_INT0_VAL(x) (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PWR_MODES_AUTODOZE (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PWR_MODES_PMC_MODE (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PWR_MODES_XTALEN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_PWR_MODES_XTAL_READY (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_RX_FRM_LENGTH_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_SRC_CTRL_ACK_FRM_PND (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_SRC_CTRL_INDEX_DISABLE (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_SRC_CTRL_INDEX_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_SRC_CTRL_INDEX_MASK (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_SRC_CTRL_INDEX_SHIFT (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member MKW2XDM_SRC_CTRL_SRCADDR_EN (macro definition) of file kw2xrf_reg.h is not documented. +warning: Member mkw2xdrf_dregister (enumeration) of file kw2xrf_reg.h is not documented. +warning: Member mkw2xdrf_iregister (enumeration) of file kw2xrf_reg.h is not documented. +warning: Member MMA7660_ADDR (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_INTSOURCE_AUTOSLEEP (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_INTSOURCE_FB (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_INTSOURCE_MEASURE (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_INTSOURCE_NONE (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_INTSOURCE_SHX (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_INTSOURCE_SHY (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_INTSOURCE_SHZ (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_INTSOURCE_TAP (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_INTSOURCE_UDLR (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_MG_PER_COUNT (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_PARAM_ADDR (macro definition) of file mma7660_params.h is not documented. +warning: Member MMA7660_PARAM_AMSR (macro definition) of file mma7660_params.h is not documented. +warning: Member MMA7660_PARAM_AWSR (macro definition) of file mma7660_params.h is not documented. +warning: Member MMA7660_PARAM_FILT (macro definition) of file mma7660_params.h is not documented. +warning: Member MMA7660_PARAM_I2C (macro definition) of file mma7660_params.h is not documented. +warning: Member MMA7660_PARAMS (macro definition) of file mma7660_params.h is not documented. +warning: Member MMA7660_PDET_X (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_PDET_Y (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_PDET_Z (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SAUL_INFO (macro definition) of file mma7660_params.h is not documented. +warning: Member MMA7660_SR_AM16 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AM1 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AM2 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AM32 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AM4 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AM64 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AM8 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AMPD (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AW16 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AW1 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AW32 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA7660_SR_AW8 (macro definition) of group drivers_mma7660 is not documented. +warning: Member MMA8X5X_CTRL_REG1_ACTIVE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG1_ASR_12HZ5 (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG1_ASR_1HZ56 (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG1_ASR_50HZ (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG1_ASR_6HZ25 (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG1_ASR_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG1_DR_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG1_DR_SHIFT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG1_DR(x) (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG1_F_READ (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_MODS_HR (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_MODS_LNLP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_MODS_LP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_MODS_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_MODS_NORMAL (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_RST (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_SLPE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_SMODS_HR (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_SMODS_LNLP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_SMODS_LP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_SMODS_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_SMODS_NORMAL (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG2_ST (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG3_FIFO_GATE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG3_IPOL (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG3_PP_OD (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG3_WAKE_FF_MT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG3_WAKE_LNDPRT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG3_WAKE_PULSE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG3_WAKE_TRANS (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG4_INT_EN_ASLP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG4_INT_EN_DRDY (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG4_INT_EN_FF_MT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG4_INT_EN_FIFO (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG4_INT_EN_LNDPRT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG4_INT_EN_PULSE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG4_INT_EN_TRANS (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG5_INT_CFG_ASLP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG5_INT_CFG_DRDY (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG5_INT_CFG_FF_MT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG5_INT_CFG_FIFO (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG5_INT_CFG_LNDPRT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG5_INT_CFG_PULSE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_CTRL_REG5_INT_CFG_TRANS (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_CFG_ELE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_CFG_OAE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_CFG_XEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_CFG_YEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_CFG_ZEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_SRC_EA (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_SRC_XHE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_SRC_XHP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_SRC_YHE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_SRC_YHP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_SRC_ZHE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_SRC_ZHP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_THS_DBCNTM (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_FF_MT_THS_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_F_SETUP_F_WMRK_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_F_SETUP_MODE_CIRCULAR (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_F_SETUP_MODE_DISABLED (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_F_SETUP_MODE_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_F_SETUP_MODE_STOP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_F_SETUP_MODE_TRIGGER (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_F_STATUS_F_CNT_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_F_STATUS_F_OVF (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_F_STATUS_F_WMRK_FLAG (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_HP_FILTER_HPF_BYP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_HP_FILTER_LPF_EN (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_HP_FILTER_SEL_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_INT_SOURCE_ASLP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_INT_SOURCE_DRDY (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_INT_SOURCE_FF_MT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_INT_SOURCE_FIFO (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_INT_SOURCE_LNDPRT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_INT_SOURCE_PULSE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_INT_SOURCE_TRANS (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PARAM_ADDR (macro definition) of file board.h is not documented. +warning: Member MMA8X5X_PARAM_ADDR (macro definition) of file mma8x5x_params.h is not documented. +warning: Member MMA8X5X_PARAM_ADDR (macro definition) of group boards_frdm-kl43z is not documented. +warning: Member MMA8X5X_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member MMA8X5X_PARAM_I2C (macro definition) of file mma8x5x_params.h is not documented. +warning: Member MMA8X5X_PARAM_I2C (macro definition) of group boards_frdm-kl43z is not documented. +warning: Member MMA8X5X_PARAM_OFFSET (macro definition) of file mma8x5x_params.h is not documented. +warning: Member MMA8X5X_PARAM_PIN_INT1 (macro definition) of file board.h is not documented. +warning: Member MMA8X5X_PARAM_PIN_INT2 (macro definition) of file board.h is not documented. +warning: Member MMA8X5X_PARAM_RANGE (macro definition) of file mma8x5x_params.h is not documented. +warning: Member MMA8X5X_PARAM_RATE (macro definition) of file mma8x5x_params.h is not documented. +warning: Member MMA8X5X_PARAMS (macro definition) of file mma8x5x_params.h is not documented. +warning: Member MMA8X5X_PARAM_TYPE (macro definition) of file board.h is not documented. +warning: Member MMA8X5X_PARAM_TYPE (macro definition) of group boards_frdm-kl43z is not documented. +warning: Member MMA8X5X_PL_BF_ZCOMP_BKFR_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_BF_ZCOMP_ZLOCK_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_CFG_DBCNTM (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_CFG_PL_EN (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_P_L_HYS_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_STATUS_BAFRO (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_STATUS_LAPO_L_LEFT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_STATUS_LAPO_L_RIGHT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_STATUS_LAPO_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_STATUS_LAPO_P_DOWN (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_STATUS_LAPO_P_UP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_STATUS_LO (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PL_STATUS_NEWLP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_P_L_THS_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_CFG_DPA (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_CFG_ELE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_CFG_XDPEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_CFG_XSPEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_CFG_YDPEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_CFG_YSPEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_CFG_ZDPEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_CFG_ZSPEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_SRC_AXX (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_SRC_AXY (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_SRC_AXZ (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_SRC_DPE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_SRC_EA (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_SRC_POLX (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_SRC_POLY (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_SRC_POLZ (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_THSX_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_THSY_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_PULSE_THSZ_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_SAUL_INFO (macro definition) of file mma8x5x_params.h is not documented. +warning: Member MMA8X5X_STATUS_XOW (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_STATUS_YDR (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_STATUS_YOW (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_STATUS_ZDR (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_STATUS_ZOW (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_STATUS_ZYXDR (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_STATUS_ZYXOW (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_SYSMOD_FGERR (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_SYSMOD_FGT_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_SYSMOD_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_SYSMOD_SLEEP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_SYSMOD_STANDBY (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_SYSMOD_WAKE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_CFG_ELE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_CFG_HPF_BYP (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_CFG_XTEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_CFG_YTEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_CFG_ZTEFE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_SRC_EA (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_SRC_XTEVENT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_SRC_XTPOL (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_SRC_YTEVENT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_SRC_YTPOL (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_SRC_ZTEVENT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_SRC_ZTPOL (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_THS_DBCNTM (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRANSIENT_THS_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRIG_CFG_FF_MT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRIG_CFG_LNDPRT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRIG_CFG_PULSE (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_TRIG_CFG_TRANS (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_XYZ_DATA_CFG_FS_MASK (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MMA8X5X_XYZ_DATA_CFG_HPF_OUT (macro definition) of file mma8x5x_regs.h is not documented. +warning: Member MODCLKEN0_AIODIO0_EN (macro definition) of file cc26x0_cc13x0_aux.h is not documented. +warning: Member MODCLKEN0_AIODIO1_EN (macro definition) of file cc26x0_cc13x0_aux.h is not documented. +warning: Member MODCLKEN0_ANAIF_EN (macro definition) of file cc26x0_cc13x0_aux.h is not documented. +warning: Member MODCLKEN0_AUX_ADI4_EN (macro definition) of file cc26x0_cc13x0_aux.h is not documented. +warning: Member MODCLKEN0_AUX_DDI0_OSC_EN (macro definition) of file cc26x0_cc13x0_aux.h is not documented. +warning: Member MODCLKEN0_TDC_EN (macro definition) of file cc26x0_cc13x0_aux.h is not documented. +warning: Member MODCLKEN0_TIMER_EN (macro definition) of file cc26x0_cc13x0_aux.h is not documented. +warning: Member MODE_ACTIVE_SHIFT (macro definition) of group drivers_mma7660 is not documented. +warning: Member MODE_AUTOSLEEP_SHIFT (macro definition) of group drivers_mma7660 is not documented. +warning: Member MODE_AUTOWAKE_SHIFT (macro definition) of group drivers_mma7660 is not documented. +warning: Member MODE_INTERRUPT_DEFAULT (macro definition) of group drivers_mma7660 is not documented. +warning: Member MODE_PRESCALE_SHIFT (macro definition) of group drivers_mma7660 is not documented. +warning: Member MODULE_ATMEGA_PCINT0 (macro definition) of file board.h is not documented. +warning: Member MODULE_PIN_F0 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F10 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F11 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F12 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F13 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F14 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F15 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F16 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F17 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F18 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F19 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F1 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F20 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F21 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F2 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F3 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F4 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F5 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F6 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F7 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F8 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_F9 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P0 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P10 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P11 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P12 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P13 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P14 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P15 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P16 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P17 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P18 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P19 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P1 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P20 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P21 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P22 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P23 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P24 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P25 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P26 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P27 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P28 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P29 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P2 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P30 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P31 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P32 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P33 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P34 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P35 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P36 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P37 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P38 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P39 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P3 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P40 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P41 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P42 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P43 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P44 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P45 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P4 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P5 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P6 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P7 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P8 (macro definition) of file board_module.h is not documented. +warning: Member MODULE_PIN_P9 (macro definition) of file board_module.h is not documented. +warning: Member motor_driver_config[] (variable) of group boards_common_nucleo64 is not documented. +warning: Member MOTOR_DRIVER_NUMOF (macro definition) of group boards_common_nucleo64 is not documented. +warning: Member MPL3115A2_CTRL_REG1_ALT (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG1_OS_MASK (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG1_OS_SHIFT (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG1_OST (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG1_OS(x) (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG1_RAW (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG1_RST (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG1_SBYB (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG2_ALARM_SEL (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG2_LOAD_OPUT (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG2_ST_MASK (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG2_ST_SHIFT (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG2_ST(x) (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG3_IPOL1 (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG3_IPOL2 (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG3_PP_OD1 (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG3_PP_OD2 (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG4_INT_EN_DRDY (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG4_INT_EN_FIFO (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG4_INT_EN_PCHG (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG4_INT_EN_PTH (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG4_INT_EN_PW (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG4_INT_EN_TCHG (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG4_INT_EN_TTH (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG4_INT_EN_TW (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG5_INT_DRDY (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG5_INT_FIFO (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG5_INT_PCHG (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG5_INT_PTH (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG5_INT_PW (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG5_INT_TCHG (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG5_INT_TTH (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_CTRL_REG5_INT_TW (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_PARAM_ADDR (macro definition) of file mpl3115a2_params.h is not documented. +warning: Member MPL3115A2_PARAM_I2C (macro definition) of file mpl3115a2_params.h is not documented. +warning: Member MPL3115A2_PARAM_RATIO (macro definition) of file mpl3115a2_params.h is not documented. +warning: Member MPL3115A2_PARAMS (macro definition) of file mpl3115a2_params.h is not documented. +warning: Member MPL3115A2_PT_DATA_CFG_DREM (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_PT_DATA_CFG_PDEFE (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_PT_DATA_CFG_TDEFE (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_SAUL_INFO (macro definition) of file mpl3115a2_params.h is not documented. +warning: Member MPL3115A2_STATUS_PDR (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_STATUS_POW (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_STATUS_PTDR (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_STATUS_PTOW (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_STATUS_TDR (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MPL3115A2_STATUS_TOW (macro definition) of file mpl3115a2_reg.h is not documented. +warning: Member MP_RIOT_HEAPSIZE (macro definition) of file micropython.h is not documented. +warning: Member MP_STACK_SAFEAREA (macro definition) of file micropython.h is not documented. +warning: Member MPU9X50_ACCEL_CFG_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_ACCEL_START_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_BYPASS_SLEEP_US (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_COMPASS_DATA_START_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_COMP_FUSE_ROM (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_COMP_MODE_SLEEP_US (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_COMP_POWER_DOWN (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_COMP_SELF_TEST (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_COMP_SINGLE_MEASURE (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_DEFAULT_SAMPLE_RATE (macro definition) of group drivers_mpu9x50 is not documented. +warning: Member MPU9X50_DMP_INT_STATUS (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_EXT_SENS_DATA_START_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_FIFO_COUNT_START_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_FIFO_EN_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_FIFO_RW_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_GYRO_CFG_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_GYRO_START_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_I2C_DELAY_CTRL_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_I2C_MST_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_INT_ENABLE_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_INT_PIN_CFG_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_INT_STATUS (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_LPF_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_MAX_COMP_SMPL_RATE (macro definition) of group drivers_mpu9x50 is not documented. +warning: Member MPU9X50_MAX_SAMPLE_RATE (macro definition) of group drivers_mpu9x50 is not documented. +warning: Member MPU9X50_MIN_COMP_SMPL_RATE (macro definition) of group drivers_mpu9x50 is not documented. +warning: Member MPU9X50_MIN_SAMPLE_RATE (macro definition) of group drivers_mpu9x50 is not documented. +warning: Member MPU9X50_PARAM_ADDR (macro definition) of file mpu9x50_params.h is not documented. +warning: Member MPU9X50_PARAM_COMP_ADDR (macro definition) of file mpu9x50_params.h is not documented. +warning: Member MPU9X50_PARAM_I2C (macro definition) of file mpu9x50_params.h is not documented. +warning: Member MPU9X50_PARAM_SAMPLE_RATE (macro definition) of file mpu9x50_params.h is not documented. +warning: Member MPU9X50_PARAMS (macro definition) of file mpu9x50_params.h is not documented. +warning: Member MPU9X50_PWR_ACCEL (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_PWR_CHANGE_SLEEP_US (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_PWR_GYRO (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_PWR_MGMT_1_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_PWR_MGMT_2_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_PWR_PLL (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_PWR_RESET (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_PWR_WAKEUP (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_RATE_DIV_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_RESET_SLEEP_US (macro definition) of file mpu9x50_internal.h is not documented. +warning: Member MPU9X50_SAUL_INFO (macro definition) of file mpu9x50_params.h is not documented. +warning: Member MPU9X50_SLAVE0_ADDR_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_SLAVE0_CTRL_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_SLAVE0_DATA_OUT_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_SLAVE0_REG_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_SLAVE1_ADDR_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_SLAVE1_CTRL_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_SLAVE1_DATA_OUT_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_SLAVE1_REG_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_SLAVE2_DATA_OUT_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_SLAVE3_DATA_OUT_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_SLAVE4_CTRL_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_TEMP_START_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_USER_CTRL_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_WHO_AM_I_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MPU9X50_YG_OFFS_TC_REG (macro definition) of file mpu9x50_regs.h is not documented. +warning: Member MQTTSN_CLI_ID_MAXLEN (macro definition) of group net_mqttsn is not documented. +warning: Member MQTTSN_CLI_ID_MINLEN (macro definition) of group net_mqttsn is not documented. +warning: Member MR0I (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR0R (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR0S (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR1I (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR1R (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR1S (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR2I (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR2R (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR2S (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR3I (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR3R (macro definition) of group cpu_arm7_common is not documented. +warning: Member MR3S (macro definition) of group cpu_arm7_common is not documented. +warning: Member MRF24J40_ACCESS_READ (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_ACCESS_WRITE_LNG (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_ACCESS_WRITE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_ACKTMOUT_MAWD0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_ACKTMOUT_MAWD1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_ACKTMOUT_MAWD2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_ACKTMOUT_MAWD3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_ACKTMOUT_MAWD4 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_ACKTMOUT_MAWD5 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_ACKTMOUT_MAWD6 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_ADDR_OFFSET (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_BBREG1_RXDECINV (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_BBREG2_CCACSTH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_BBREG2_CCAMODE2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_BBREG2_CCAMODE3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_BBREG2_RSSIRDY (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_BBREG6_RSSIMODE1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_BBREG6_RSSIMODE2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_GPIO_0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_GPIO_1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_GPIO_2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_GPIO_3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_GPIO_4 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_GPIO_5 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTCON_HSYMTMRIE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTCON_RXIE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTCON_SECIE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTCON_SLPIE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTCON_TXG1IE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTCON_TXG2IE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTCON_TXNIE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTCON_WAKEIE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTSTAT_HSYMTMRIF (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTSTAT_RXIF (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTSTAT_SECIF (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTSTAT_SLPIF (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTSTAT_TXG1IF (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTSTAT_TXG2IF (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTSTAT_TXNIF (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_INTSTAT_WAKEIF (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_LONG_ADDR_TRANS (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_PACON2_FIFOEN (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_PACON2_TXONT7 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_PACON2_TXONT8 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_PACON2_TXONTS0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_PACON2_TXONTS1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_PACON2_TXONTS2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_PACON2_TXONTS3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_PARAM_CS (macro definition) of file mrf24j40_params.h is not documented. +warning: Member MRF24J40_PARAM_CS (macro definition) of group boards_common_nucleo64 is not documented. +warning: Member MRF24J40_PARAM_INT (macro definition) of file mrf24j40_params.h is not documented. +warning: Member MRF24J40_PARAM_INT (macro definition) of group boards_common_nucleo64 is not documented. +warning: Member MRF24J40_PARAM_RESET (macro definition) of file mrf24j40_params.h is not documented. +warning: Member MRF24J40_PARAM_RESET (macro definition) of group boards_common_nucleo64 is not documented. +warning: Member MRF24J40_PARAMS (macro definition) of file mrf24j40_params.h is not documented. +warning: Member MRF24J40_PARAMS (macro definition) of group boards_common_nucleo64 is not documented. +warning: Member MRF24J40_PARAM_SPI_CLK (macro definition) of file mrf24j40_params.h is not documented. +warning: Member MRF24J40_PARAM_SPI_CLK (macro definition) of group boards_common_nucleo64 is not documented. +warning: Member MRF24J40_PARAM_SPI (macro definition) of file mrf24j40_params.h is not documented. +warning: Member MRF24J40_PARAM_SPI (macro definition) of group boards_common_nucleo64 is not documented. +warning: Member MRF24J40_REG_ACKTMOUT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ASSOEADR0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ASSOEADR1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ASSOEADR2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ASSOEADR3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ASSOEADR4 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ASSOEADR5 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ASSOEADR6 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ASSOEADR7 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ASSOSADR0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ASSOSADR1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_BBREG0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_BBREG1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_BBREG2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_BBREG3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_BBREG4 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_BBREG6 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_CCAEDTH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_EADR0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_EADR1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_EADR2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_EADR3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_EADR4 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_EADR5 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_EADR6 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_EADR7 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ESLOTG1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ESLOTG23 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ESLOTG45 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ESLOTG67 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_FRMOFFSET (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_GATECLK (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_GPIO (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_HSYMTMRH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_HSYMTMRL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_INTCON (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_INTSTAT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_MAINCNT0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_MAINCNT1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_MAINCNT2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_MAINCNT3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_ORDER (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_PACON0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_PACON1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_PACON2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_PANIDH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_PANIDL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_REMCNTH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_REMCNTL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RFCON0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RFCON1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RFCON2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RFCON3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RFCON5 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RFCON6 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RFCON7 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RFCON8 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RFCTL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RFSTATE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RSSI (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RXFLUSH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RXMCR (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_RXSR (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SADRH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SADRL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SECCON0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SECCON1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SECCR2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SLPACK (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SLPCAL0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SLPCAL1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SLPCAL2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SLPCON0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SLPCON1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SOFTRST (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SYMTICKH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_SYMTICKL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TESTMODE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TRISGPIO (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TXBCON0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TXBCON1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TXG1CON (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TXG2CON (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TXMCR (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TXNCON (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TXPEND (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TXSTAT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TXSTBL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_TXTIME (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE10 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE11 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE12 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE4 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE5 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE6 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE7 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE8 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_UPNONCE9 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_WAKECON (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_WAKETIMEH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_REG_WAKETIMEL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RESET_DELAY (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RESET_PULSE_WIDTH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON1_VCOOPT0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON1_VCOOPT1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON1_VCOOPT2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON1_VCOOPT3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON1_VCOOPT4 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON1_VCOOPT5 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON1_VCOOPT6 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON1_VCOOPT7 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON2_PLLEN (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON6_20MRECVR (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON6_BATEN (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON6_TXFIL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON7_SLPCLKSEL1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON7_SLPCLKSEL2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCON8_RFVCO (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCTL_RFRST (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCTL_RFRXMODE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCTL_RFTXMODE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCTL_WAKECNT7 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFCTL_WAKECNT8 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFSTATE_CALFIL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFSTATE_CALVCO (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFSTATE_MASK (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFSTATE_RESET (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFSTATE_RTSEL1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFSTATE_RTSEL2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFSTATE_RX (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFSTATE_SLEEP (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RFSTATE_TX (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RX_FIFO (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXFLUSH_BCNONLY (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXFLUSH_CMDONLY (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXFLUSH_DATAONLY (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXFLUSH_RXFLUSH (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXFLUSH_WAKEPAD (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXFLUSH_WAKEPOL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXMCR_COORD (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXMCR_ERRPKT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXMCR_NOACKRSP (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXMCR_PANCOORD (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_RXMCR_PROMI (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SHORT_ADDR_TRANS (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SLPACK_SLPACK (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SLPCON0_INTEDGE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SLPCON0_SLPCLKEN (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SLPCON1_CLKOUTEN (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SLPCON1_SLPCLKDIV0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SLPCON1_SLPCLKDIV1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SLPCON1_SLPCLKDIV2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SLPCON1_SLPCLKDIV3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SLPCON1_SLPCLKDIV4 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SOFTRST_RSTBB (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SOFTRST_RSTMAC (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_SOFTRST_RSTPWR (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_STATE_RESET_DELAY (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TESTMODE_RSSIWAIT0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TESTMODE_RSSIWAIT1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TESTMODE_TESTMODE0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TESTMODE_TESTMODE1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TESTMODE_TESTMODE2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TRISGPIO_TRISGP0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TRISGPIO_TRISGP1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TRISGPIO_TRISGP2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TRISGPIO_TRISGP3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TRISGPIO_TRISGP4 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TRISGPIO_TRISGP5 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TX_BEACON_FIFO (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TX_GTS1_FIFO (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TX_GTS2_FIFO (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXMCR_BATLIFEXT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXMCR_CSMABF0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXMCR_CSMABF1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXMCR_CSMABF2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXMCR_MACMINBE0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXMCR_MACMINBE1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXMCR_MACMINBE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXMCR_NOCSMA (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXMCR_SLOTTED (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXNCON_FPSTAT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXNCON_INDIRECT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXNCON_TXNACKREQ (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXNCON_TXNSECEN (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXNCON_TXNTRIG (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TX_NORMAL_FIFO (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_CCAFAIL (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_CCAFAIL_SHIFT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_MAX_FRAME_RETRIES (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_MAX_FRAME_RETRIES_SHIFT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_TXG1FNT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_TXG1STAT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_TXG2FNT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_TXG2STAT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_TXNRETRY0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_TXNRETRY1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTAT_TXNSTAT (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTBL_MSIFS0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTBL_MSIFS1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTBL_MSIFS2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTBL_MSIFS3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTBL_RFSTBL0 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTBL_RFSTBL1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTBL_RFSTBL2 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_TXSTBL_RFSTBL3 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_WAKECON_IMMWAKE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_WAKECON_REGWAKE (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF24J40_WAKEUP_DELAY (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MRF25J40_BBREG2_CCAMODE1 (macro definition) of file mrf24j40_registers.h is not documented. +warning: Member MSP430_HAS_DCOR (macro definition) of file board.h is not documented. +warning: Member MSP430_HAS_EXTERNAL_CRYSTAL (macro definition) of file board.h is not documented. +warning: Member MTD_0 (macro definition) of file board.h is not documented. +warning: Member mtd0 (variable) of file board.h is not documented. +warning: Member MTD_1 (macro definition) of file board.h is not documented. +warning: Member mtd1 (variable) of file board.h is not documented. +warning: Member MTD_2 (macro definition) of file board.h is not documented. +warning: Member mtd2 (variable) of file board.h is not documented. +warning: Member MTD_NATIVE_FILENAME (macro definition) of file board.h is not documented. +warning: Member MTD_NUMOF (macro definition) of file board.h is not documented. +warning: Member MTD_PAGE_SIZE (macro definition) of file board.h is not documented. +warning: Member MTD_SD_CARD_PAGES_PER_SECTOR (macro definition) of file board.h is not documented. +warning: Member MTD_SD_CARD_SECTOR_COUNT (macro definition) of file board.h is not documented. +warning: Member MTD_SECTOR_NUM (macro definition) of file board.h is not documented. +warning: Member MTD_SECTOR_SIZE (macro definition) of file board.h is not documented. +warning: Member MULLE_NOR_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member MULLE_NOR_SPI_DEV (macro definition) of file board.h is not documented. +warning: Member mulle_nvram_address (enumeration) of file mulle-nvram.h is not documented. +warning: Member mulle_nvram_address_t (typedef) of file mulle-nvram.h is not documented. +warning: Member MULLE_NVRAM_MAGIC_EXPECTED (macro definition) of file mulle-nvram.h is not documented. +warning: Member MULLE_NVRAM_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member MULLE_NVRAM_SPI_DEV (macro definition) of file board.h is not documented. +warning: Member mulle_nvram (variable) of file mulle-nvram.h is not documented. +warning: Member MULLE_VBAT_ADC_LINE (macro definition) of file board.h is not documented. +warning: Member MULLE_VCHR_ADC_LINE (macro definition) of file board.h is not documented. +warning: Member MULTIPLY_DATA(data_raw, integration_time) (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member MUX0_ENABLE_PORT (macro definition) of file board.h is not documented. +warning: Member MUX_0 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member MUX0_OFF (macro definition) of file board.h is not documented. +warning: Member MUX0_ON (macro definition) of file board.h is not documented. +warning: Member MUX0_PIN (macro definition) of file board.h is not documented. +warning: Member MUX0_PORT (macro definition) of file board.h is not documented. +warning: Member MUX1_ENABLE_PORT (macro definition) of file board.h is not documented. +warning: Member MUX_1 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member MUX1_OFF (macro definition) of file board.h is not documented. +warning: Member MUX1_ON (macro definition) of file board.h is not documented. +warning: Member MUX1_PIN (macro definition) of file board.h is not documented. +warning: Member MUX1_PORT (macro definition) of file board.h is not documented. +warning: Member MUX_PW_ENABLE_PORT (macro definition) of file board.h is not documented. +warning: Member MUX_PW (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member MUX_PW_OFF (macro definition) of file board.h is not documented. +warning: Member MUX_PW_ON (macro definition) of file board.h is not documented. +warning: Member MUX_PW_PIN (macro definition) of file board.h is not documented. +warning: Member MUX_PW_PORT (macro definition) of file board.h is not documented. +warning: Member MUX_RX (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member MUX_TX (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member MUX_USB_XBEE_ENABLE_PORT (macro definition) of file board.h is not documented. +warning: Member MUX_USB_XBEE (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member MUX_USB_XBEE_OFF (macro definition) of file board.h is not documented. +warning: Member MUX_USB_XBEE_ON (macro definition) of file board.h is not documented. +warning: Member MUX_USB_XBEE_PIN (macro definition) of file board.h is not documented. +warning: Member MUX_USB_XBEE_PORT (macro definition) of file board.h is not documented. +warning: Member MYNEWT_VAL_CHOICE(_name, _val) (macro definition) of file syscfg.h is not documented. +warning: Member MYNEWT_VAL(_name) (macro definition) of file syscfg.h is not documented. +warning: Member native_cli_add_eui64(const char *s) (function) of file native_cli_eui_provider.h is not documented. +warning: Member native_cli_get_eui64(uint8_t index, eui64_t *addr) (function) of file native_cli_eui_provider.h is not documented. +warning: Member _native_flash[FLASHPAGE_SIZE *FLASHPAGE_NUMOF] (variable) of file cpu_conf.h is not documented. +warning: Member _native_LED_GREEN_OFF(void) (function) of file board.h is not documented. +warning: Member _native_LED_GREEN_ON(void) (function) of file board.h is not documented. +warning: Member _native_LED_GREEN_TOGGLE(void) (function) of file board.h is not documented. +warning: Member _native_LED_RED_OFF(void) (function) of file board.h is not documented. +warning: Member _native_LED_RED_ON(void) (function) of file board.h is not documented. +warning: Member _native_LED_RED_TOGGLE(void) (function) of file board.h is not documented. +warning: Member NATIVE_TIMER_MIN_RES (macro definition) of file periph_conf.h is not documented. +warning: Member NB_IOT_DISABLE (macro definition) of file board.h is not documented. +warning: Member NB_IOT_ENABLE (macro definition) of file board.h is not documented. +warning: Member NB_IOT_ENABLE_MASK (macro definition) of file board.h is not documented. +warning: Member NB_IOT_ENABLE_PIN (macro definition) of file board.h is not documented. +warning: Member NB_IOT_ENABLE_PORT (macro definition) of file board.h is not documented. +warning: Member NB_IOT_RESET_MASK (macro definition) of file board.h is not documented. +warning: Member NB_IOT_RESET_OFF (macro definition) of file board.h is not documented. +warning: Member NB_IOT_RESET_ON (macro definition) of file board.h is not documented. +warning: Member NB_IOT_RESET_PIN (macro definition) of file board.h is not documented. +warning: Member NB_IOT_RESET_PORT (macro definition) of file board.h is not documented. +warning: Member NB_IOT_TOGGLE_MASK (macro definition) of file board.h is not documented. +warning: Member NB_IOT_TOGGLE_OFF (macro definition) of file board.h is not documented. +warning: Member NB_IOT_TOGGLE_ON (macro definition) of file board.h is not documented. +warning: Member NB_IOT_TOGGLE_PIN (macro definition) of file board.h is not documented. +warning: Member NB_IOT_TOGGLE_PORT (macro definition) of file board.h is not documented. +warning: Member NB_IOT_TX_EN_MASK (macro definition) of file board.h is not documented. +warning: Member NB_IOT_TX_EN_OFF (macro definition) of file board.h is not documented. +warning: Member NB_IOT_TX_EN_ON (macro definition) of file board.h is not documented. +warning: Member NB_IOT_TX_EN_PIN (macro definition) of file board.h is not documented. +warning: Member NB_IOT_TX_EN_PORT (macro definition) of file board.h is not documented. +warning: Member NDP_NBR_ADV_FLAGS_MASK (macro definition) of group net_ndp is not documented. +warning: Member NDP_OPT_MTU_LEN (macro definition) of group net_ndp is not documented. +warning: Member NDP_OPT_PI_FLAGS_MASK (macro definition) of group net_ndp is not documented. +warning: Member NDP_OPT_PI_LEN (macro definition) of group net_ndp is not documented. +warning: Member NDP_OPT_RI_FLAGS_MASK (macro definition) of group net_ndp is not documented. +warning: Member NDP_RTR_ADV_FLAGS_MASK (macro definition) of group net_ndp is not documented. +warning: Member NETIF_MAX_HWADDR_LEN (macro definition) of group pkg_lwip_opts is not documented. +warning: Member NETSTATS_ALL (macro definition) of group net_netstats is not documented. +warning: Member NETSTATS_IPV6 (macro definition) of group net_netstats is not documented. +warning: Member NETSTATS_LAYER2 (macro definition) of group net_netstats is not documented. +warning: Member NETSTATS_RPL (macro definition) of group net_netstats is not documented. +warning: Member _NEXTASGN(elt, list, to, next) (macro definition) of group sys_ut is not documented. +warning: Member _NEXT(elt, list, next) (macro definition) of group sys_ut is not documented. +warning: Member NIMBLE_AUTOADV_ADV_DURATION_MS (macro definition) of file nimble_autoadv_params.h is not documented. +warning: Member NIMBLE_AUTOADV_ADV_ITVL_MS (macro definition) of file nimble_autoadv_params.h is not documented. +warning: Member NIMBLE_AUTOADV_CHANNEL_MAP (macro definition) of file nimble_autoadv_params.h is not documented. +warning: Member NIMBLE_AUTOADV_FILTER_POLICY (macro definition) of file nimble_autoadv_params.h is not documented. +warning: Member NIMBLE_AUTOADV_FLAGS (macro definition) of file nimble_autoadv_params.h is not documented. +warning: Member NIMBLE_AUTOADV_OWN_ADDR_TYPE (macro definition) of file nimble_autoadv_params.h is not documented. +warning: Member NIMBLE_AUTOADV_PARAMS (macro definition) of file nimble_autoadv_params.h is not documented. +warning: Member NIMBLE_AUTOADV_PHY (macro definition) of file nimble_autoadv_params.h is not documented. +warning: Member NIMBLE_AUTOADV_TX_POWER (macro definition) of file nimble_autoadv_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_ADV_ITVL_MS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_CONN_ITVL_MAX_MS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_CONN_ITVL_MIN_MS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_CONN_LATENCY (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_CONN_SVTO_MS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_CONN_TIMEOUT_MS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_NODE_ID (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_PARAMS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_PERIOD_ADV_MS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_PERIOD_JITTER_MS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_PERIOD_SCAN_MS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_SCAN_ITVL_MS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_AUTOCONN_SCAN_WIN_MS (macro definition) of file nimble_autoconn_params.h is not documented. +warning: Member NIMBLE_RPBLE_ADV_ITVL_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_CONN_ITVL_MAX_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_CONN_ITVL_MIN_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_CONN_LATENCY (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_CONN_SCAN_ITVL_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_CONN_SCAN_TO_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_CONN_SCAN_WIN_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_CONN_SUPER_TO_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_EVAL_ITVL_MAX_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_EVAL_ITVL_MIN_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_PARAMS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_SCAN_ITVL_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NIMBLE_RPBLE_SCAN_WIN_MS (macro definition) of file nimble_rpble_params.h is not documented. +warning: Member NOT(x) (macro definition) of file cc2538_rf.h is not documented. +warning: Member NRF24L01P_MAX_DATA_LENGTH (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member NRF52840DK_NOR_FLAGS (macro definition) of file board.h is not documented. +warning: Member NRF52840DK_NOR_PAGE_SIZE (macro definition) of file board.h is not documented. +warning: Member NRF52840DK_NOR_PAGES_PER_SECTOR (macro definition) of file board.h is not documented. +warning: Member NRF52840DK_NOR_SECTOR_COUNT (macro definition) of file board.h is not documented. +warning: Member NRF52840DK_NOR_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member NRF52840DK_NOR_SPI_CS (macro definition) of file board.h is not documented. +warning: Member NRF52840DK_NOR_SPI_DEV (macro definition) of file board.h is not documented. +warning: Member NRF52840DK_NOR_SPI_MODE (macro definition) of file board.h is not documented. +warning: Member NRFBLE_CHAN_MAX (macro definition) of group drivers_nrf5x_nrfble is not documented. +warning: Member NRFMIN_CHAN_DEFAULT (macro definition) of group drivers_nrf5x_nrfmin is not documented. +warning: Member NRFMIN_CHAN_MAX (macro definition) of group drivers_nrf5x_nrfmin is not documented. +warning: Member NRFMIN_PKT_MAX (macro definition) of group drivers_nrf5x_nrfmin is not documented. +warning: Member NUM_HEAPS (macro definition) of group cpu_cc26xx_cc13xx is not documented. +warning: Member NUM_POWER_LEVELS (macro definition) of file cc2538_rf.h is not documented. +warning: Member NWDT_TIME_LOWER_LIMIT (macro definition) of file periph_cpu_common.h is not documented. +warning: Member NWDT_TIME_LOWER_LIMIT (macro definition) of file periph_cpu.h is not documented. +warning: Member NWDT_TIME_UPPER_LIMIT (macro definition) of file periph_cpu_common.h is not documented. +warning: Member NWDT_TIME_UPPER_LIMIT (macro definition) of file periph_cpu.h is not documented. +warning: Member OCR_CCS (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member OCR_POWER_UP_STATUS (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member OCR_VOLTAGE_3_2_TO_3_3 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member OCR_VOLTAGE_3_3_TO_3_4 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member OFFSET_T_P(x) (macro definition) of file bmx280_internals.h is not documented. +warning: Member one_at_a_time_hash(const uint8_t *buf, size_t len) (function) of file hashes.h is not documented. +warning: Member OP_CHANGE_TIME_H_MASK (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OP_CHANGE_TIME_L_MASK (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OP_CONT_HRES1 (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OP_CONT_HRES2 (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OP_CONT_LRES (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OPENWSN_DEBUGPIN_FRAME (macro definition) of file board.h is not documented. +warning: Member OPENWSN_DEBUGPIN_FRAME (macro definition) of file openwsn_debugpins_params.h is not documented. +warning: Member OPENWSN_DEBUGPIN_FSM (macro definition) of file board.h is not documented. +warning: Member OPENWSN_DEBUGPIN_FSM (macro definition) of file openwsn_debugpins_params.h is not documented. +warning: Member OPENWSN_DEBUGPIN_ISR (macro definition) of file board.h is not documented. +warning: Member OPENWSN_DEBUGPIN_ISR (macro definition) of file openwsn_debugpins_params.h is not documented. +warning: Member OPENWSN_DEBUGPIN_RADIO (macro definition) of file board.h is not documented. +warning: Member OPENWSN_DEBUGPIN_RADIO (macro definition) of file openwsn_debugpins_params.h is not documented. +warning: Member OPENWSN_DEBUGPINS_DEFAULT (macro definition) of file openwsn_debugpins_params.h is not documented. +warning: Member OPENWSN_DEBUGPIN_SLOT (macro definition) of file board.h is not documented. +warning: Member OPENWSN_DEBUGPIN_SLOT (macro definition) of file openwsn_debugpins_params.h is not documented. +warning: Member OPENWSN_DEBUGPIN_TASK (macro definition) of file board.h is not documented. +warning: Member OPENWSN_DEBUGPIN_TASK (macro definition) of file openwsn_debugpins_params.h is not documented. +warning: Member OPENWSN_LED_ON_STATE (macro definition) of file openwsn_leds_params.h is not documented. +warning: Member OPENWSN_LEDPIN_DEBUG (macro definition) of file board.h is not documented. +warning: Member OPENWSN_LEDPIN_DEBUG (macro definition) of file openwsn_leds_params.h is not documented. +warning: Member OPENWSN_LEDPIN_ERROR (macro definition) of file board.h is not documented. +warning: Member OPENWSN_LEDPIN_ERROR (macro definition) of file openwsn_leds_params.h is not documented. +warning: Member OPENWSN_LEDPIN_RADIO (macro definition) of file board.h is not documented. +warning: Member OPENWSN_LEDPIN_RADIO (macro definition) of file openwsn_leds_params.h is not documented. +warning: Member OPENWSN_LEDPIN_SYNC (macro definition) of file board.h is not documented. +warning: Member OPENWSN_LEDPIN_SYNC (macro definition) of file openwsn_leds_params.h is not documented. +warning: Member OPENWSN_LEDS_DEFAULT (macro definition) of file openwsn_leds_params.h is not documented. +warning: Member OP_POWER_DOWN (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OP_POWER_ON (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OP_RESET (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OP_SINGLE_HRES1 (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OP_SINGLE_HRES2 (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OP_SINGLE_LRES (macro definition) of file bh1750fvi_internal.h is not documented. +warning: Member OPT3001_PARAM_I2C_ADDR (macro definition) of file opt3001_params.h is not documented. +warning: Member OPT3001_PARAM_I2C_DEV (macro definition) of file opt3001_params.h is not documented. +warning: Member OPT3001_PARAMS (macro definition) of file opt3001_params.h is not documented. +warning: Member OPT3001_SAUL_INFO (macro definition) of file opt3001_params.h is not documented. +warning: Member OS_ALIGNMENT (macro definition) of file os.h is not documented. +warning: Member OS_ALIGN(__n, __a) (macro definition) of file os.h is not documented. +warning: Member OS_ASSERT_CRITICAL() (macro definition) of file os.h is not documented. +warning: Member OSCCFG_PER_E_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member OSCCFG_PER_M_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member OS_ENTER_CRITICAL(_sr) (macro definition) of file os.h is not documented. +warning: Member OS_EXIT_CRITICAL(_sr) (macro definition) of file os.h is not documented. +warning: Member OS_TIMEOUT_NEVER (macro definition) of file os_types.h is not documented. +warning: Member OS_WAIT_FOREVER (macro definition) of file os_types.h is not documented. +warning: Member PACK_STRUCT_BEGIN (macro definition) of group pkg_lwip_sys is not documented. +warning: Member PACK_STRUCT_END (macro definition) of group pkg_lwip_sys is not documented. +warning: Member PACK_STRUCT_FIELD(x) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member PACK_STRUCT_STRUCT (macro definition) of group pkg_lwip_sys is not documented. +warning: Member pad_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member PB0_PIN (macro definition) of file board.h is not documented. +warning: Member PB1_PIN (macro definition) of file board.h is not documented. +warning: Member PB2_PIN (macro definition) of file board.h is not documented. +warning: Member PCA9633_PARAMS (macro definition) of file pca9633_params.h is not documented. +warning: Member PCA9685_ALL_LED_OFF_H (macro definition) of file pca9685_regs.h is not documented. +warning: Member PCA9685_ALL_LED_OFF (macro definition) of file pca9685_regs.h is not documented. +warning: Member PCA9685_ALL_LED_ON_H (macro definition) of file pca9685_regs.h is not documented. +warning: Member PCA9685_ALL_LED_ON (macro definition) of file pca9685_regs.h is not documented. +warning: Member PCA9685_LED_OFF_H (macro definition) of file pca9685_regs.h is not documented. +warning: Member PCA9685_LED_OFF (macro definition) of file pca9685_regs.h is not documented. +warning: Member PCA9685_LED_ON_H (macro definition) of file pca9685_regs.h is not documented. +warning: Member PCA9685_LED_ON (macro definition) of file pca9685_regs.h is not documented. +warning: Member PCA9685_PARAMS (macro definition) of file pca9685_params.h is not documented. +warning: Member PCAD (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCAN1 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCAN2 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCD8544_DEFAULT_BIAS (macro definition) of group drivers_pcd8544 is not documented. +warning: Member PCD8544_DEFAULT_CONTRAST (macro definition) of group drivers_pcd8544 is not documented. +warning: Member PCD8544_DEFAULT_TEMPCOEF (macro definition) of group drivers_pcd8544 is not documented. +warning: Member PCEMC (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCENET (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCGPDMA (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCI2C0 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCI2C1 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCI2C2 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCI2S (macro definition) of group cpu_arm7_common is not documented. +warning: Member pc_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member PCPWM1 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCRTC (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCSDC (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCSPI (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCSSP0 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCSSP1 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCTIM0 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCTIM1 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCTIM2 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCTIM3 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCUART0 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCUART1 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCUART2 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCUART3 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PCUSB (macro definition) of group cpu_arm7_common is not documented. +warning: Member PDCTL0_PERIPH_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDCTL0_PERIPH_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDCTL0_RFC_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDCTL0_RFC_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDCTL0_SERIAL_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDCTL0_SERIAL_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDCTL1_CPU_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDCTL1_CPU_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDCTL1_RFC_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDCTL1_RFC_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDCTL1_VIMS_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDCTL1_VIMS_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDSTAT0_PERIPH_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDSTAT0_PERIPH_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDSTAT0_RFC_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDSTAT0_RFC_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDSTAT0_SERIAL_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDSTAT0_SERIAL_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDSTAT1_CPU_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDSTAT1_CPU_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDSTAT1_RFC_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDSTAT1_RFC_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PDSTAT1_VIMS_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PDSTAT1_VIMS_ON (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member PERIPH_CLOCK (macro definition) of file periph_cpu.h is not documented. +warning: Member PERIPH_FLASHPAGE_NEEDS_FLASHPAGE_PAGE (macro definition) of file cpu_conf.h is not documented. +warning: Member PERIPH_I2C_NEED_READ_REGS (macro definition) of file periph_cpu.h is not documented. +warning: Member PERIPH_I2C_NEED_WRITE_REG (macro definition) of file periph_cpu.h is not documented. +warning: Member PERIPH_INIT_LED0 (macro definition) of group boards_common_nucleo144 is not documented. +warning: Member PERIPH_SPI_NEEDS_INIT_CS (macro definition) of file periph_cpu.h is not documented. +warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE (macro definition) of file periph_cpu_common.h is not documented. +warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE (macro definition) of file periph_cpu.h is not documented. +warning: Member PERIPH_SPI_NEEDS_TRANSFER_BYTE (macro definition) of group cpu_msp430fxyz is not documented. +warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG (macro definition) of file periph_cpu_common.h is not documented. +warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG (macro definition) of file periph_cpu.h is not documented. +warning: Member PERIPH_SPI_NEEDS_TRANSFER_REG (macro definition) of group cpu_msp430fxyz is not documented. +warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS (macro definition) of file periph_cpu_common.h is not documented. +warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS (macro definition) of file periph_cpu.h is not documented. +warning: Member PERIPH_SPI_NEEDS_TRANSFER_REGS (macro definition) of group cpu_msp430fxyz is not documented. +warning: Member PHCON1_PDPXMD (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHCON1_PLOOPBK (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHCON1_PPWRSV (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHCON1_PRST (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHCON2_FRCLNK (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHCON2_HDLDIS (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHCON2_JABBER (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHCON2_TXDIS (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHIE_PGEIE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHIE_PLNKIE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHIR_PGIF (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHIR_PLNKIF (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHLCON_LACFG(x) (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHLCON_LBCFG(x) (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHLCON_LFRQ(x) (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHLCON_STRCH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PH_OEM_PARAM_ADDR (macro definition) of file ph_oem_params.h is not documented. +warning: Member PH_OEM_PARAM_I2C (macro definition) of file ph_oem_params.h is not documented. +warning: Member PH_OEM_PARAM_INTERRUPT_GPIO_MODE (macro definition) of file ph_oem_params.h is not documented. +warning: Member PH_OEM_PARAM_INTERRUPT_OPTION (macro definition) of file ph_oem_params.h is not documented. +warning: Member PH_OEM_PARAM_INTERRUPT_PIN (macro definition) of file ph_oem_params.h is not documented. +warning: Member PH_OEM_PARAMS (macro definition) of file ph_oem_params.h is not documented. +warning: Member PH_OEM_SAUL_INFO (macro definition) of file ph_oem_params.h is not documented. +warning: Member PHSTAT1_JBSTAT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHSTAT1_LLSTAT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHSTAT1_PFDPX (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHSTAT1_PHDPX (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHSTAT2_COLSTAT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHSTAT2_DPXSTAT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHSTAT2_LSTAT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHSTAT2_PLRITY (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHSTAT2_RXSTAT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PHSTAT2_TXSTAT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member PIC_I2C_ADDR (macro definition) of file board.h is not documented. +warning: Member PIC_I2C (macro definition) of file board.h is not documented. +warning: Member PIC_INT_WAKE_PIN (macro definition) of file board.h is not documented. +warning: Member PINETIME_NOR_FLAGS (macro definition) of file board.h is not documented. +warning: Member PINETIME_NOR_PAGE_SIZE (macro definition) of file board.h is not documented. +warning: Member PINETIME_NOR_PAGES_PER_SECTOR (macro definition) of file board.h is not documented. +warning: Member PINETIME_NOR_SECTOR_COUNT (macro definition) of file board.h is not documented. +warning: Member PINETIME_NOR_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member PINETIME_NOR_SPI_CS (macro definition) of file board.h is not documented. +warning: Member PINETIME_NOR_SPI_DEV (macro definition) of file board.h is not documented. +warning: Member PINETIME_NOR_SPI_MODE (macro definition) of file board.h is not documented. +warning: Member PIN_INTERRUPT_EDGE (macro definition) of file cpu_conf_kinetis.h is not documented. +warning: Member PIN_INTERRUPT_FALLING (macro definition) of file cpu_conf_kinetis.h is not documented. +warning: Member PIN_INTERRUPT_RISING (macro definition) of file cpu_conf_kinetis.h is not documented. +warning: Member PIN_MUX_FUNCTION_ANALOG (macro definition) of file cpu_conf_kinetis.h is not documented. +warning: Member PIN_MUX_FUNCTION_GPIO (macro definition) of file cpu_conf_kinetis.h is not documented. +warning: Member PIR_MOTION_MODE (macro definition) of file board.h is not documented. +warning: Member PIR_MOTION_PIN (macro definition) of file board.h is not documented. +warning: Member PIT_BASECLOCK (macro definition) of file periph_conf_common.h is not documented. +warning: Member PIT_BASECLOCK (macro definition) of file periph_conf.h is not documented. +warning: Member PIT_CONFIG (macro definition) of file periph_conf_common.h is not documented. +warning: Member PIT_CONFIG (macro definition) of file periph_conf.h is not documented. +warning: Member PIT_ISR_0 (macro definition) of file periph_conf.h is not documented. +warning: Member PIT_ISR_1 (macro definition) of file periph_conf.h is not documented. +warning: Member PIT_NUMOF (macro definition) of file periph_conf_common.h is not documented. +warning: Member PIT_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member PM0 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PM1 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PM2 (macro definition) of group cpu_arm7_common is not documented. +warning: Member PM_BLOCK(x) (macro definition) of file periph_cpu.h is not documented. +warning: Member PMC_IRQn (macro definition) of file cpu_conf.h is not documented. +warning: Member PM_DEEP_POWERDOWN (macro definition) of group cpu_arm7_common is not documented. +warning: Member PM_IDLE (macro definition) of group cpu_arm7_common is not documented. +warning: Member PM_NUM_MODES (macro definition) of file periph_cpu.h is not documented. +warning: Member pm_periph_disable(pwr_reduction_t pwr) (function) of file cpu_pm.h is not documented. +warning: Member pm_periph_enable(pwr_reduction_t pwr) (function) of file cpu_pm.h is not documented. +warning: Member pm_periph_power_off(void) (function) of file cpu_pm.h is not documented. +warning: Member PM_POWERDOWN (macro definition) of group cpu_arm7_common is not documented. +warning: Member PM_SLEEP (macro definition) of group cpu_arm7_common is not documented. +warning: Member PM_UNBLOCK(x) (macro definition) of file periph_cpu.h is not documented. +warning: Member PN532_FW_FEATURES(fwver) (macro definition) of group drivers_pn532 is not documented. +warning: Member PN532_FW_REVISION(fwver) (macro definition) of group drivers_pn532 is not documented. +warning: Member PN532_FW_VERSION(fwver) (macro definition) of group drivers_pn532 is not documented. +warning: Member PN532_IC_VERSION(fwver) (macro definition) of group drivers_pn532 is not documented. +warning: Member PORT_1_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_1 (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_2_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_2 (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_3_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_3 (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_4_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_4 (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_5_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_5 (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_6_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_6 (macro definition) of file msp430_regs.h is not documented. +warning: Member PORT_delayRx (macro definition) of file board_info.h is not documented. +warning: Member PORT_delayTx (macro definition) of file board_info.h is not documented. +warning: Member PORT_delayTx (macro definition) of file openwsn_defs.h is not documented. +warning: Member _PORT (macro definition) of group boards_common_saml1x is not documented. +warning: Member PORT_maxRxAckPrepare (macro definition) of file board_info.h is not documented. +warning: Member PORT_maxRxAckPrepare (macro definition) of file openwsn_defs.h is not documented. +warning: Member PORT_maxRxDataPrepare (macro definition) of file board_info.h is not documented. +warning: Member PORT_maxRxDataPrepare (macro definition) of file openwsn_defs.h is not documented. +warning: Member PORT_maxTxAckPrepare (macro definition) of file board_info.h is not documented. +warning: Member PORT_maxTxAckPrepare (macro definition) of file openwsn_defs.h is not documented. +warning: Member PORT_maxTxDataPrepare (macro definition) of file board_info.h is not documented. +warning: Member PORT_maxTxDataPrepare (macro definition) of file openwsn_defs.h is not documented. +warning: Member PORT_RADIOTIMER_WIDTH (macro definition) of file board_info.h is not documented. +warning: Member PORT_SIGNED_INT_WIDTH (macro definition) of file board_info.h is not documented. +warning: Member PORT_TICS_PER_MS (macro definition) of file board_info.h is not documented. +warning: Member PORT_TIMER_WIDTH (macro definition) of file board_info.h is not documented. +warning: Member PORT_TsSlotDuration (macro definition) of file board_info.h is not documented. +warning: Member PORT_US_PER_TICK (macro definition) of file board_info.h is not documented. +warning: Member POWER_PRESENCE (macro definition) of file board.h is not documented. +warning: Member PPP_SUPPORT (macro definition) of group pkg_lwip_opts is not documented. +warning: Member _PREVASGN(elt, list, to, prev) (macro definition) of group sys_ut is not documented. +warning: Member PRIM_RX (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member PROVIDES_PM_LAYERED_OFF (macro definition) of file periph_cpu.h is not documented. +warning: Member PROVIDES_PM_OFF (macro definition) of file periph_cpu.h is not documented. +warning: Member PROVIDES_PM_RESTART (macro definition) of file periph_cpu.h is not documented. +warning: Member PROVIDES_PM_SET_LOWEST (macro definition) of file cpu.h is not documented. +warning: Member PROVIDES_PM_SET_LOWEST (macro definition) of file periph_cpu.h is not documented. +warning: Member _P_SIZE(p) (macro definition) of file clif_internal.h is not documented. +warning: Member PTHREAD_CANCEL_ASYNCHRONOUS (macro definition) of file pthread_cancellation.h is not documented. +warning: Member PTHREAD_CANCEL_DEFERRED (macro definition) of file pthread_cancellation.h is not documented. +warning: Member PTHREAD_CANCEL_DISABLE (macro definition) of file pthread_cancellation.h is not documented. +warning: Member PTHREAD_CANCEL_ENABLE (macro definition) of file pthread_cancellation.h is not documented. +warning: Member pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *attr, int *prioceiling) (function) of file pthread_mutex_attr.h is not documented. +warning: Member pthread_mutexattr_setprioceiling(pthread_mutexattr_t *attr, int prioceiling) (function) of file pthread_mutex_attr.h is not documented. +warning: Member PUTU32(ct, st) (macro definition) of file aes.h is not documented. +warning: Member PWM_0_EN (macro definition) of file periph_conf_common.h is not documented. +warning: Member PWM_0_EN (macro definition) of file periph_conf.h is not documented. +warning: Member PWM0_GPIOS (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_1_EN (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_2_EN (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_CH0 (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_CH0_MR (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_CH0_PIN (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_CH1 (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_CH1_MR (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_CH1_PIN (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_CH2 (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_CH2_MR (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_CH2_PIN (macro definition) of file periph_conf.h is not documented. +warning: Member pwm_chan0_config[] (variable) of file periph_conf_common.h is not documented. +warning: Member pwm_chan0_config[] (variable) of file periph_conf.h is not documented. +warning: Member pwm_chan1_config[] (variable) of file periph_conf.h is not documented. +warning: Member pwm_channel_config[] (variable) of file periph_conf.h is not documented. +warning: Member PWM_CHANNELS (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_CHANNELS (macro definition) of file periph_cpu.h is not documented. +warning: Member PWM_CHAN_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member pwm_chan[] (variable) of file periph_conf.h is not documented. +warning: Member PWMCLKEN_CPE (macro definition) of file cc26xx_cc13xx_rfc.h is not documented. +warning: Member PWMCLKEN_CPERAM (macro definition) of file cc26xx_cc13xx_rfc.h is not documented. +warning: Member PWMCLKEN_FSCA (macro definition) of file cc26xx_cc13xx_rfc.h is not documented. +warning: Member PWMCLKEN_MDM (macro definition) of file cc26xx_cc13xx_rfc.h is not documented. +warning: Member PWMCLKEN_MDMRAM (macro definition) of file cc26xx_cc13xx_rfc.h is not documented. +warning: Member PWMCLKEN_PHA (macro definition) of file cc26xx_cc13xx_rfc.h is not documented. +warning: Member PWMCLKEN_RAT (macro definition) of file cc26xx_cc13xx_rfc.h is not documented. +warning: Member PWMCLKEN_RFC (macro definition) of file cc26xx_cc13xx_rfc.h is not documented. +warning: Member PWMCLKEN_RFERAM (macro definition) of file cc26xx_cc13xx_rfc.h is not documented. +warning: Member pwm_config[] (variable) of file periph_conf_common.h is not documented. +warning: Member pwm_config[] (variable) of file periph_conf.h is not documented. +warning: Member pwm_config[] (variable) of group boards_common_nrf52xxxdk is not documented. +warning: Member PWM_DEV_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_FUNC (macro definition) of file periph_conf.h is not documented. +warning: Member pwm_mode_t (enumeration) of file periph_conf.h is not documented. +warning: Member pwm_mode_t (enumeration) of file periph_cpu.h is not documented. +warning: Member PWM_MODE(ud, pol) (macro definition) of file periph_cpu.h is not documented. +warning: Member PWM_NUMOF (macro definition) of file periph_conf_common.h is not documented. +warning: Member PWM_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_NUMOF (macro definition) of group boards_common_nrf52xxxdk is not documented. +warning: Member PWM_PIN (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_PORT (macro definition) of file periph_conf.h is not documented. +warning: Member PWM_PPI_A (macro definition) of group cpu_nrf51 is not documented. +warning: Member PWM_PPI_B (macro definition) of group cpu_nrf51 is not documented. +warning: Member PWM_TIMER (macro definition) of file periph_conf.h is not documented. +warning: Member PWRSTAT_AUX_BUS_CONNECTED (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PWRSTAT_AUX_PD_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PWRSTAT_AUX_PWR_DNW (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PWRSTAT_AUX_RESET_DONE (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PWRSTAT_JTAG_PD_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PWRSTAT_MCU_PD_ON (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member PWR_UP (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member QDEC_0_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member QDEC_1_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member qdec_config[] (variable) of file periph_conf.h is not documented. +warning: Member QDEC_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member QMC5883L_CONT (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_CTRL1 (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_CTRL2 (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_DOR (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_DOXH (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_DOXL (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_DOYH (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_DOYL (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_DOZH (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_DOZL (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_DRDY (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_INT_ENB (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_OVL (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_PARAM_I2C (macro definition) of file qmc5883l_params.h is not documented. +warning: Member QMC5883L_PARAM_ODR (macro definition) of file qmc5883l_params.h is not documented. +warning: Member QMC5883L_PARAM_OSR (macro definition) of file qmc5883l_params.h is not documented. +warning: Member QMC5883L_PARAM_PIN_DRDY (macro definition) of file qmc5883l_params.h is not documented. +warning: Member QMC5883L_PARAM_RNG (macro definition) of file qmc5883l_params.h is not documented. +warning: Member QMC5883L_PARAMS (macro definition) of file qmc5883l_params.h is not documented. +warning: Member QMC5883L_ROL_PNT (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_SAUL_INFO (macro definition) of file qmc5883l_params.h is not documented. +warning: Member QMC5883L_SETRESET (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_SOFT_RST (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_STANDBY (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_STATUS (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_TOUTH (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member QMC5883L_TOUTL (macro definition) of file qmc5883l_internal.h is not documented. +warning: Member R1_ADDR_ERR(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member R1_CMD_CRC_ERR(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member R1_ERASE_ERR(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member R1_ERROR(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member R1_IDLE_BIT_SET(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member R1_ILL_CMD_ERR(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member R1_PARAM_ERR(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member R1_VALID(X) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member RADIO_TCXO_VCC_PIN (macro definition) of file board.h is not documented. +warning: Member RANDOM_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member ra_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member R_COEF_IF (macro definition) of file tcs37727-internal.h is not documented. +warning: Member RDY_ACC (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member RECHARGECFG_ADAPTIVE_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member RECHARGECFG_C1_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member RECHARGECFG_C2_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member RECHARGECFG_MAX_PER_E_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member RECHARGECFG_MAX_PER_M_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member RECHARGECFG_PER_E_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member RECHARGECFG_PER_M_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member RECHARGESTAT_MAX_USED_PER_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member RECHARGESTAT_VDDR_SMPLS_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member REG16 (macro definition) of file atmega_regs_common.h is not documented. +warning: Member REG_ACC_CHIPID (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_ACC_CHIPID_VAL (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_ACC_DATA (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_ACC_RANGE (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_ACC_SHDW_ENABLE (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_ACC_SHDW (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_ACT_DUR (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_ACT_THS (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_B0_EDMACSH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_EDMACSL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_EDMADSTH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_EDMADSTL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_EDMANDH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_EDMANDL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_EDMASTH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_EDMASTL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ERDPTH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ERDPTL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ERXNDH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ERXNDL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ERXRDPTH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ERXRDPTL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ERXSTH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ERXSTL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ERXWRPTH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ERXWRPTL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ETXNDH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ETXNDL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ETXSTH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_ETXSTL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_EWRPTH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B0_EWRPTL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EHT0 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EHT1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EHT2 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EHT3 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EHT4 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EHT5 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EHT6 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EHT7 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPKTCNT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMCSH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMCSL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMM0 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMM1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMM2 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMM3 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMM4 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMM5 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMM6 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMM7 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMOH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_EPMOL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B1_ERXFCON (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MABBIPG (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MACLCON1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MACLCON2 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MACON1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MACON3 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MACON4 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MAIPGH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MAIPGL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MAMXFLH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MAMXFLL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MICMD (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MIRDH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MIRDL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MIREGADR (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MIWRH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B2_MIWRL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_EBSTCON (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_EBSTCSH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_EBSTCSL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_EBSTSD (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_ECOCON (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_EFLOCON (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_EPAUSH (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_EPAUSL (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_EREVID (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_MAADR1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_MAADR2 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_MAADR3 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_MAADR4 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_MAADR5 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_MAADR6 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_B3_MISTAT (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_CLICK_CFG (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_CLICK_SRC (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_CLICK_THS (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_CONFIG (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_CTRL_REG0 (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_CTRL_REG1 (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_CTRL_REG2 (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_CTRL_REG3 (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_CTRL_REG4 (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_CTRL_REG5 (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_CTRL_REG6 (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_DYNPD (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_EN_AA (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_EN_RXADDR (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_FEATURE (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_FIFO_CTRL_REG (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_FIFO_SRC_REG (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_FIFO_STATUS (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_GYRO_CHIPID (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_GYRO_CHIPID_VAL (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_GYRO_DATA (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_GYRO_PWRMD (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_GYRO_PWRMD_NORM (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_GYRO_SCALE (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_GYRO_SHDW_EN (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_GYRO_SHDW (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_INT1_CFG (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_INT1_DURATION (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_INT1_SRC (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_INT1_THS (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_INT2_CFG (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_INT2_DURATION (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_INT2_SRC (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_INT2_THS (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REGISTER_MASK (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_MAG_CHIPID (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_MAG_CHIPID_VAL (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_MAG_DATA (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_MAG_OPMODE (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_MAG_PWRCTRL (macro definition) of file bmx055_internal.h is not documented. +warning: Member REG_OBSERVE_TX (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_OUT_TEMP_H (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_OUT_TEMP_L (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_OUT_X_H (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_OUT_X_L (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_OUT_Y_H (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_OUT_Y_L (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_OUT_Z_H (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_OUT_Z_L (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_PHY_PHCON1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_PHY_PHCON2 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_PHY_PHID1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_PHY_PHID2 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_PHY_PHIE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_PHY_PHIR (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_PHY_PHLCON (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_PHY_PHSTAT1 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_PHY_PHSTAT2 (macro definition) of file enc28j60_regs.h is not documented. +warning: Member REG_REFERENCE (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_RF_CH (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RF_SETUP (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RPD (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_ADDR_P0 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_ADDR_P1 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_ADDR_P2 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_ADDR_P3 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_ADDR_P4 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_ADDR_P5 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_PW_P0 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_PW_P1 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_PW_P2 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_PW_P3 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_PW_P4 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_RX_PW_P5 (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_SETUP_AW (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_SETUP_RETR (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_STATUS (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_STATUS_REG_AUX (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_STATUS_REG (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_TEMP_CFG_REG (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_TIME_LATENCY (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_TIME_LIMIT (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_TIME_WINDOW (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member REG_TX_ADDR (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member REG_WHO_AM_I (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member RESET_WORD (macro definition) of file bmx280_internals.h is not documented. +warning: Member RF09_regs (variable) of file at86rf215_registers.h is not documented. +warning: Member RF24_regs (variable) of file at86rf215_registers.h is not documented. +warning: Member RF24_SWITCH_AT86RF215_MASK (macro definition) of file board.h is not documented. +warning: Member RF24_SWITCH_AT86RF215_OFF (macro definition) of file board.h is not documented. +warning: Member RF24_SWITCH_AT86RF215_ON (macro definition) of file board.h is not documented. +warning: Member RF24_SWITCH_AT86RF215_TOGGLE (macro definition) of file board.h is not documented. +warning: Member RF24_SWITCH_CC2538_MASK (macro definition) of file board.h is not documented. +warning: Member RF24_SWITCH_CC2538_OFF (macro definition) of file board.h is not documented. +warning: Member RF24_SWITCH_CC2538_ON (macro definition) of file board.h is not documented. +warning: Member RF24_SWITCH_CC2538_TOGGLE (macro definition) of file board.h is not documented. +warning: Member RFACKIFG_ACKFLAG (macro definition) of file cc26xx_cc13xx_rfc.h is not documented. +warning: Member RF_BITRATEFRAC_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member RF_CH_MASK (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member RFCORE_ASSERT(expr) (macro definition) of file cc2538_rf.h is not documented. +warning: Member RFCORE_ASSERT_failure(const char *expr, const char *func, int line) (function) of file cc2538_rf_internal.h is not documented. +warning: Member RFCORE_FLUSH_RECEIVE_FIFO() (macro definition) of file cc2538_rf.h is not documented. +warning: Member RFCORE_WAIT_UNTIL(expr) (macro definition) of file cc2538_rf.h is not documented. +warning: Member RFCTL1_PIN (macro definition) of file board.h is not documented. +warning: Member RFCTL1_PIN (macro definition) of group boards_samr30-xpro is not documented. +warning: Member RFCTL2_PIN (macro definition) of file board.h is not documented. +warning: Member RFCTL2_PIN (macro definition) of group boards_samr30-xpro is not documented. +warning: Member RFCTL_ANTENNA_DEFAULT (macro definition) of file board.h is not documented. +warning: Member RFCTL_ANTENNA_DEFAULT (macro definition) of group boards_samr30-xpro is not documented. +warning: Member RF_DTB_128_US (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_DTB_32_US (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_DTB_8_US (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_PLL_BANDWIDTH_150 (macro definition) of file sx127x_registers.h is not documented. +warning: Member RF_PLL_BANDWIDTH_225 (macro definition) of file sx127x_registers.h is not documented. +warning: Member RF_PLL_BANDWIDTH_300 (macro definition) of file sx127x_registers.h is not documented. +warning: Member RF_PLL_BANDWIDTH_75 (macro definition) of file sx127x_registers.h is not documented. +warning: Member RF_PLL_BANDWIDTH_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member RF_SETUP_CONT_WAVE (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member RF_SETUP_PLL_LOCK (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member RF_SETUP_RF_DR_HIGH (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member RF_SETUP_RF_DR_LOW (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member RF_SETUP_RF_PWR (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member RF_SR_1000K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_SR_1333K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_SR_2000K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_SR_400K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_SR_500K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_SR_666K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_SR_800K (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_STATE_RESET (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_STATE_RX (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_STATE_TRANSITION (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_STATE_TRXOFF (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_STATE_TX (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_STATE_TXPREP (macro definition) of file at86rf215_registers.h is not documented. +warning: Member RF_SWITCH_2_4_GHZ (macro definition) of file board.h is not documented. +warning: Member RF_SWITCH_GPIO (macro definition) of file board.h is not documented. +warning: Member RF_SWITCH_PORT (macro definition) of file board.h is not documented. +warning: Member RF_SWITCH_SUB_GHZ (macro definition) of file board.h is not documented. +warning: Member RF_SWITCH_TOGGLE (macro definition) of file board.h is not documented. +warning: Member RGB_LED1_ENABLED (macro definition) of file board.h is not documented. +warning: Member RGB_LED1_EN_BIT (macro definition) of file board.h is not documented. +warning: Member RGB_LED2_ENABLED (macro definition) of file board.h is not documented. +warning: Member RGB_LED2_EN_BIT (macro definition) of file board.h is not documented. +warning: Member RGB_LED3_ENABLED (macro definition) of file board.h is not documented. +warning: Member RGB_LED3_EN_BIT (macro definition) of file board.h is not documented. +warning: Member RGB_LED4_ENABLED (macro definition) of file board.h is not documented. +warning: Member RGB_LED4_EN_BIT (macro definition) of file board.h is not documented. +warning: Member RGB_LED_ADDR (macro definition) of file board.h is not documented. +warning: Member RGB_LED_EN_BIT (macro definition) of file board.h is not documented. +warning: Member RIOTBOOT_PROBE (macro definition) of file serial.h is not documented. +warning: Member RIOTBOOT_STAT_READY (macro definition) of file serial.h is not documented. +warning: Member RIOTBOOT_STAT_WAITING (macro definition) of file serial.h is not documented. +warning: Member riscv_in_isr (variable) of file irq_arch.h is not documented. +warning: Member RN2XX3_PARAM_BAUDRATE (macro definition) of file rn2xx3_params.h is not documented. +warning: Member RN2XX3_PARAM_PIN_RESET (macro definition) of file board.h is not documented. +warning: Member RN2XX3_PARAM_PIN_RESET (macro definition) of file rn2xx3_params.h is not documented. +warning: Member RN2XX3_PARAMS (macro definition) of file rn2xx3_params.h is not documented. +warning: Member RN2XX3_PARAM_UART (macro definition) of file board.h is not documented. +warning: Member RN2XX3_PARAM_UART (macro definition) of file rn2xx3_params.h is not documented. +warning: Member rom_hapi_fletcher32(a, b, c) (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_get_chipid() (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_get_flashsize() (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_hf_source_safe_switch() (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_max_value(a, b) (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_mean_value(a, b) (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_min_value(a, b) (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_reset_device() (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_select_adc_compb_input(a) (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_select_compa_input(a) (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_select_compa_ref(a) (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_select_compb_ref(a) (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_hapi_std_deviation_value(a, b) (macro definition) of file cc26xx_cc13xx_hard_api.h is not documented. +warning: Member rom_setup_after_cold_reset_wakeup_from_shutdown_cfg2 (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_after_cold_reset_wakeup_from_shutdown_cfg3 (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_adc_sh_mode_en (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_adc_sh_vbuf_en (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_ampcomp_ctrl (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_ampcomp_th1 (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_ampcomp_th2 (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_anabypass_value1 (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_dblr_loop_filter_reset_voltage (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_radc_ext_cfg (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_rc_osc_lf_ibias_trim (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_rc_osc_lf_rtune_ctune_trim (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_xosc_hf_ctl (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_xosc_hf_fast_start (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_xosc_hf_ibiastherm (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_get_trim_for_xosc_lf_regulator_and_cmirrwr_ratio (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_set_aon_rtc_sub_sec_inc (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_set_cache_mode_according_to_ccfg_setting (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rom_setup_step_vddr_trim_to (macro definition) of file cc26x2_cc13x2_setup.h is not documented. +warning: Member rotating_hash(const uint8_t *buf, size_t len) (function) of file hashes.h is not documented. +warning: Member ROTR(x, n) (macro definition) of group sys_hashes_sha2xx_common is not documented. +warning: Member RR_CLASS_LENGTH (macro definition) of group net_dns is not documented. +warning: Member RR_RDLENGTH_LENGTH (macro definition) of group net_dns is not documented. +warning: Member RR_TTL_LENGTH (macro definition) of group net_dns is not documented. +warning: Member RR_TYPE_LENGTH (macro definition) of group net_dns is not documented. +warning: Member _RS(list) (macro definition) of group sys_ut is not documented. +warning: Member RST_RTC (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member RTC_DEV (macro definition) of file cfg_rtc_default.h is not documented. +warning: Member RTC_LOAD_CAP_BITS (macro definition) of file periph_conf.h is not documented. +warning: Member RTC_PW (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member RTC_SLEEP (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member RTT_CLOCK_FREQUENCY (macro definition) of file cfg_rtt_default.h is not documented. +warning: Member RTT_CLOCK_FREQUENCY (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_DEV (macro definition) of file cfg_rtt_default.h is not documented. +warning: Member RTT_DEV (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_FREQUENCY (macro definition) of file cfg_rtt_default.h is not documented. +warning: Member RTT_FREQUENCY (macro definition) of file periph_conf_common.h is not documented. +warning: Member RTT_FREQUENCY (macro definition) of file periph_conf.h is not documented. +warning: Member RTT_FREQUENCY (macro definition) of file periph_cpu_common.h is not documented. +warning: Member RTT_FREQUENCY (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_INTR_PRIORITY (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_IRQ (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_IRQ_PRIO (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_ISR (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_MAX_FREQUENCY (macro definition) of file cfg_rtt_default.h is not documented. +warning: Member RTT_MAX_FREQUENCY (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_MAX_VALUE (macro definition) of file cfg_rtt_default.h is not documented. +warning: Member RTT_MAX_VALUE (macro definition) of file periph_cpu_common.h is not documented. +warning: Member RTT_MAX_VALUE (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_MIN_FREQUENCY (macro definition) of file cfg_rtt_default.h is not documented. +warning: Member RTT_MIN_FREQUENCY (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_MIN_OFFSET (macro definition) of file periph_conf.h is not documented. +warning: Member RTT_MIN_OFFSET (macro definition) of file periph_cpu.h is not documented. +warning: Member RTT_RUNSTDBY (macro definition) of file periph_cpu.h is not documented. +warning: Member RUN_MIC_PIN (macro definition) of file board.h is not documented. +warning: Member RX_DR (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member RX_P_NO (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member s0_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member s0(x) (macro definition) of group sys_hashes_sha2xx_common is not documented. +warning: Member S0(x) (macro definition) of group sys_hashes_sha2xx_common is not documented. +warning: Member s10_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member s11_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member S16_F (macro definition) of group pkg_lwip_sys is not documented. +warning: Member s1_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member s1(x) (macro definition) of group sys_hashes_sha2xx_common is not documented. +warning: Member S1(x) (macro definition) of group sys_hashes_sha2xx_common is not documented. +warning: Member s2_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member S32_F (macro definition) of group pkg_lwip_sys is not documented. +warning: Member s3_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member s4_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member s5_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member s6_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member s7_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member s8_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member s9_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member SAM0_GCLK_48MHZ (macro definition) of file periph_cpu.h is not documented. +warning: Member SAM0_GCLK_8MHZ (macro definition) of file periph_cpu.h is not documented. +warning: Member sam_gmac_config[] (variable) of file periph_conf.h is not documented. +warning: Member sam_usbdev_config[] (variable) of file cfg_usbdev_default.h is not documented. +warning: Member sam_usbdev_config[] (variable) of file periph_conf_common.h is not documented. +warning: Member sam_usbdev_config[] (variable) of file periph_conf.h is not documented. +warning: Member SARA_ENABLE_MASK (macro definition) of file board.h is not documented. +warning: Member SARA_ENABLE_OFF (macro definition) of file board.h is not documented. +warning: Member SARA_ENABLE_ON (macro definition) of file board.h is not documented. +warning: Member SARA_ENABLE_PIN (macro definition) of file board.h is not documented. +warning: Member SARA_ENABLE_PORT (macro definition) of file board.h is not documented. +warning: Member SARA_R4XX_PWR_ON_MASK (macro definition) of file board.h is not documented. +warning: Member SARA_R4XX_PWR_ON_OFF (macro definition) of file board.h is not documented. +warning: Member SARA_R4XX_PWR_ON_ON (macro definition) of file board.h is not documented. +warning: Member SARA_R4XX_PWR_ON_PIN (macro definition) of file board.h is not documented. +warning: Member SARA_R4XX_PWR_ON_PORT (macro definition) of file board.h is not documented. +warning: Member SARA_TX_ENABLE_MASK (macro definition) of file board.h is not documented. +warning: Member SARA_TX_ENABLE_OFF (macro definition) of file board.h is not documented. +warning: Member SARA_TX_ENABLE_ON (macro definition) of file board.h is not documented. +warning: Member SARA_TX_ENABLE_PIN (macro definition) of file board.h is not documented. +warning: Member SARA_TX_ENABLE_PORT (macro definition) of file board.h is not documented. +warning: Member SAUL_GPIO_NUMOF (macro definition) of file gpio_params.h is not documented. +warning: Member SAUL_PWM_NO_DIMMER (macro definition) of file pwm_params.h is not documented. +warning: Member saul_pwm_rgb_params[] (variable) of file pwm_params.h is not documented. +warning: Member sax_hash(const uint8_t *buf, size_t len) (function) of file hashes.h is not documented. +warning: Member SBOLD (macro definition) of file ColorTextColors.h is not documented. +warning: Member SCD30_DATA_RDY_TIMEOUT (macro definition) of file scd30_internal.h is not documented. +warning: Member SCD30_I2C_ADDR (macro definition) of file scd30_params.h is not documented. +warning: Member SCD30_MAX_INTERVAL (macro definition) of file scd30_internal.h is not documented. +warning: Member SCD30_MAX_PRESSURE_COMP (macro definition) of file scd30_internal.h is not documented. +warning: Member SCD30_MIN_INTERVAL (macro definition) of file scd30_internal.h is not documented. +warning: Member SCD30_MIN_PRESSURE_COMP (macro definition) of file scd30_internal.h is not documented. +warning: Member SCD30_PARAM_I2C_ADDR (macro definition) of file scd30_params.h is not documented. +warning: Member SCD30_PARAM_I2C_DEV (macro definition) of file scd30_params.h is not documented. +warning: Member SCD30_PARAMS (macro definition) of file scd30_params.h is not documented. +warning: Member SCD30_READ_WRITE_SLEEP_US (macro definition) of file scd30_internal.h is not documented. +warning: Member SCD30_RESET_SLEEP_US (macro definition) of file scd30_internal.h is not documented. +warning: Member SCD30_SAUL_INFO (macro definition) of file scd30_params.h is not documented. +warning: Member SCHEDULER_ENABLE_INTERRUPT() (macro definition) of file board_info.h is not documented. +warning: Member SCHEDULER_WAKEUP() (macro definition) of file board_info.h is not documented. +warning: Member SCHEME_COAP (macro definition) of file lwm2m_client_connection.h is not documented. +warning: Member SCHEME_COAPS (macro definition) of file lwm2m_client_connection.h is not documented. +warning: Member scs15_baudrate_t (enumeration) of file feetech_protocol.h is not documented. +warning: Member scs15_register16_t (enumeration) of file feetech_protocol.h is not documented. +warning: Member scs15_register8_t (enumeration) of file feetech_protocol.h is not documented. +warning: Member SCTIMER_FREQUENCY (macro definition) of file board_info.h is not documented. +warning: Member SD_ACMD_41_ARG_HC (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_BLOCKS_FOR_REG_READ (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member sdbm_hash(const uint8_t *buf, size_t len) (function) of file hashes.h is not documented. +warning: Member SD_CARD_PREINIT_CLOCK_PERIOD_US (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SDCARD_SPI_PARAM_CLK (macro definition) of file board.h is not documented. +warning: Member SDCARD_SPI_PARAM_CLK (macro definition) of file sdcard_spi_params.h is not documented. +warning: Member SDCARD_SPI_PARAM_CLK (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member SDCARD_SPI_PARAM_CS (macro definition) of file board.h is not documented. +warning: Member SDCARD_SPI_PARAM_CS (macro definition) of file sdcard_spi_params.h is not documented. +warning: Member SDCARD_SPI_PARAM_CS (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member SDCARD_SPI_PARAM_MISO (macro definition) of file board.h is not documented. +warning: Member SDCARD_SPI_PARAM_MISO (macro definition) of file sdcard_spi_params.h is not documented. +warning: Member SDCARD_SPI_PARAM_MISO (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member SDCARD_SPI_PARAM_MOSI (macro definition) of file board.h is not documented. +warning: Member SDCARD_SPI_PARAM_MOSI (macro definition) of file sdcard_spi_params.h is not documented. +warning: Member SDCARD_SPI_PARAM_MOSI (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member SDCARD_SPI_PARAM_POWER_AH (macro definition) of file board.h is not documented. +warning: Member SDCARD_SPI_PARAM_POWER (macro definition) of file board.h is not documented. +warning: Member SDCARD_SPI_PARAM_POWER (macro definition) of file sdcard_spi_params.h is not documented. +warning: Member SDCARD_SPI_PARAMS (macro definition) of file sdcard_spi_params.h is not documented. +warning: Member SDCARD_SPI_PARAM_SPI (macro definition) of file board.h is not documented. +warning: Member SDCARD_SPI_PARAM_SPI (macro definition) of file sdcard_spi_params.h is not documented. +warning: Member SDCARD_SPI_PARAM_SPI (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member SD_CARD_WAIT_AFTER_POWER_UP_US (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_0 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_10 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_12 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_13 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_16 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_17 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_18 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_1 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_24 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_25 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_41 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_55 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_58 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_59_ARG_DIS (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_59_ARG_EN (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_59 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_8_CHECK_PATTERN (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_8 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_8_VHS_2_7_V_TO_3_6_V (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_9 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_NO_ARG (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CMD_PREFIX_MASK (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CSD_V1 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CSD_V2 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_CSD_VUNSUPPORTED (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_DATA_TOKEN_CMD_17_18_24 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_DATA_TOKEN_CMD_25 (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_DATA_TOKEN_CMD_25_STOP (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SDEFAULT (macro definition) of file ColorTextColors.h is not documented. +warning: Member SD_GET_CSD_STRUCTURE(CSD_RAW_DATA) (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_INVALID_R1_RESPONSE (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_MISO (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member SD_MOSI (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member SDP31_PRODUCT_NO_BYTE_0 (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP31_PRODUCT_NO_BYTE_1 (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP31_PRODUCT_NO_BYTE_3 (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP3X_ADDR1 (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP3X_ADDR2 (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP3X_ADDR3 (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP3X_MODEL_31 (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP3X_MODEL_32 (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP3X_PARAM_I2C_ADDR (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP3X_PARAM_I2C_DEV (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP3X_PARAM_IRQ_PIN (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP3X_PARAMS (macro definition) of file sdp3x_params.h is not documented. +warning: Member SDP3X_SAUL_INFO (macro definition) of file sdp3x_params.h is not documented. +warning: Member SD_POWERSEQUENCE_CLOCK_COUNT (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_PRESENT (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member SD_R1_RESPONSE_ADDR_ERROR (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_R1_RESPONSE_CMD_CRC_ERROR (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_R1_RESPONSE_ERASE_RESET (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_R1_RESPONSE_ERASE_SEQ_ERROR (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_R1_RESPONSE_ILLEGAL_CMD_ERROR (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_R1_RESPONSE_IN_IDLE_STATE (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_R1_RESPONSE_PARAM_ERROR (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SDS011_CMD_DB1_CHECK_FIRMWARE (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_DB1_QUERY_DATA (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_DB1_SET_DEV_ID (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_DB1_SET_DR_MODE (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_DB1_SET_SLEEP_WORK (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_DB1_SET_WORK_PERIOD (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMDID_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMDID_QUERY (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_OPT_QUERY (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_OPT_REPORT_ACTIVE (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_OPT_REPORT_QUERY (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_OPT_SET (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_OPT_SLEEP (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_CMD_OPT_WORK (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_DB1_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_DB2_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_DB3_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_DB4_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_DB5_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_DB6_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_DEVID1_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_DEVID2_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_FRAME_CSUM_MSK (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_FRAME_HEAD_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_FRAME_HEAD (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_FRAME_RECV_CSUM_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_FRAME_RECV_LEN (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_FRAME_RECV_TAIL_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_FRAME_SEND_CSUM_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_FRAME_SEND_LEN (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_FRAME_SEND_TAIL_IDX (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_FRAME_TAIL (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_PARAM_PWR_PIN_AH (macro definition) of file sds011_params.h is not documented. +warning: Member SDS011_PARAM_PWR_PIN (macro definition) of file sds011_params.h is not documented. +warning: Member SDS011_PARAMS (macro definition) of file sds011_params.h is not documented. +warning: Member SDS011_PARAM_UART_DEV (macro definition) of file sds011_params.h is not documented. +warning: Member SDS011_RCMDID_DATA (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_RCMDID_REPLY (macro definition) of file sds011_internal.h is not documented. +warning: Member SDS011_SAUL_INFO (macro definition) of file sds011_params.h is not documented. +warning: Member SD_SCK (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member SD_SIZE_OF_CID_AND_CSD_REG (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_SIZE_OF_SD_STATUS (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member SD_SS (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member SEESAW_SOIL_MANUFACTURER_ID (macro definition) of file seesaw_soil_regs.h is not documented. +warning: Member SEESAW_SOIL_MID_VALUE (macro definition) of file seesaw_soil_regs.h is not documented. +warning: Member SEESAW_SOIL_MOISTURE (macro definition) of file seesaw_soil_regs.h is not documented. +warning: Member SEESAW_SOIL_PARAM_ADDR (macro definition) of file seesaw_soil_params.h is not documented. +warning: Member SEESAW_SOIL_PARAM_I2C (macro definition) of file seesaw_soil_params.h is not documented. +warning: Member SEESAW_SOIL_PARAMS (macro definition) of file seesaw_soil_params.h is not documented. +warning: Member SEESAW_SOIL_RST (macro definition) of file seesaw_soil_regs.h is not documented. +warning: Member SEESAW_SOIL_SAUL_INFO (macro definition) of file seesaw_soil_params.h is not documented. +warning: Member SEESAW_SOIL_TEMPERATURE (macro definition) of file seesaw_soil_regs.h is not documented. +warning: Member sem_spi (variable) of file uwb_dw1000_params.h is not documented. +warning: Member SENS_PW_3V3 (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member SENS_PW_5V (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member SERPENTE_NOR_FLAGS (macro definition) of file board.h is not documented. +warning: Member SERPENTE_NOR_PAGE_SIZE (macro definition) of file board.h is not documented. +warning: Member SERPENTE_NOR_PAGES_PER_SECTOR (macro definition) of file board.h is not documented. +warning: Member SERPENTE_NOR_SECTOR_COUNT (macro definition) of file board.h is not documented. +warning: Member SERPENTE_NOR_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member SERPENTE_NOR_SPI_CS (macro definition) of file board.h is not documented. +warning: Member SERPENTE_NOR_SPI_DEV (macro definition) of file board.h is not documented. +warning: Member SERPENTE_NOR_SPI_MODE (macro definition) of file board.h is not documented. +warning: Member __set_cpsr(unsigned val) (function) of file irq_arch.h is not documented. +warning: Member SET_MUX_AUX1_MODULE (macro definition) of file board.h is not documented. +warning: Member SET_MUX_AUX2_MODULE (macro definition) of file board.h is not documented. +warning: Member SET_MUX_GPS (macro definition) of file board.h is not documented. +warning: Member SET_MUX_SOCKET0 (macro definition) of file board.h is not documented. +warning: Member SET_MUX_SOCKET1 (macro definition) of file board.h is not documented. +warning: Member SET_MUX_USB_MODULE (macro definition) of file board.h is not documented. +warning: Member setsockopt(int socket, int level, int option_name, const void *option_value, socklen_t option_len) (function) of group posix_sockets is not documented. +warning: Member setup_fpu(void) (function) of group cpu_lm4f120 is not documented. +warning: Member SFR_IE1_URXIE0 (macro definition) of file msp430_regs.h is not documented. +warning: Member SFR_IE1_UTXIE0 (macro definition) of file msp430_regs.h is not documented. +warning: Member SFR_IE2_UCA0TXIE (macro definition) of file msp430_regs.h is not documented. +warning: Member SFR_IE2_URXIE2 (macro definition) of file msp430_regs.h is not documented. +warning: Member SFR_IE2_UTXIE2 (macro definition) of file msp430_regs.h is not documented. +warning: Member SFR_IFG1_URXIFG0 (macro definition) of file msp430_regs.h is not documented. +warning: Member SFR_IFG1_UTXIFG0 (macro definition) of file msp430_regs.h is not documented. +warning: Member SFR_IFG2_UCA0TXIFG (macro definition) of file msp430_regs.h is not documented. +warning: Member SFR_IFG2_URXIFG1 (macro definition) of file msp430_regs.h is not documented. +warning: Member SFR_IFG2_UTXIFG1 (macro definition) of file msp430_regs.h is not documented. +warning: Member SGP30_PARAM_I2C_DEV (macro definition) of file sgp30_params.h is not documented. +warning: Member SGP30_PARAMS (macro definition) of file sgp30_params.h is not documented. +warning: Member SGP30_SAUL_INFO (macro definition) of file sgp30_params.h is not documented. +warning: Member SHR(x, n) (macro definition) of group sys_hashes_sha2xx_common is not documented. +warning: Member SHT1X_PARAM_CLK (macro definition) of file board.h is not documented. +warning: Member SHT1X_PARAM_DATA (macro definition) of file board.h is not documented. +warning: Member SHT2X_PARAM_CRC_MODE (macro definition) of file sht2x_params.h is not documented. +warning: Member SHT2X_PARAM_I2C_ADDR (macro definition) of file sht2x_params.h is not documented. +warning: Member SHT2X_PARAM_MEASURE_MODE (macro definition) of file sht2x_params.h is not documented. +warning: Member SHT2X_PARAM_RESOLUTION (macro definition) of file sht2x_params.h is not documented. +warning: Member SHT2X_PARAMS_DEFAULT (macro definition) of file sht2x_params.h is not documented. +warning: Member SHT2X_SAUL_INFO (macro definition) of file sht2x_params.h is not documented. +warning: Member SHT2X_USER_EOB_MASK (macro definition) of group drivers_sht2x is not documented. +warning: Member SHT2X_USER_HEATER_MASK (macro definition) of group drivers_sht2x is not documented. +warning: Member SHT2X_USER_OTP_MASK (macro definition) of group drivers_sht2x is not documented. +warning: Member SHT2X_USER_RESERVED_MASK (macro definition) of group drivers_sht2x is not documented. +warning: Member SHT3X_PARAM_I2C_ADDR (macro definition) of file sht3x_params.h is not documented. +warning: Member SHT3X_PARAM_I2C_DEV (macro definition) of file sht3x_params.h is not documented. +warning: Member SHT3X_PARAM_MODE (macro definition) of file sht3x_params.h is not documented. +warning: Member SHT3X_PARAM_REPEAT (macro definition) of file sht3x_params.h is not documented. +warning: Member SHT3X_PARAMS (macro definition) of file sht3x_params.h is not documented. +warning: Member SHT3X_SAUL_INFO (macro definition) of file sht3x_params.h is not documented. +warning: Member SHTCX_PARAM_I2C_ADDR (macro definition) of file shtcx_params.h is not documented. +warning: Member SHTCX_PARAM_I2C_DEV (macro definition) of file shtcx_params.h is not documented. +warning: Member SHTCX_PARAMS (macro definition) of file shtcx_params.h is not documented. +warning: Member SHTCX_SAUL_INFO (macro definition) of file shtcx_params.h is not documented. +warning: Member SHUTDOWN_DONE_GPIO (macro definition) of file board.h is not documented. +warning: Member SHUTDOWN_EN_GPIO (macro definition) of file board.h is not documented. +warning: Member SHUTDOWN_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member SI1133_ADCCONFIG_ADCMUX_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCCONFIG_ADCMUX_SHIFT (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCCONFIG_DECIM_RATE_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCCONFIG_DECIM_RATE_SHIFT (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCMUX_DEEP_UV (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCMUX_LARGE_IR (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCMUX_LARGE_WHITE (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCMUX_MEDIUM_IR (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCMUX_SMALL_IR (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCMUX_UV (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCMUX_WHITE (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCPOST_24BIT_OUT_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCPOST_POSTSHIFT_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCPOST_POSTSHIFT_SHIFT (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCPOST_THRESH_SEL_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCPOST_THRESH_SEL_SHIFT (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCSENS_HSIG_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCSENS_HW_GAIN_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCSENS_HW_GAIN_SHIFT (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCSENS_SW_GAIN_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ADCSENS_SW_GAIN_SHIFT (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_CMD_FORCE (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_CMD_PARAM_QUERY (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_CMD_PARAM_SET (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_CMD_PAUSE (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_CMD_RESET_CMD_CTR (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_CMD_RESET_SW (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_CMD_START (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_ENABLED (macro definition) of file board.h is not documented. +warning: Member SI1133_I2C (macro definition) of file board.h is not documented. +warning: Member SI1133_ID (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_MEASCONFIG_COUNTER_IDX_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_MEASCONFIG_COUNTER_IDX_SHIFT (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_NUM_CHANNELS (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCCONFIG0 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCCONFIG1 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCCONFIG2 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCCONFIG3 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCCONFIG4 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCCONFIG5 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCPOST0 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCPOST1 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCPOST2 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCPOST3 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCPOST4 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCPOST5 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCSENS0 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCSENS1 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCSENS2 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCSENS3 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCSENS4 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADCSENS5 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_ADDR (macro definition) of file si1133_params.h is not documented. +warning: Member SI1133_PARAM_BURST (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_CHAN_LIST (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_I2C_ADDR (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_I2C_DEV (macro definition) of file si1133_params.h is not documented. +warning: Member SI1133_PARAM_MEASCONFIG0 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_MEASCONFIG1 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_MEASCONFIG2 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_MEASCONFIG3 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_MEASCONFIG4 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_MEASCONFIG5 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_MEASCOUNT0 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_MEASCOUNT1 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_MEASCOUNT2 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_MEASRATE_H (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_MEASRATE_L (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAMS (macro definition) of file si1133_params.h is not documented. +warning: Member SI1133_PARAM_THRESHOLD0_H (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_THRESHOLD0_L (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_THRESHOLD1_H (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_THRESHOLD1_L (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_THRESHOLD2_H (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_PARAM_THRESHOLD2_L (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_COMMAND (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_HOSTIN0 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_HOSTOUTx (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_HW_ID (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_INFO0 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_INFO1 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_IRQENABLE (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_IRQ_STATUS (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_PART_ID (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_RESPONSE0 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_RESPONSE1 (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_REG_REV_ID (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_RESP0_CMD_ERR_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_RESP0_COUNTER_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_RESP0_ERR_ADC_OVERFLOW (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_RESP0_ERR_BUFFER_OVERFLOW (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_RESP0_ERR_INVALID_COMMAND (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_RESP0_ERR_INVALID_PARAM_ADDR (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_RESP0_RUNNING_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_RESP0_SLEEP_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_RESP0_SUSPEND_MASK (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1133_SAUL_INFO (macro definition) of file si1133_params.h is not documented. +warning: Member SI1133_STARTUP_TIME_MS (macro definition) of file si1133_internals.h is not documented. +warning: Member SI1145_ID (macro definition) of file si114x_internals.h is not documented. +warning: Member SI1146_ID (macro definition) of file si114x_internals.h is not documented. +warning: Member SI1147_ID (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_ADC_REC_CLK (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_ALS_AUTO (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_ALS_FORCE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_ALS_IR_ADC_OVERFLOW (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_ALS_IR_ALIGN (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_ALS_PAUSE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_ALS_VIS_ADC_OVERFLOW (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_ALS_VIS_ALIGN (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_BUSADDR (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_EN_ALS_IE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_EN_ALS_IR (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_EN_ALS_VIS (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_EN_AUX (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_EN_PS1_IE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_EN_PS2_IE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_EN_PS3_IE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_EN_UV (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_GET_CAL (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_I2C_ADDR (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_INIT_VALUE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_INTCFG_INTMODE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_INTCFG_INTOE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_INVALID_SETTING (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_IR_RANGE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_NO_ERROR (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_NOP (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ADCMUX_LARGEIR (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ADCMUX_SMALLIR (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ALSENCODE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ALSIRADCGAIN (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ALSIRADCMISC (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ALSIRADCMISC_RANGE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ALSIRADCMUX (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ALSIRADCOUNTER (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ALSVISADCGAIN (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ALSVISADCMISC (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ALSVISADCMISC_VISRANGE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_ALSVISADCOUNTER (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_AUXADCMUX (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_CHLIST_ENALSIR (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_CHLIST_ENALSVIS (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_CHLIST_ENAUX (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_CHLIST_ENPS1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_CHLIST_ENPS2 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_CHLIST_ENPS3 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_CHLIST_ENUV (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_CHLIST (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_I2C_DEV (macro definition) of file si114x_params.h is not documented. +warning: Member SI114X_PARAM_PS1ADCMUX (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PS2ADCMUX (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PS3ADCMUX (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSADCGAIN (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSADCMISC (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSADCMISC_PSMODE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSADCMISC_RANGE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSADCOUNTER (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSENCODE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSLED12SEL (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSLED12SEL_PS1LED1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSLED12SEL_PS1LED2 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSLED12SEL_PS1LED3 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSLED12SEL_PS1NONE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSLED12SEL_PS2LED1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSLED12SEL_PS2LED2 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSLED12SEL_PS2LED3 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSLED12SEL_PS2NONE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_PSLED3SEL (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_QUERY (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAM_SET (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PARAMS (macro definition) of file si114x_params.h is not documented. +warning: Member SI114X_PS1_ADC_OVERFLOW (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS1_ALIGN (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS2_ADC_OVERFLOW (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS2_ALIGN (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS3_ADC_OVERFLOW (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS3_ALIGN (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS_ADC_MODE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS_ALS_AUTO (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS_ALS_FORCE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS_ALS_PAUSE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS_AUTO (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS_FORCE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS_PAUSE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_PS_RANGE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_ALS_IR_DATA0 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_ALS_IR_DATA1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_ALS_VIS_DATA0 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_ALS_VIS_DATA1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_CHIP_STAT (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_COMMAND (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_HW_KEY (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_INT_CFG (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_IRQ_ENABLE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_IRQ_MODE1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_IRQ_MODE2 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_IRQ_STATUS (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_MEAS_RATE0 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_MEAS_RATE1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PARAM_RD (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PARAM_WR (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PART_ID (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PS1_DATA0 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PS1_DATA1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PS2_DATA0 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PS2_DATA1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PS3_DATA0 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PS3_DATA1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PS_LED21 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_PS_LED3 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_RESPONSE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_REV_ID (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_SEQ_ID (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_UCOEF0 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_UCOEF1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_UCOEF2 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_UCOEF3 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_UV_INDEX0 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_REG_UV_INDEX1 (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_RESET (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_SAUL_INFO (macro definition) of file si114x_params.h is not documented. +warning: Member SI114X_STARTUP_TIME (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_UCOEF0_DEFAULT (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_UCOEF1_DEFAULT (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_UCOEF2_DEFAULT (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_UCOEF3_DEFAULT (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_UV_ADC_OVERFLOW (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_VIS_RANGE (macro definition) of file si114x_internals.h is not documented. +warning: Member SI114X_WAIT_10MS (macro definition) of file si114x_internals.h is not documented. +warning: Member SI7021_EN_PIN (macro definition) of file board.h is not documented. +warning: Member SI7021_I2C (macro definition) of file board.h is not documented. +warning: Member SI70XX_MEASURE_RH_HOLD (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_MEASURE_RH (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_MEASURE_TEMP_HOLD (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_MEASURE_TEMP (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_MEASURE_TEMP_PREV (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_PARAM_ADDR (macro definition) of file si70xx_params.h is not documented. +warning: Member SI70XX_PARAM_ADDR (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member SI70XX_PARAM_I2C_DEV (macro definition) of file board.h is not documented. +warning: Member SI70XX_PARAM_I2C_DEV (macro definition) of file si70xx_params.h is not documented. +warning: Member SI70XX_PARAM_I2C_DEV (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member SI70XX_PARAMS (macro definition) of file si70xx_params.h is not documented. +warning: Member SI70XX_READ_HEATER_REG (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_READ_ID_FIRST_A (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_READ_ID_FIRST_B (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_READ_ID_SECOND_A (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_READ_ID_SECOND_B (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_READ_REVISION_A (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_READ_REVISION_B (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_READ_USER_REG (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_RESET (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_REVISION_1 (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_REVISION_2 (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_SAUL_INFO (macro definition) of file si70xx_params.h is not documented. +warning: Member SI70XX_SAUL_INFO (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member SI70XX_WRITE_HEATER_REG (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI70XX_WRITE_USER_REG (macro definition) of file si70xx_internals.h is not documented. +warning: Member SI7210_ENABLED (macro definition) of file board.h is not documented. +warning: Member SI7210_I2C (macro definition) of file board.h is not documented. +warning: Member SIXLOWPAN_ND_OPT_6CTX_FLAGS_MASK (macro definition) of group net_sixlowpan_nd is not documented. +warning: Member SIXLOWPAN_ND_OPT_6CTX_LEN_MAX (macro definition) of group net_sixlowpan_nd is not documented. +warning: Member SIXLOWPAN_ND_OPT_6CTX_LEN_MIN (macro definition) of group net_sixlowpan_nd is not documented. +warning: Member SIXLOWPAN_ND_OPT_ABR_LEN (macro definition) of group net_sixlowpan_nd is not documented. +warning: Member SIXLOWPAN_ND_OPT_AR_LEN (macro definition) of group net_sixlowpan_nd is not documented. +warning: Member SLIPDEV_END_ESC (macro definition) of file slipdev_internal.h is not documented. +warning: Member SLIPDEV_END (macro definition) of file slipdev_internal.h is not documented. +warning: Member SLIPDEV_ESC_ESC (macro definition) of file slipdev_internal.h is not documented. +warning: Member SLIPDEV_ESC (macro definition) of file slipdev_internal.h is not documented. +warning: Member SLIPDEV_PARAM_BAUDRATE (macro definition) of file slipdev_params.h is not documented. +warning: Member SLIPDEV_PARAMS (macro definition) of file slipdev_params.h is not documented. +warning: Member SLIPDEV_PARAM_UART (macro definition) of file slipdev_params.h is not documented. +warning: Member SLOTDURATION (macro definition) of file board_info.h is not documented. +warning: Member SM_PWM_01C_PARAMS_DEFAULT (macro definition) of file sm_pwm_01c_params.h is not documented. +warning: Member SM_PWM_01C_SAUL_INFO (macro definition) of file sm_pwm_01c_params.h is not documented. +warning: Member SM_PWM_01C_TLP_PIN (macro definition) of file sm_pwm_01c_params.h is not documented. +warning: Member SM_PWM_01C_TSP_PIN (macro definition) of file sm_pwm_01c_params.h is not documented. +warning: Member SOC_ADC_ADCCON3_EREF (macro definition) of file cfg_adc_default.h is not documented. +warning: Member SOC_ADC_ADCCON3_EREF (macro definition) of file periph_conf.h is not documented. +warning: Member SOCK_DNS_MAX_NAME_LEN (macro definition) of group net_sock_dns is not documented. +warning: Member SOCK_DNS_PORT (macro definition) of group net_sock_dns is not documented. +warning: Member SOCK_DNS_RETRIES (macro definition) of group net_sock_dns is not documented. +warning: Member SOCKET0_SS (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member SOFT_SPI_PARAM_CLK (macro definition) of file soft_spi_params.h is not documented. +warning: Member SOFT_SPI_PARAM_MISO (macro definition) of file soft_spi_params.h is not documented. +warning: Member SOFT_SPI_PARAM_MOSI (macro definition) of file soft_spi_params.h is not documented. +warning: Member SOFT_SPI_PARAMS (macro definition) of file soft_spi_params.h is not documented. +warning: Member SOFT_UART_NUMOF (macro definition) of file soft_uart_params.h is not documented. +warning: Member SOFT_UART_PARAM_FLAGS (macro definition) of file soft_uart_params.h is not documented. +warning: Member SOFT_UART_PARAM_FREQ (macro definition) of file soft_uart_params.h is not documented. +warning: Member SOFT_UART_PARAM_RX (macro definition) of file soft_uart_params.h is not documented. +warning: Member SOFT_UART_PARAMS (macro definition) of file soft_uart_params.h is not documented. +warning: Member SOFT_UART_PARAM_TIMER_RX (macro definition) of file soft_uart_params.h is not documented. +warning: Member SOFT_UART_PARAM_TIMER_TX (macro definition) of file soft_uart_params.h is not documented. +warning: Member SOFT_UART_PARAM_TX (macro definition) of file soft_uart_params.h is not documented. +warning: Member SPEAKER_PIN (macro definition) of file board.h is not documented. +warning: Member SPI_BASE (macro definition) of file periph_conf.h is not documented. +warning: Member spi_clk_config[] (variable) of file periph_conf_common.h is not documented. +warning: Member spi_clk_config[] (variable) of file periph_conf.h is not documented. +warning: Member spi_clk_t (enumeration) of file periph_cpu.h is not documented. +warning: Member spi_config[] (variable) of file cfg_spi_default.h is not documented. +warning: Member spi_config[] (variable) of file periph_conf_common.h is not documented. +warning: Member spi_config[] (variable) of file periph_conf.h is not documented. +warning: Member spi_confs[] (variable) of file periph_conf.h is not documented. +warning: Member SPIFFS_ALIGNED_OBJECT_INDEX_TABLES (macro definition) of file board_common.h is not documented. +warning: Member SPIFFS_[_A-Z]+ (macro definition) of file board_common.h is not documented. +warning: Member SPIFFS_CACHE (macro definition) of file board_common.h is not documented. +warning: Member SPIFFS_CACHE (macro definition) of file board.h is not documented. +warning: Member SPIFFS_HAL_CALLBACK_EXTRA (macro definition) of file board_common.h is not documented. +warning: Member SPIFFS_HAL_CALLBACK_EXTRA (macro definition) of file board.h is not documented. +warning: Member SPIFFS_READ_ONLY (macro definition) of file board_common.h is not documented. +warning: Member SPIFFS_READ_ONLY (macro definition) of file board.h is not documented. +warning: Member SPIFFS_SINGLETON (macro definition) of file board_common.h is not documented. +warning: Member SPIFFS_SINGLETON (macro definition) of file board.h is not documented. +warning: Member SPIFFS_VFS_FILE_BUFFER_SIZE (macro definition) of group sys_vfs is not documented. +warning: Member SPI_IE (macro definition) of file periph_conf.h is not documented. +warning: Member SPI_IE_RX_BIT (macro definition) of file periph_conf.h is not documented. +warning: Member SPI_IE_TX_BIT (macro definition) of file periph_conf.h is not documented. +warning: Member SPI_IF (macro definition) of file periph_conf.h is not documented. +warning: Member SPI_ME_BIT (macro definition) of file periph_conf.h is not documented. +warning: Member SPI_ME (macro definition) of file periph_conf.h is not documented. +warning: Member SPI_MISOSEL (macro definition) of file periph_cpu.h is not documented. +warning: Member SPI_MOSISEL (macro definition) of file periph_cpu.h is not documented. +warning: Member SPI_NUMOF (macro definition) of file cfg_spi_default.h is not documented. +warning: Member SPI_NUMOF (macro definition) of file periph_conf_common.h is not documented. +warning: Member SPI_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member SPI_PIN_CLK (macro definition) of file periph_conf.h is not documented. +warning: Member SPI_PIN_MISO (macro definition) of file periph_conf.h is not documented. +warning: Member SPI_PIN_MOSI (macro definition) of file periph_conf.h is not documented. +warning: Member SPI_SCKSEL (macro definition) of file periph_cpu.h is not documented. +warning: Member spi_t (typedef) of file periph_cpu.h is not documented. +warning: Member SPI_USE_USCI (macro definition) of file periph_conf.h is not documented. +warning: Member SPS30_PARAM_I2C_DEV (macro definition) of file sps30_params.h is not documented. +warning: Member SPS30_PARAMS (macro definition) of file sps30_params.h is not documented. +warning: Member SPS30_SAUL_INFO (macro definition) of file sps30_params.h is not documented. +warning: Member SRF04_PARAM_ECHO (macro definition) of file srf04_params.h is not documented. +warning: Member SRF04_PARAMS (macro definition) of file srf04_params.h is not documented. +warning: Member SRF04_PARAM_TRIGGER (macro definition) of file srf04_params.h is not documented. +warning: Member SRF08_PARAM_ADDR (macro definition) of file srf08_params.h is not documented. +warning: Member SRF08_PARAM_I2C (macro definition) of file srf08_params.h is not documented. +warning: Member SRF08_PARAMS (macro definition) of file srf08_params.h is not documented. +warning: Member SSD1673_BUSY (macro definition) of file board.h is not documented. +warning: Member SSD1673_CS (macro definition) of file board.h is not documented. +warning: Member SSD1673_DC_INPUT (macro definition) of file board.h is not documented. +warning: Member SSD1673_RESET (macro definition) of file board.h is not documented. +warning: Member SSD1673_SPI (macro definition) of file board.h is not documented. +warning: Member SSI_CC_CS_DSEN (macro definition) of group cpu_cc2538 is not documented. +warning: Member SSI_CC_CS_IODIV (macro definition) of group cpu_cc2538 is not documented. +warning: Member STAT_MEASURING (macro definition) of file bmx280_internals.h is not documented. +warning: Member STDIO_UART_BAUDRATE (macro definition) of file board.h is not documented. +warning: Member STDIO_UART_BAUDRATE (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member STDIO_UART_BAUDRATE (macro definition) of group boards_common_iotlab is not documented. +warning: Member stm32_flashpage_block_t (typedef) of file cpu_conf.h is not documented. +warning: Member STM32_PM_STANDBY (macro definition) of file periph_cpu.h is not documented. +warning: Member STM32_PM_STOP (macro definition) of file periph_cpu.h is not documented. +warning: Member stm32_usb_otg_fshs_config[] (variable) of file cfg_usb_otg_fs.h is not documented. +warning: Member stm32_usb_otg_fshs_config[] (variable) of file cfg_usb_otg_hs_fs.h is not documented. +warning: Member STMPE811_PARAM_ADDR (macro definition) of file stmpe811_params.h is not documented. +warning: Member STMPE811_PARAM_I2C_DEV (macro definition) of file stmpe811_params.h is not documented. +warning: Member STMPE811_PARAM_INT_PIN (macro definition) of file stmpe811_params.h is not documented. +warning: Member STMPE811_PARAMS (macro definition) of file stmpe811_params.h is not documented. +warning: Member STMPE811_PARAM_XMAX (macro definition) of file stmpe811_params.h is not documented. +warning: Member STMPE811_PARAM_YMAX (macro definition) of file stmpe811_params.h is not documented. +warning: Member suit_parameter_t (enumeration) of group sys_suit is not documented. +warning: Member _SV(elt, list) (macro definition) of group sys_ut is not documented. +warning: Member SX126X_PARAM_BUSY (macro definition) of file sx126x_params.h is not documented. +warning: Member SX126X_PARAM_DIO1 (macro definition) of file sx126x_params.h is not documented. +warning: Member SX126X_PARAM_REGULATOR (macro definition) of file sx126x_params.h is not documented. +warning: Member SX126X_PARAM_RESET (macro definition) of file sx126x_params.h is not documented. +warning: Member SX126X_PARAM_SET_RF_MODE_CB (macro definition) of file sx126x_params.h is not documented. +warning: Member SX126X_PARAMS (macro definition) of file sx126x_params.h is not documented. +warning: Member SX126X_PARAM_SPI (macro definition) of file board.h is not documented. +warning: Member SX126X_PARAM_SPI (macro definition) of file sx126x_params.h is not documented. +warning: Member SX126X_PARAM_SPI_NSS (macro definition) of file sx126x_params.h is not documented. +warning: Member SX126X_PARAM_TX_PA_MODE (macro definition) of file board.h is not documented. +warning: Member SX126X_PARAM_TX_PA_MODE (macro definition) of file sx126x_params.h is not documented. +warning: Member SX126X_SET_RF_MODE (macro definition) of file sx126x_params.h is not documented. +warning: Member SX126X_TX_PA_MODE (macro definition) of file sx126x_params.h is not documented. +warning: Member SX1272_REG_PADAC (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_BW_125_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_BW_250_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_BW_500_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_BW_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_CODINGRATE_4_5 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_CODINGRATE_4_6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_CODINGRATE_4_7 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_CODINGRATE_4_8 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_CODINGRATE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_IMPLICITHEADER_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_RXPAYLOADCRC_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_RXPAYLOADCRC_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1272_RF_LORA_MODEMCONFIG1_RXPAYLOADCRC_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_REG_PADAC (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_10_41_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_125_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_15_62_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_20_83_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_250_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_31_25_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_41_66_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_500_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_62_50_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_7_81_KHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_BW_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_CODINGRATE_4_5 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_CODINGRATE_4_6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_CODINGRATE_4_7 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_CODINGRATE_4_8 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_CODINGRATE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG1_IMPLICITHEADER_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG2_RXPAYLOADCRC_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG2_RXPAYLOADCRC_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX1276_RF_LORA_MODEMCONFIG2_RXPAYLOADCRC_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_CHANNEL_HOPPING_FLAG (macro definition) of group drivers_sx127x is not documented. +warning: Member SX127X_ENABLE_CRC_FLAG (macro definition) of group drivers_sx127x is not documented. +warning: Member SX127X_ENABLE_FIXED_HEADER_LENGTH_FLAG (macro definition) of group drivers_sx127x is not documented. +warning: Member SX127X_IQ_INVERTED_FLAG (macro definition) of group drivers_sx127x is not documented. +warning: Member SX127X_LOW_DATARATE_OPTIMIZE_FLAG (macro definition) of group drivers_sx127x is not documented. +warning: Member SX127X_PARAM_DIO0 (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_DIO0 (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_PARAM_DIO0 (macro definition) of group boards_bastwan is not documented. +warning: Member SX127X_PARAM_DIO0 (macro definition) of group boards_samr34-xpro is not documented. +warning: Member SX127X_PARAM_DIO1 (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_DIO1 (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_PARAM_DIO1 (macro definition) of group boards_bastwan is not documented. +warning: Member SX127X_PARAM_DIO1 (macro definition) of group boards_samr34-xpro is not documented. +warning: Member SX127X_PARAM_DIO2 (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_DIO2 (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_PARAM_DIO2 (macro definition) of group boards_bastwan is not documented. +warning: Member SX127X_PARAM_DIO2 (macro definition) of group boards_samr34-xpro is not documented. +warning: Member SX127X_PARAM_DIO3 (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_DIO3 (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_PARAM_DIO3 (macro definition) of group boards_bastwan is not documented. +warning: Member SX127X_PARAM_DIO3 (macro definition) of group boards_samr34-xpro is not documented. +warning: Member SX127X_PARAM_DIO4 (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_DIO5 (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_DIO_MULTI (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_PASELECT (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_PASELECT (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_PARAM_PASELECT (macro definition) of group boards_bastwan is not documented. +warning: Member SX127X_PARAM_PASELECT (macro definition) of group boards_samr34-xpro is not documented. +warning: Member SX127X_PARAM_RESET (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_RESET (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_PARAM_RESET (macro definition) of group boards_bastwan is not documented. +warning: Member SX127X_PARAM_RESET (macro definition) of group boards_samr34-xpro is not documented. +warning: Member SX127X_PARAM_RX_SWITCH (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_RX_SWITCH (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_PARAMS (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_PARAM_SPI (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_SPI (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_PARAM_SPI (macro definition) of group boards_bastwan is not documented. +warning: Member SX127X_PARAM_SPI (macro definition) of group boards_samr34-xpro is not documented. +warning: Member SX127X_PARAM_SPI_NSS (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_SPI_NSS (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_PARAM_SPI_NSS (macro definition) of group boards_bastwan is not documented. +warning: Member SX127X_PARAM_SPI_NSS (macro definition) of group boards_samr34-xpro is not documented. +warning: Member SX127X_PARAM_TX_SWITCH (macro definition) of file board.h is not documented. +warning: Member SX127X_PARAM_TX_SWITCH (macro definition) of file sx127x_params.h is not documented. +warning: Member SX127X_POR_ACTIVE_LOGIC_LEVEL (macro definition) of file sx127x_internal.h is not documented. +warning: Member SX127X_REG_AFCBW (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_AFCFEI (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_AFCLSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_AFCMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_AGCREF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_AGCTHRESH1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_AGCTHRESH2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_AGCTHRESH3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_BITRATEFRAC (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_BITRATELSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_BITRATEMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_BROADCASTADRS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_DIOMAPPING1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_DIOMAPPING2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_FDEVLSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_FDEVMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_FEILSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_FEIMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_FIFO (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_FIFOTHRESH (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_FORMERTEMP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_FRFLSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_FRFMID (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_FRFMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_IMAGECAL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_IRQFLAGS1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_IRQFLAGS2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LNA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LOWBAT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_AGCREF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_AGCTHRESH1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_AGCTHRESH2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_AGCTHRESH3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_BITRATEFRAC (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_DETECTIONTHRESHOLD (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_DETECTOPTIMIZE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_DIOMAPPING1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_DIOMAPPING2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FEILSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FEIMID (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FEIMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FIFOADDRPTR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FIFO (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FIFORXBASEADDR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FIFORXBYTEADDR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FIFORXCURRENTADDR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FIFOTXBASEADDR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FORMERTEMP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FRFLSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FRFMID (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_FRFMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_HOPCHANNEL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_HOPPERIOD (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_INVERTIQ2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_INVERTIQ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_IRQFLAGS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_IRQFLAGSMASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_LNA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_MODEMCONFIG1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_MODEMCONFIG2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_MODEMCONFIG3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_MODEMSTAT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_OCP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_OPMODE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PACONFIG (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PADAC (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PARAMP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PAYLOADLENGTH (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PAYLOADMAXLENGTH (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PKTRSSIVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PKTSNRVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PLLHOP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PLL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PREAMBLELSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_PREAMBLEMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_RSSIVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_RSSIWIDEBAND (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_RXHEADERCNTVALUELSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_RXHEADERCNTVALUEMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_RXNBBYTES (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_RXPACKETCNTVALUELSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_RXPACKETCNTVALUEMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_SYMBTIMEOUTLSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_SYNCWORD (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_TCXO (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_TEST2F (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_TEST30 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_TEST36 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_TEST3A (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_LR_VERSION (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_NODEADRS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_OCP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_OOKAVG (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_OOKFIX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_OOKPEAK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_OPMODE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_OSC (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_PACKETCONFIG1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_PACKETCONFIG2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_PACONFIG (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_PARAMP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_PAYLOADLENGTH (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_PLLHOP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_PLL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_PREAMBLEDETECT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_PREAMBLELSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_PREAMBLEMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RES17 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RES18 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RES19 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RSSICOLLISION (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RSSICONFIG (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RSSITHRESH (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RSSIVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RXBW (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RXCONFIG (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RXDELAY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RXTIMEOUT1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RXTIMEOUT2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_RXTIMEOUT3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SEQCONFIG1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SEQCONFIG2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SYNCCONFIG (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SYNCVALUE1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SYNCVALUE2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SYNCVALUE3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SYNCVALUE4 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SYNCVALUE5 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SYNCVALUE6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SYNCVALUE7 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_SYNCVALUE8 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_TCXO (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_TEMP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_TIMER1COEF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_TIMER2COEF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_TIMERRESOL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_REG_VERSION (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_EXPAFC_0 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_EXPAFC_1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_EXPAFC_2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_EXPAFC_3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_EXPAFC_4 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_EXPAFC_5 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_EXPAFC_6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_EXPAFC_7 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_EXPAFC_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_MANTAFC_16 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_MANTAFC_20 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_MANTAFC_24 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCBW_MANTAFC_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCFEI_AFCAUTOCLEAR_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCFEI_AFCAUTOCLEAR_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCFEI_AFCAUTOCLEAR_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCFEI_AFCCLEAR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_AFCFEI_AGCSTART (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEFRAC_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_100000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_115200_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_1200_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_12500_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_150000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_15000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_153600_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_19200_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_200000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_2400_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_250000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_25000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_32768_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_38400_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_4800_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_50000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_57600_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_76800_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATELSB_9600_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_100000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_115200_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_1200_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_12500_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_150000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_15000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_153600_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_19200_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_200000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_2400_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_250000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_25000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_32768_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_38400_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_4800_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_50000_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_57600_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_76800_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BITRATEMSB_9600_BPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_BROADCASTADDRESS_ADDRESS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO0_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO0_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO0_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO0_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO0_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO1_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO1_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO1_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO1_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO1_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO2_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO2_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO2_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO2_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO2_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO3_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO3_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO3_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO3_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING1_DIO3_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_DIO4_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_DIO4_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_DIO4_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_DIO4_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_DIO4_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_DIO5_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_DIO5_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_DIO5_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_DIO5_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_DIO5_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_MAP_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_MAP_PREAMBLEDETECT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_DIOMAPPING2_MAP_RSSI (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_100000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_10000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_110000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_120000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_130000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_140000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_150000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_15000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_160000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_170000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_180000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_190000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_200000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_20000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_2000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_25000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_30000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_35000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_40000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_45000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_50000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_5000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_55000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_60000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_65000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_70000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_75000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_80000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_85000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_90000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVLSB_95000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_100000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_10000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_110000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_120000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_130000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_140000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_150000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_15000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_160000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_170000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_180000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_190000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_200000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_20000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_2000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_25000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_30000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_35000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_40000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_45000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_50000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_5000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_55000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_60000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_65000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_70000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_75000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_80000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_85000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_90000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FDEVMSB_95000_HZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FIFOTHRESH_FIFOTHRESHOLD_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FIFOTHRESH_FIFOTHRESHOLD_THRESHOLD (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FIFOTHRESH_TXSTARTCONDITION_FIFONOTEMPTY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FIFOTHRESH_TXSTARTCONDITION_FIFOTHRESH (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FIFOTHRESH_TXSTARTCONDITION_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_863_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_864_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_865_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_866_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_867_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_868_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_869_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_870_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_902_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_903_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_904_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_905_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_906_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_907_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_908_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_909_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_910_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_911_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_912_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_913_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_914_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_915_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_916_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_917_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_918_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_919_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_920_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_921_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_922_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_923_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_924_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_925_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_926_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_927_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFLSB_928_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_863_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_864_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_865_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_866_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_867_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_868_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_869_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_870_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_902_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_903_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_904_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_905_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_906_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_907_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_908_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_909_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_910_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_911_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_912_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_913_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_914_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_915_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_916_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_917_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_918_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_919_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_920_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_921_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_922_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_923_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_924_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_925_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_926_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_927_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMID_928_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_863_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_864_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_865_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_866_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_867_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_868_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_869_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_870_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_902_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_903_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_904_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_905_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_906_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_907_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_908_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_909_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_910_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_911_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_912_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_913_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_914_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_915_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_916_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_917_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_918_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_919_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_920_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_921_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_922_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_923_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_924_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_925_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_926_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_927_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_FRFMSB_928_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_AUTOIMAGECAL_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_AUTOIMAGECAL_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_AUTOIMAGECAL_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_IMAGECAL_DONE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_IMAGECAL_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_IMAGECAL_RUNNING (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_IMAGECAL_START (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_TEMPCHANGE_HIGHER (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_TEMPCHANGE_LOWER (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_TEMPMONITOR_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_TEMPMONITOR_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_TEMPMONITOR_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_TEMPTHRESHOLD_05 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_TEMPTHRESHOLD_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_TEMPTHRESHOLD_15 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_TEMPTHRESHOLD_20 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IMAGECAL_TEMPTHRESHOLD_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS1_MODEREADY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS1_PLLLOCK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS1_PREAMBLEDETECT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS1_RSSI (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS1_RXREADY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS1_SYNCADDRESSMATCH (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS1_TIMEOUT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS1_TXREADY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS2_CRCOK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS2_FIFOEMPTY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS2_FIFOFULL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS2_FIFOLEVEL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS2_FIFOOVERRUN (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS2_LOWBAT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS2_PACKETSENT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_IRQFLAGS2_PAYLOADREADY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LNA_BOOST_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LNA_BOOST_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LNA_BOOST_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LNA_GAIN_G1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LNA_GAIN_G2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LNA_GAIN_G3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LNA_GAIN_G4 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LNA_GAIN_G5 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LNA_GAIN_G6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LNA_GAIN_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DETECTIONOPTIMIZE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DETECTIONOPTIMIZE_SF6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DETECTIONOPTIMIZE_SF7_TO_SF12 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DETECTIONTHRESH_SF6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DETECTIONTHRESH_SF7_TO_SF12 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO0_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO0_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO0_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO0_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO0_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO1_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO1_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO1_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO1_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO1_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO2_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO2_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO2_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO2_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO2_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO3_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO3_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO3_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO3_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING1_DIO3_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO4_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO4_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO4_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO4_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO4_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO5_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO5_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO5_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO5_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_DIO5_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_MAP_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_MAP_PREAMBLEDETECT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_DIOMAPPING2_MAP_RSSI (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_FIFOADDRPTR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_FIFORXBASEADDR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_FIFOTXBASEADDR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_FRFLSB_434_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_FRFMID_434_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_FRFMSB_434_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_HOPCHANNEL_CHANNEL_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_HOPCHANNEL_CRCONPAYLOAD_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_HOPCHANNEL_CRCONPAYLOAD_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_HOPCHANNEL_CRCONPAYLOAD_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_HOPCHANNEL_PLL_LOCK_FAIL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_HOPCHANNEL_PLL_LOCK_SUCCEED (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_HOPCHANNEL_PLL_LOCK_TIMEOUT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_HOPPERIOD_FREQFOPPINGPERIOD (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_INVERTIQ2_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_INVERTIQ2_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_INVERTIQ_RX_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_INVERTIQ_RX_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_INVERTIQ_RX_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_INVERTIQ_TX_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_INVERTIQ_TX_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_INVERTIQ_TX_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_CADDETECTED (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_CADDETECTED_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_CADDONE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_CADDONE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_FHSSCHANGEDCHANNEL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_FHSSCHANGEDCHANNEL_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_PAYLOADCRCERROR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_PAYLOADCRCERROR_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_RXDONE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_RXDONE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_RXTIMEOUT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_RXTIMEOUT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_TXDONE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_TXDONE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_VALIDHEADER (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_IRQFLAGS_VALIDHEADER_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_BOOST_HF_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_BOOST_HF_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_BOOST_HF_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_BOOST_LF_DEFAULT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_BOOST_LF_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_GAIN_G1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_GAIN_G2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_GAIN_G3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_GAIN_G4 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_GAIN_G5 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_GAIN_G6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_LNA_GAIN_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG1_IMPLICITHEADER_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG1_IMPLICITHEADER_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG1_LOWDATARATEOPTIMIZE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_12 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_7 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_8 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_9 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_SF_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_SYMBTIMEOUTMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_SYMBTIMEOUTMSB_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_TXCONTINUOUSMODE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_TXCONTINUOUSMODE_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG2_TXCONTINUOUSMODE_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG3_AGCAUTO_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG3_AGCAUTO_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG3_AGCAUTO_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG3_LOWDATARATEOPTIMIZE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG3_LOWDATARATEOPTIMIZE_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMCONFIG3_LOWDATARATEOPTIMIZE_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_HEADER_VALID (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_MODEM_CLEAR (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_RX_ONGOING (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_SIGNAL_DETECTED (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMSTAT_MODEM_STATUS_SIGNAL_SYNCHRONIZED (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_MODEMSTAT_RX_CR_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_045_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_050_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_055_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_060_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_065_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_070_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_075_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_080_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_085_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_090_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_095_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_100_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_105_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_110_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_115_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_120_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_130_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_140_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_150_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_160_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_170_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_180_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_190_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_200_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_210_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_220_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_230_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_240_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OCP_TRIM_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_ACCESSSHAREDSX127X_REG_DISABLE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_ACCESSSHAREDSX127X_REG_ENABLE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_ACCESSSHAREDSX127X_REG_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_CAD (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_FREQMODE_ACCESS_HF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_FREQMODE_ACCESS_LF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_FREQMODE_ACCESS_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_LONGRANGEMODE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_LONGRANGEMODE_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_LONGRANGEMODE_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_RECEIVER (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_RECEIVER_SINGLE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_SLEEP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_STANDBY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_SYNTHESIZER_RX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_SYNTHESIZER_TX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_OPMODE_TRANSMITTER (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PACONFIG_MAX_POWER_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PACONFIG_OUTPUTPOWER_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PACONFIG_PASELECT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PACONFIG_PASELECT_PABOOST (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PACONFIG_PASELECT_RFO (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PADAC_20DBM_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PADAC_20DBM_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PADAC_20DBM_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0010_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0012_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0015_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0020_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0025_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0031_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0040_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0050_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0062_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0100_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0125_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0250_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_0500_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_1000_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_2000_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_3400_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_TXBANDFORCE_AUTO (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_TXBANDFORCE_BAND_SEL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PARAMP_TXBANDFORCE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PAYLOADLENGTH (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PAYLOADMAXLENGTH (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PLLHOP_FASTHOP_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PLLHOP_FASTHOP_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PLLHOP_FASTHOP_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PREAMBLELENGTHLSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_PREAMBLELENGTHMSB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_SYMBTIMEOUTLSB_SYMBTIMEOUT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_TCXO_TCXOINPUT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_TCXO_TCXOINPUT_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LORA_TCXO_TCXOINPUT_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_TRIM_1695 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_TRIM_1764 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_TRIM_1835 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_TRIM_1905 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_TRIM_1976 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_TRIM_2045 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_TRIM_2116 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_TRIM_2185 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_LOWBAT_TRIM_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_NODEADDRESS_ADDRESS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_045_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_050_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_055_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_060_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_065_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_070_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_075_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_080_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_085_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_090_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_095_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_100_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_105_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_110_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_115_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_120_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_130_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_140_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_150_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_160_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_170_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_180_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_190_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_200_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_210_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_220_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_230_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_240_MA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OCP_TRIM_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_AVERAGEOFFSET_0_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_AVERAGEOFFSET_2_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_AVERAGEOFFSET_4_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_AVERAGEOFFSET_6_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_AVERAGEOFFSET_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKAVERAGETHRESHFILT_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKAVERAGETHRESHFILT_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKAVERAGETHRESHFILT_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKAVERAGETHRESHFILT_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKAVERAGETHRESHFILT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_000 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_001 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_010 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_011 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_100 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_101 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_110 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_111 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKAVG_OOKPEAKTHRESHDEC_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKFIX_OOKFIXEDTHRESHOLD (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_BITSYNC_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_BITSYNC_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_BITSYNC_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_0_5_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_1_0_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_1_5_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_2_0_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_3_0_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_4_0_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_5_0_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_6_0_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKPEAKTHRESHSTEP_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKTHRESHTYPE_AVERAGE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKTHRESHTYPE_FIXED (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKTHRESHTYPE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OOKPEAK_OOKTHRESHTYPE_PEAK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_LONGRANGEMODE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_LONGRANGEMODE_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_LONGRANGEMODE_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_MODULATIONSHAPING_00 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_MODULATIONSHAPING_01 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_MODULATIONSHAPING_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_MODULATIONSHAPING_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_MODULATIONSHAPING_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_MODULATIONTYPE_FSK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_MODULATIONTYPE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_MODULATIONTYPE_OOK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_RECEIVER (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_RECEIVER_SINGLE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_SLEEP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_STANDBY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_SYNTHESIZER_RX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_SYNTHESIZER_TX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OPMODE_TRANSMITTER (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OSC_CLKOUT_16_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OSC_CLKOUT_1_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OSC_CLKOUT_2_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OSC_CLKOUT_32_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OSC_CLKOUT_4_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OSC_CLKOUT_8_MHZ (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OSC_CLKOUT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OSC_CLKOUT_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OSC_CLKOUT_RC (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_OSC_RCCALSTART (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_ADDRSFILTERING_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_ADDRSFILTERING_NODEBROADCAST (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_ADDRSFILTERING_NODE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_ADDRSFILTERING_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_CRCAUTOCLEAR_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_CRCAUTOCLEAR_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_CRCAUTOCLEAR_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_CRC_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_CRC_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_CRC_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_CRCWHITENINGTYPE_CCITT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_CRCWHITENINGTYPE_IBM (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_CRCWHITENINGTYPE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_DCFREE_MANCHESTER (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_DCFREE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_DCFREE_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_DCFREE_WHITENING (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_PACKETFORMAT_FIXED (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_PACKETFORMAT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG1_PACKETFORMAT_VARIABLE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_BEACON_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_BEACON_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_BEACON_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_DATAMODE_CONTINUOUS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_DATAMODE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_DATAMODE_PACKET (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_IOHOME_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_IOHOME_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_IOHOME_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_PAYLOADLENGTH_MSB_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_WMBUS_CRC_DISABLE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_WMBUS_CRC_ENABLE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACKETCONFIG2_WMBUS_CRC_ENABLE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACONFIG_MAX_POWER_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACONFIG_OUTPUTPOWER_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACONFIG_PASELECT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACONFIG_PASELECT_PABOOST (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PACONFIG_PASELECT_RFO (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PADAC_20DBM_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PADAC_20DBM_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PADAC_20DBM_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0010_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0012_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0015_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0020_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0025_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0031_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0040_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0050_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0062_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0100_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0125_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0250_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_0500_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_1000_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_2000_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_3400_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_LOWPNTXPLL_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_LOWPNTXPLL_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_LOWPNTXPLL_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PARAMP_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PAYLOADLENGTH_LENGTH (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PLL_BANDWIDTH_150 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PLL_BANDWIDTH_225 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PLL_BANDWIDTH_300 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PLL_BANDWIDTH_75 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PLL_BANDWIDTH_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PLLHOP_FASTHOP_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PLLHOP_FASTHOP_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PLLHOP_FASTHOP_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTOR_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTOR_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTOR_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORSIZE_1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORSIZE_2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORSIZE_3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORSIZE_4 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORSIZE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_0 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_10 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_11 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_12 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_13 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_14 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_15 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_16 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_17 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_18 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_19 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_20 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_21 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_22 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_23 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_24 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_25 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_26 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_27 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_28 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_29 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_30 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_31 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_4 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_5 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_7 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_8 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_9 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEDETECT_DETECTORTOL_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLELSB_SIZE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_PREAMBLEMSB_SIZE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICOLISION_THRESHOLD (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_01_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_02_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_03_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_04_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_05_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_06_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_07_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_08_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_09_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_10_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_11_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_12_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_13_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_14_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_15_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_M_16_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_00_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_01_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_02_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_03_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_04_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_05_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_06_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_07_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_08_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_09_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_10_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_11_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_12_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_13_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_14_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_OFFSET_P_15_DB (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_128 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_16 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_256 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_32 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_4 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_64 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_8 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSICONFIG_SMOOTHING_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RSSITHRESH_THRESHOLD (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_EXP_0 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_EXP_1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_EXP_2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_EXP_3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_EXP_4 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_EXP_5 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_EXP_6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_EXP_7 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_EXP_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_MANT_16 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_MANT_20 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_MANT_24 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXBW_MANT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_AFCAUTO_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_AFCAUTO_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_AFCAUTO_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_AGCAUTO_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_AGCAUTO_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_AGCAUTO_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_RESTARTRXONCOLLISION_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_RESTARTRXONCOLLISION_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_RESTARTRXONCOLLISION_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_RESTARTRXWITHOUTPLLLOCK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_RESTARTRXWITHPLLLOCK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_RXTRIGER_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_RXTRIGER_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_RXTRIGER_PREAMBLEDETECT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_RXTRIGER_RSSI (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXCONFIG_RXTRIGER_RSSI_PREAMBLEDETECT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXDELAY_INTERPACKETRXDELAY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXTIMEOUT1_TIMEOUTRXRSSI (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXTIMEOUT2_TIMEOUTRXPREAMBLE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_RXTIMEOUT3_TIMEOUTSIGNALSYNC (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMIDLE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMIDLE_TORX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMIDLE_TOTX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMSTART_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMSTART_TOLPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMSTART_TORX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMSTART_TOTX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMSTART_TOTX_ONFIFOLEVEL (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMTX_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMTX_TOLPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_FROMTX_TORX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_IDLEMODE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_IDLEMODE_SLEEP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_IDLEMODE_STANDBY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_LPS_IDLE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_LPS_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_LPS_SEQUENCER_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_SEQUENCER_START (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG1_SEQUENCER_STOP (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRX_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_TOLPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_TORX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_TOSEQUENCEROFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_TOSYNTHESIZERRX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXPKT_TOTX_ONFIFOEMPTY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXTIMEOUT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXTIMEOUT_TOLPS (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXTIMEOUT_TORXRESTART (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXTIMEOUT_TOSEQUENCEROFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRXTIMEOUT_TOTX (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOLPS_ONPLDRDY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TORXPKT_ONCRCOK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TORXPKT_ONPLDRDY (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOSEQUENCEROFF_ONPREAMBLE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOSEQUENCEROFF_ONRSSI (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOSEQUENCEROFF_ONSYNC (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOUNUSED_000 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SEQCONFIG2_FROMRX_TOUNUSED_111 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_AUTORESTARTRXMODE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_AUTORESTARTRXMODE_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_AUTORESTARTRXMODE_WAITPLL_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_AUTORESTARTRXMODE_WAITPLL_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_PREAMBLEPOLARITY_55 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_PREAMBLEPOLARITY_AA (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_PREAMBLEPOLARITY_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNC_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNC_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNC_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_3 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_4 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_5 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_6 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_7 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_8 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCCONFIG_SYNCSIZE_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCVALUE1_SYNCVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCVALUE2_SYNCVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCVALUE3_SYNCVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCVALUE4_SYNCVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCVALUE5_SYNCVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCVALUE6_SYNCVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCVALUE7_SYNCVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_SYNCVALUE8_SYNCVALUE (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TCXO_TCXOINPUT_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TCXO_TCXOINPUT_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TCXO_TCXOINPUT_ON (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMER1COEF_TIMER1COEFFICIENT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMER2COEF_TIMER2COEFFICIENT (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMERRESOL_TIMER1RESOL_000064_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMERRESOL_TIMER1RESOL_004100_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMERRESOL_TIMER1RESOL_262000_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMERRESOL_TIMER1RESOL_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMERRESOL_TIMER1RESOL_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMERRESOL_TIMER2RESOL_000064_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMERRESOL_TIMER2RESOL_004100_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMERRESOL_TIMER2RESOL_262000_US (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMERRESOL_TIMER2RESOL_MASK (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RF_TIMERRESOL_TIMER2RESOL_OFF (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RNG_REG_MODEM_CONFIG1 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RNG_REG_MODEM_CONFIG2 (macro definition) of file sx127x_registers.h is not documented. +warning: Member SX127X_RSSI_OFFSET_HF (macro definition) of file sx127x_internal.h is not documented. +warning: Member SX127X_RSSI_OFFSET_LF (macro definition) of file sx127x_internal.h is not documented. +warning: Member SX127X_RX_CONTINUOUS_FLAG (macro definition) of group drivers_sx127x is not documented. +warning: Member SYNC_ACCURACY (macro definition) of file board_info.h is not documented. +warning: Member SYS32Mode (macro definition) of group cpu_arm7_common is not documented. +warning: Member SYS_ARCH_DECL_PROTECT(x) (macro definition) of file sys_arch.h is not documented. +warning: Member SYS_ARCH_DECL_PROTECT(x) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member SYS_ARCH_PROTECT(x) (macro definition) of file sys_arch.h is not documented. +warning: Member SYS_ARCH_PROTECT(x) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member SYS_ARCH_UNPROTECT(x) (macro definition) of file sys_arch.h is not documented. +warning: Member SYS_ARCH_UNPROTECT(x) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member sys_check_core_locked(void) (function) of group pkg_lwip_opts is not documented. +warning: Member SYS_CTRL_OSC32K_USE_XTAL (macro definition) of file cfg_clk_default.h is not documented. +warning: Member SYS_CTRL_OSC_USE_XTAL (macro definition) of file cfg_clk_default.h is not documented. +warning: Member SYS_EINVAL (macro definition) of file os_types.h is not documented. +warning: Member SYS_ENOMEM (macro definition) of file os_types.h is not documented. +warning: Member sys_lock_tcpip_core(void) (function) of file sys_arch.h is not documented. +warning: Member sys_lock_tcpip_core(void) (function) of group pkg_lwip_sys is not documented. +warning: Member sys_mark_tcpip_thread(void) (function) of group pkg_lwip_opts is not documented. +warning: Member sys_mbox_set_invalid(mbox) (macro definition) of file sys_arch.h is not documented. +warning: Member sys_mbox_set_invalid(mbox) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member sys_mbox_set_invalid(sys_mbox_t *mbox) (function) of file sys_arch.h is not documented. +warning: Member sys_mbox_set_invalid(sys_mbox_t *mbox) (function) of group pkg_lwip_sys is not documented. +warning: Member SYS_MBOX_SIZE (macro definition) of file sys_arch.h is not documented. +warning: Member SYS_MBOX_SIZE (macro definition) of group pkg_lwip_sys is not documented. +warning: Member sys_mbox_valid(mbox) (macro definition) of file sys_arch.h is not documented. +warning: Member sys_mbox_valid(mbox) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member sys_mbox_valid(sys_mbox_t *mbox) (function) of file sys_arch.h is not documented. +warning: Member sys_mbox_valid(sys_mbox_t *mbox) (function) of group pkg_lwip_sys is not documented. +warning: Member sys_mutex_set_invalid(mutex) (macro definition) of file sys_arch.h is not documented. +warning: Member sys_mutex_set_invalid(mutex) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member sys_mutex_valid(mutex) (macro definition) of file sys_arch.h is not documented. +warning: Member sys_mutex_valid(mutex) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member sys_mutex_valid(sys_mutex_t *mutex) (function) of file sys_arch.h is not documented. +warning: Member sys_mutex_valid(sys_mutex_t *mutex) (function) of group pkg_lwip_sys is not documented. +warning: Member sys_sem_set_invalid(sem) (macro definition) of file sys_arch.h is not documented. +warning: Member sys_sem_set_invalid(sem) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member sys_sem_valid(sem) (macro definition) of file sys_arch.h is not documented. +warning: Member sys_sem_valid(sem) (macro definition) of group pkg_lwip_sys is not documented. +warning: Member sys_sem_valid(sys_sem_t *sem) (function) of file sys_arch.h is not documented. +warning: Member sys_sem_valid(sys_sem_t *sem) (function) of group pkg_lwip_sys is not documented. +warning: Member SYSTEM_VOLTAGE (macro definition) of file sdcard_spi_internal.h is not documented. +warning: Member sys_unlock_tcpip_core(void) (function) of file sys_arch.h is not documented. +warning: Member sys_unlock_tcpip_core(void) (function) of group pkg_lwip_sys is not documented. +warning: Member SZT_F (macro definition) of group pkg_lwip_sys is not documented. +warning: Member t0_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member t1_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member t2_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member t3_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member t4_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member t5_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member t6_OFFSET (macro definition) of file context_frame.h is not documented. +warning: Member TCPIP_THREAD_STACKSIZE (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member TCPIP_THREAD_STACKSIZE (macro definition) of group pkg_lwip_opts is not documented. +warning: Member TCP_LISTEN_BACKLOG (macro definition) of group pkg_lwip_opts is not documented. +warning: Member TCS37727_AG_THRESHOLD_HIGH (macro definition) of file tcs37727-internal.h is not documented. +warning: Member TCS37727_AG_THRESHOLD_LOW (macro definition) of file tcs37727-internal.h is not documented. +warning: Member TCS37727_ATIME_MAX (macro definition) of file tcs37727-internal.h is not documented. +warning: Member TCS37727_ATIME_MIN (macro definition) of file tcs37727-internal.h is not documented. +warning: Member TCS37727_ATIME_TO_REG(val) (macro definition) of file tcs37727-internal.h is not documented. +warning: Member TCS37727_ATIME_TO_US(reg) (macro definition) of file tcs37727-internal.h is not documented. +warning: Member TCS37727_ID_VALUE (macro definition) of file tcs37727-internal.h is not documented. +warning: Member TCS37727_PARAM_ADDR (macro definition) of file board.h is not documented. +warning: Member TCS37727_PARAM_ADDR (macro definition) of file tcs37727_params.h is not documented. +warning: Member TCS37727_PARAM_ATIME (macro definition) of file tcs37727_params.h is not documented. +warning: Member TCS37727_PARAM_I2C (macro definition) of file board.h is not documented. +warning: Member TCS37727_PARAM_I2C (macro definition) of file tcs37727_params.h is not documented. +warning: Member TCS37727_PARAMS (macro definition) of file tcs37727_params.h is not documented. +warning: Member TCS37727_SAUL_INFO (macro definition) of file tcs37727_params.h is not documented. +warning: Member TCXO_PWR_PIN (macro definition) of group boards_bastwan is not documented. +warning: Member TCXO_PWR_PIN (macro definition) of group boards_samr34-xpro is not documented. +warning: Member THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (macro definition) of file cpu_conf.h is not documented. +warning: Member THREAD_EXTRA_STACKSIZE_PRINTF (macro definition) of file cpu_conf_common.h is not documented. +warning: Member THREAD_EXTRA_STACKSIZE_PRINTF (macro definition) of file cpu_conf.h is not documented. +warning: Member THREAD_EXTRA_STACKSIZE_PRINTF (macro definition) of group cpu_esp32_conf is not documented. +warning: Member THREAD_EXTRA_STACKSIZE_PRINTF (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member THREAD_STACKSIZE_DEFAULT (macro definition) of file cpu_conf_common.h is not documented. +warning: Member THREAD_STACKSIZE_DEFAULT (macro definition) of file cpu_conf.h is not documented. +warning: Member THREAD_STACKSIZE_DEFAULT (macro definition) of group cpu_esp32_conf is not documented. +warning: Member THREAD_STACKSIZE_DEFAULT (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member THREAD_STACKSIZE_IDLE (macro definition) of file cpu_conf_common.h is not documented. +warning: Member THREAD_STACKSIZE_IDLE (macro definition) of file cpu_conf.h is not documented. +warning: Member THREAD_STACKSIZE_IDLE (macro definition) of group cpu_esp32_conf is not documented. +warning: Member THREAD_STACKSIZE_IDLE (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member THREAD_STACKSIZE_MAIN (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member THREAD_STACKSIZE_MINIMUM (macro definition) of file cpu_conf.h is not documented. +warning: Member THREAD_STACKSIZE_SMALL (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member THREAD_STACKSIZE_TINY (macro definition) of group cpu_esp8266_conf is not documented. +warning: Member thread_status_t (enumeration) of group core_sched is not documented. +warning: Member timer0_channel_config[] (variable) of file periph_conf.h is not documented. +warning: Member TIMER_0_CHANNELS (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_CLKDIS() (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_CLKEN() (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_DEV (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_FLAG (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_0_FREQ (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_IRQ (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_IRQN (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_ISRA (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_0_ISRA (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_ISRB (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_0_ISRB (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_ISRC (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_0_ISRC (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_ISRD (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_ISR (macro definition) of file cfg_timer_012.h is not documented. +warning: Member TIMER_0_ISR (macro definition) of file cfg_timer_01.h is not documented. +warning: Member TIMER_0_ISR (macro definition) of file cfg_timer_default.h is not documented. +warning: Member TIMER_0_ISR (macro definition) of file cfg_timer_tim2.h is not documented. +warning: Member TIMER_0_ISR (macro definition) of file cfg_timer_tim5.h is not documented. +warning: Member TIMER_0_ISR (macro definition) of file periph_conf_common.h is not documented. +warning: Member TIMER_0_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0 (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_0_MASK (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_0_MAX_VALUE (macro definition) of file cfg_timer_default.h is not documented. +warning: Member TIMER_0_MAX_VALUE (macro definition) of file periph_conf_common.h is not documented. +warning: Member TIMER_0_MAX_VALUE (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_0_PLKSEL() (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_1_CHANNELS (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_1_FLAG (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_1_IRQN (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_1_ISRA (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_1_ISRA (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_1_ISRB (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_1_ISRB (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_1_ISRC (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_1_ISRC (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_1_ISRD (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_1_ISR (macro definition) of file cfg_timer_012.h is not documented. +warning: Member TIMER_1_ISR (macro definition) of file cfg_timer_01.h is not documented. +warning: Member TIMER_1_ISR (macro definition) of file cfg_timer_default.h is not documented. +warning: Member TIMER_1_ISR (macro definition) of file periph_conf_common.h is not documented. +warning: Member TIMER_1_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_1 (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_1_MASK (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_1_MAX_VALUE (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_2_FLAG (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_2_ISRA (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_2_ISRB (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_2_ISRC (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_2_ISR (macro definition) of file cfg_timer_012.h is not documented. +warning: Member TIMER_2_ISR (macro definition) of file cfg_timer_default.h is not documented. +warning: Member TIMER_2_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_2 (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_2_MASK (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_3_ISR (macro definition) of file cfg_timer_default.h is not documented. +warning: Member TIMER_A_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_A (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_BASE (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_B_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_B (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_CAP (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_CCIE (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_CCI (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_CCIS_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_CLLD_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_CM_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_COV (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_OUT (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_OUTMOD_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_OUTMOD_OUTVAL (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_OUTMOD_RESET (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_OUTMOD_RESET_SET (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_OUTMOD_SET (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_OUTMOD_SET_RESET (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_OUTMOD_TOGGLE (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_OUTMOD_TOG_RESET (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_OUTMOD_TOG_SET (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CCTL_SCS (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CHAN (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_CHANNEL_NUMOF (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_CHANNEL_NUMOF (macro definition) of file periph_cpu.h is not documented. +warning: Member timer_config[] (variable) of file cfg_timer_012.h is not documented. +warning: Member timer_config[] (variable) of file cfg_timer_01.h is not documented. +warning: Member timer_config[] (variable) of file cfg_timer_default.h is not documented. +warning: Member timer_config[] (variable) of file cfg_timer_tim2.h is not documented. +warning: Member timer_config[] (variable) of file cfg_timer_tim5.h is not documented. +warning: Member timer_config[] (variable) of file periph_conf_common.h is not documented. +warning: Member timer_config[] (variable) of file periph_conf.h is not documented. +warning: Member TIMER_CTL_CLR (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_ID_DIV1 (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_ID_DIV2 (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_ID_DIV4 (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_ID_DIV8 (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_ID_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_IE (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_MC_CONT (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_MC_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_MC_STOP (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_MC_UPDOWN (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_MC_UP (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_TASSEL_ACLK (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_TASSEL_INV_TCLK (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_TASSEL_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_TASSEL_SMCLK (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_CTL_TASSEL_TCLK (macro definition) of file msp430_regs.h is not documented. +warning: Member timer_div_t (enumeration) of file periph_cpu_common.h is not documented. +warning: Member TIMER_IRQ_PRIO (macro definition) of file cfg_timer_default.h is not documented. +warning: Member TIMER_IRQ_PRIO (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_ISR_CC0 (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_ISR_CCX (macro definition) of file periph_conf.h is not documented. +warning: Member TIMER_IVEC_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_IVEC (macro definition) of file msp430_regs.h is not documented. +warning: Member TIMER_MAX_VALUE (macro definition) of file periph_cpu.h is not documented. +warning: Member TIMER_NUMOF (macro definition) of file cfg_timer_012.h is not documented. +warning: Member TIMER_NUMOF (macro definition) of file cfg_timer_01.h is not documented. +warning: Member TIMER_NUMOF (macro definition) of file cfg_timer_default.h is not documented. +warning: Member TIMER_NUMOF (macro definition) of file cfg_timer_tim2.h is not documented. +warning: Member TIMER_NUMOF (macro definition) of file cfg_timer_tim5.h is not documented. +warning: Member TIMER_NUMOF (macro definition) of file default_timer_config.h is not documented. +warning: Member TIMER_NUMOF (macro definition) of file periph_conf_common.h is not documented. +warning: Member TIMER_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member tlsf_malloc_gheap (variable) of file tlsf-malloc-internal.h is not documented. +warning: Member TMP006_PARAM_ADDR (macro definition) of group boards_hamilton is not documented. +warning: Member TMP006_PARAM_I2C (macro definition) of group boards_hamilton is not documented. +warning: Member TMP006_PARAM_RATE (macro definition) of group boards_hamilton is not documented. +warning: Member TPS6274X_PARAMS (macro definition) of file tps6274x_params.h is not documented. +warning: Member TSL2561_ADDR_FLOAT (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_ADDR_HIGH (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_ADDR_LOW (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_B1T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_B2T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_B3T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_B4T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_B5T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_B6T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_B7T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_B8T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_BADDEV (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_CHSCALE (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_CHSCALE_TINT0 (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_CHSCALE_TINT1 (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_COMMAND_BLOCK (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_COMMAND_CLEAR (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_COMMAND_MODE (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_COMMAND_WORD (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_CONTROL_POWEROFF (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_CONTROL_POWERON (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_GAIN_16X (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_GAIN_1X (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_ID (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_INTEGRATIONTIME_101MS (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_INTEGRATIONTIME_13MS (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_INTEGRATIONTIME_402MS (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_INTEGRATIONTIME_NA (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_K1T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_K2T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_K3T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_K4T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_K5T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_K6T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_K7T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_K8T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_LUXSCALE (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_M1T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_M2T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_M3T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_M4T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_M5T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_M6T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_M7T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_M8T (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_NOI2C (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_OK (macro definition) of group drivers_tsl2561 is not documented. +warning: Member TSL2561_PARAM_ADDR (macro definition) of file tsl2561_params.h is not documented. +warning: Member TSL2561_PARAM_GAIN (macro definition) of file tsl2561_params.h is not documented. +warning: Member TSL2561_PARAM_I2C_DEV (macro definition) of file tsl2561_params.h is not documented. +warning: Member TSL2561_PARAM_INTEGRATION (macro definition) of file tsl2561_params.h is not documented. +warning: Member TSL2561_PARAMS (macro definition) of file tsl2561_params.h is not documented. +warning: Member TSL2561_RATIOSCALE (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_REGISTER_CHAN0 (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_REGISTER_CHAN1 (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_REGISTER_CONTROL (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_REGISTER_ID (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_REGISTER_INTERRUPT (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_REGISTER_THRESHOLDHIGH (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_REGISTER_THRESHOLDLOW (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_REGISTER_TIMING (macro definition) of file tsl2561_internals.h is not documented. +warning: Member TSL2561_SAUL_INFO (macro definition) of file tsl2561_params.h is not documented. +warning: Member TSL45311_PARTNO (macro definition) of group drivers_tsl4531x is not documented. +warning: Member TSL45313_ADDR (macro definition) of group drivers_tsl4531x is not documented. +warning: Member TSL45313_PARTNO (macro definition) of group drivers_tsl4531x is not documented. +warning: Member TSL45315_ADDR (macro definition) of group drivers_tsl4531x is not documented. +warning: Member TSL45315_PARTNO (macro definition) of group drivers_tsl4531x is not documented. +warning: Member TSL45317_ADDR (macro definition) of group drivers_tsl4531x is not documented. +warning: Member TSL45317_PARTNO (macro definition) of group drivers_tsl4531x is not documented. +warning: Member TSL4531X_COMMAND(addr) (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_CONFIG(psaveskip, tcntrl) (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_CONTROL(mode) (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_GET_INTEGRATION_TIME_USEC(int_time_setting, psaveskip) (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_GET_PARTNO(id_reg) (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_LOW_POWER_MODE (macro definition) of file tsl4531x_params.h is not documented. +warning: Member TSL4531X_MODE_NORMAL (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_MODE_POWER_DOWN (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_MODE_RESERVED (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_PARAM_I2C_ADDR (macro definition) of file tsl4531x_params.h is not documented. +warning: Member TSL4531X_PARAM_I2C_DEV (macro definition) of file tsl4531x_params.h is not documented. +warning: Member TSL4531X_PARAM_INTEGRATION (macro definition) of file tsl4531x_params.h is not documented. +warning: Member TSL4531X_PARAM_PARTNO (macro definition) of file tsl4531x_params.h is not documented. +warning: Member TSL4531X_PARAMS (macro definition) of file tsl4531x_params.h is not documented. +warning: Member TSL4531X_POWER_MODE(mode) (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_PSAVESKIP_OFF (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_PSAVESKIP_ON (macro definition) of file tsl4531x_internals.h is not documented. +warning: Member TSL4531X_SAUL_INFO (macro definition) of file tsl4531x_params.h is not documented. +warning: Member TX_DS (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member TX_FULL (macro definition) of file nrf24l01p_settings.h is not documented. +warning: Member TX_OUTPUT_SEL_PIN (macro definition) of group boards_bastwan is not documented. +warning: Member TX_OUTPUT_SEL_PIN (macro definition) of group boards_samr34-xpro is not documented. +warning: Member TX_PCRCEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member TX_PHUGEEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member TX_POVERRIDE (macro definition) of file enc28j60_regs.h is not documented. +warning: Member TX_PPADEN (macro definition) of file enc28j60_regs.h is not documented. +warning: Member TX_SWITCH_PWR_PIN (macro definition) of group boards_bastwan is not documented. +warning: Member U16_F (macro definition) of group pkg_lwip_sys is not documented. +warning: Member u16 (typedef) of file aes.h is not documented. +warning: Member U32_F (macro definition) of group pkg_lwip_sys is not documented. +warning: Member u32 (typedef) of file aes.h is not documented. +warning: Member u8 (typedef) of file aes.h is not documented. +warning: Member UART_0_CLK (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_DEV (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_DMA_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_DRE_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_IRQ_CHAN (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_IRQN (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_ISR (macro definition) of file cfg_uart_default.h is not documented. +warning: Member UART_0_ISR (macro definition) of file periph_conf_common.h is not documented. +warning: Member UART_0_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_ISR_RX (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_ISR_TX (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_PORT (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_RXC_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_RX_PIN (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_TXC_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_0_TX_PIN (macro definition) of file periph_conf.h is not documented. +warning: Member UART_1_DMA_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_1_DRE_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_1_ISR (macro definition) of file cfg_uart_default.h is not documented. +warning: Member UART_1_ISR (macro definition) of file periph_conf_common.h is not documented. +warning: Member UART_1_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_1_ISR_RX (macro definition) of file periph_conf.h is not documented. +warning: Member UART_1_ISR_TX (macro definition) of file periph_conf.h is not documented. +warning: Member UART_1_RXC_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_1_TXC_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_2_DMA_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_2_DRE_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_2_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_2_ISR_TX (macro definition) of file periph_conf.h is not documented. +warning: Member UART_2_RXC_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_2_TXC_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_3_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_3_ISR_TX (macro definition) of file periph_conf.h is not documented. +warning: Member UART_4_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_6_DMA_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_6_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_BASE (macro definition) of file periph_conf.h is not documented. +warning: Member UARTCLKGDS_CLK_EN_UART0 (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member UARTCLKGDS_CLK_EN_UART0 (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member UARTCLKGDS_CLK_EN_UART1 (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member UARTCLKGR_CLK_EN_UART0 (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member UARTCLKGR_CLK_EN_UART0 (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member UARTCLKGR_CLK_EN_UART1 (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member UARTCLKGS_CLK_EN_UART0 (macro definition) of file cc26x0_cc13x0_prcm.h is not documented. +warning: Member UARTCLKGS_CLK_EN_UART0 (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member UARTCLKGS_CLK_EN_UART1 (macro definition) of file cc26x2_cc13x2_prcm.h is not documented. +warning: Member UART_CLK (macro definition) of file periph_conf.h is not documented. +warning: Member UART_CLOCK_PM_BLOCKER (macro definition) of file periph_conf.h is not documented. +warning: Member uart_config[] (variable) of file cfg_uart_default.h is not documented. +warning: Member uart_config[] (variable) of file periph_conf_common.h is not documented. +warning: Member uart_config[] (variable) of file periph_conf.h is not documented. +warning: Member UART_CTL_CTSEN (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_CTL_LBE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_CTL_RTSEN (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_CTL_RTS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_CTL_RXE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_CTL_TXE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_CTL_UARTEN (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_DR_BE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_DR_FE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_DR_OE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_DR_PE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_ECR_BE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_ECR_FE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_ECR_OE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_ECR_PE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_FR_BUSY (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_FR_CTS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_FR_RXFE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_FR_RXFF (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_FR_TXFE (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_FR_TXFF (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IE (macro definition) of file periph_conf.h is not documented. +warning: Member UART_IE_RX_BIT (macro definition) of file periph_conf.h is not documented. +warning: Member UART_IE_TX_BIT (macro definition) of file periph_conf.h is not documented. +warning: Member UART_IFLS_RXSEL_1_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IFLS_RXSEL_2_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IFLS_RXSEL_4_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IFLS_RXSEL_6_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IFLS_RXSEL_7_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IFLS_TXSEL_1_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IFLS_TXSEL_2_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IFLS_TXSEL_4_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IFLS_TXSEL_6_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IFLS_TXSEL_7_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IF (macro definition) of file periph_conf.h is not documented. +warning: Member UART_IMSC_BEIM (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IMSC_CTSMIM (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IMSC_FEIM (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IMSC_OEIM (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IMSC_PEIM (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IMSC_RTIM (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IMSC_RXIM (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IMSC_TXIM (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_IRQ_PRIO (macro definition) of file periph_conf.h is not documented. +warning: Member UART_LCRH_EPS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_LCRH_FEN (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_LCRH_PEN (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_LCRH_SPS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_LCRH_STP2 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_LCRH_WLEN_5 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_LCRH_WLEN_6 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_LCRH_WLEN_7 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_LCRH_WLEN_8 (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_LCRH_WLEN_mask (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_MAX_UNCLOCKED_BAUDRATE (macro definition) of file periph_conf.h is not documented. +warning: Member UART_ME_BITS (macro definition) of file periph_conf.h is not documented. +warning: Member UART_ME (macro definition) of file periph_conf.h is not documented. +warning: Member UART_MIS_BEMIS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_MIS_CTSMMIS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_MIS_FEMIS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_MIS_OEMIS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_MIS_PEMIS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_MIS_RTMIS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_MIS_RXMIS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_MIS_TXMIS (macro definition) of group cpu_cc26xx_cc13xx_definitions is not documented. +warning: Member UART_NUMOF (macro definition) of file cfg_uart_default.h is not documented. +warning: Member UART_NUMOF (macro definition) of file periph_conf_common.h is not documented. +warning: Member UART_NUMOF (macro definition) of file periph_conf.h is not documented. +warning: Member UART_PIN_CTS (macro definition) of file periph_conf.h is not documented. +warning: Member UART_PIN_RTS (macro definition) of file periph_conf.h is not documented. +warning: Member UART_PIN_RX (macro definition) of file periph_conf.h is not documented. +warning: Member UART_PIN_TX (macro definition) of file periph_conf.h is not documented. +warning: Member UART_PORT (macro definition) of file periph_conf.h is not documented. +warning: Member UART_RX_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_RX_PIN (macro definition) of file periph_conf.h is not documented. +warning: Member UART_RX_PORT (macro definition) of file periph_conf.h is not documented. +warning: Member UART_TX_ISR (macro definition) of file periph_conf.h is not documented. +warning: Member UART_TX_PIN (macro definition) of file periph_conf.h is not documented. +warning: Member UART_TX_PORT (macro definition) of file periph_conf.h is not documented. +warning: Member UART_USE_USCI (macro definition) of file periph_conf.h is not documented. +warning: Member UB_M_RST_PIN (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member UB_PWRON_PIN (macro definition) of group boards_ublox-c030-u201 is not documented. +warning: Member ULTRA_LOW_POWER_INTERNAL_OSC_SOURCE (macro definition) of file periph_conf.h is not documented. +warning: Member UNLOCK_TCPIP_CORE() (macro definition) of file sys_arch.h is not documented. +warning: Member UNLOCK_TCPIP_CORE() (macro definition) of group pkg_lwip_sys is not documented. +warning: Member UPDATE_CCA (macro definition) of file board.h is not documented. +warning: Member UPDATE_CCA (macro definition) of group boards_common_remote is not documented. +warning: Member USART_0_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_0 (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_1_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_1 (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_CTL_CHAR (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_CTL_LISTEN (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_CTL_MM (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_CTL_PENA (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_CTL_PEV (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_CTL_SPB (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_CTL_SYNC (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_RCTL_BRK (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_RCTL_FE (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_RCTL_OE (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_RCTL_PE (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_RCTL_RXWAKE (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_RCTL_URXEIE (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_RCTL_URXWIE (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_TCTL_CKPH (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_TCTL_CKPL (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_TCTL_SSEL_ACLK (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_TCTL_SSEL_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_TCTL_SSEL_SMCLK (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_TCTL_SSEL_UCLKI (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_TCTL_STC (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_TCTL_TXWAKE (macro definition) of file msp430_regs.h is not documented. +warning: Member USART_TCTL_URXSE (macro definition) of file msp430_regs.h is not documented. +warning: Member USB_APP_MODE_SLOT_NAME (macro definition) of file usb_dfu.h is not documented. +warning: Member usbdev_mock_ep_state_t (enumeration) of group drivers_usbdev_mock is not documented. +warning: Member USB_DFU_DETACH_TIMEOUT_MS (macro definition) of group usb_dfu is not documented. +warning: Member USB_DFU_INTERFACE (macro definition) of group usb_dfu is not documented. +warning: Member USB_DFU_MODE_SLOT0_NAME (macro definition) of file usb_dfu.h is not documented. +warning: Member USB_DFU_MODE_SLOT1_NAME (macro definition) of file usb_dfu.h is not documented. +warning: Member USB_HID_DESCR_HID (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_DESCR_PHYSICAL (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_DESCR_REPORT (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_PROTOCOL_KEYBOARD (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_PROTOCOL_MOUSE (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_PROTOCOL_NONE (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_REQUEST_GET_IDLE (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_REQUEST_GET_PROTOCOL (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_REQUEST_GET_REPORT (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_REQUEST_SET_IDLE (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_REQUEST_SET_PROTOCOL (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_REQUEST_SET_REPORT (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_SUBCLASS_BOOT (macro definition) of group usb_hid is not documented. +warning: Member USB_HID_SUBCLASS_NONE (macro definition) of group usb_hid is not documented. +warning: Member USB_XBEE_RX (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member USB_XBEE_TX (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member USCI_0_A_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_0_A_SPI (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_0_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_0_B_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_0_B_SPI (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_0 (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_1_A_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_1_A (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_1_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_1_B_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_1_B (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_1 (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL0_7BIT (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL0_MODE_ABMM (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL0_MODE_ILMM (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL0_MODE_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL0_MODE_UART_ABR (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL0_MODE_UART (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL0_MSB (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL0_PAR (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL0_PEN (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL0_SPB (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL1_BRKIE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL1_DORM (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL1_RXEIE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL1_SSEL_ACLK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL1_SSEL_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL1_SSEL_SMCLK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL1_SSEL_UCLK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL1_TXADDR (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ACTL1_TXBRK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_AMCTL_BRF_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_AMCTL_BRF_SHIFT (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_AMCTL_BRS_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_AMCTL_BRS_SHIFT (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ASTAT_ADDR (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ASTAT_BRK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ASTAT_FE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ASTAT_IDLE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ASTAT_LISTEN (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ASTAT_OE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ASTAT_PE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_ASTAT_RXERR (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL0_7BIT (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL0_CKPH (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL0_CKPL (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL0_MODE_0 (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL0_MODE_1 (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL0_MODE_2 (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL0_MODE_3 (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL0_MSB (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL0_MST (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL1_SSEL_ACLK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL1_SSEL_MASK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL1_SSEL_NA (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_CTL1_SSEL_SMCLK (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_STAT_UCFE (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_STAT_UCLISTEN (macro definition) of file msp430_regs.h is not documented. +warning: Member USCI_SPI_STAT_UCOE (macro definition) of file msp430_regs.h is not documented. +warning: Member UUID_VERSION_MASK (macro definition) of group sys_uuid is not documented. +warning: Member VCC33 (macro definition) of file board.h is not documented. +warning: Member VCNL40X0_AMBIENT_MASK_PARA_AUTO_OFFSET (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_AMBIENT_MASK_PARA_AVERAGE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_AMBIENT_MASK_PARA_CONT_CONV (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_AMBIENT_MASK_PARA_MEAS_RATE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_AMBIENT_PARA_AUTO_OFFSET_ENABLE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_AMBIENT_PARA_CONT_CONV_ENABLE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_COMMAND_ALL_DISABLE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_COMMAND_AMBI_ENABLE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_COMMAND_AMBI_ON_DEMAND (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_COMMAND_MASK_AMBI_DATA_READY (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_COMMAND_MASK_LOCK (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_COMMAND_MASK_PROX_DATA_READY (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_COMMAND_PROX_ENABLE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_COMMAND_PROX_ON_DEMAND (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_COMMAND_SELFTIMED_MODE_ENABLE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_ALS_READY_ENABLE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_128 (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_16 (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_1 (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_2 (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_32 (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_4 (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_64 (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_COUNT_EXCEED_8 (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_MASK_ALS_READY (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_MASK_COUNT_EXCEED (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_MASK_PROX_READY (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_MASK_STATUS_THRES_HI (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_MASK_THRES_LO (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_PROX_READY_ENABLE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_STATUS_ALS_READY (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_STATUS_PROX_READY (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_STATUS_THRES_HI (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_STATUS_THRES_LO (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_THRES_ENABLE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_THRES_SEL_ALS (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_INTERRUPT_THRES_SEL_PROX (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_PARAM_AMBIENT_AVG (macro definition) of file vcnl40x0_params.h is not documented. +warning: Member VCNL40X0_PARAM_AMBIENT_RATE (macro definition) of file vcnl40x0_params.h is not documented. +warning: Member VCNL40X0_PARAM_I2C_ADDR (macro definition) of file vcnl40x0_params.h is not documented. +warning: Member VCNL40X0_PARAM_I2C_DEV (macro definition) of file vcnl40x0_params.h is not documented. +warning: Member VCNL40X0_PARAM_LED_CURRENT (macro definition) of file vcnl40x0_params.h is not documented. +warning: Member VCNL40X0_PARAM_PROXIMITY_RATE (macro definition) of file vcnl40x0_params.h is not documented. +warning: Member VCNL40X0_PARAMS (macro definition) of file vcnl40x0_params.h is not documented. +warning: Member VCNL40X0_PRODUCT_MASK_PRODUCT_ID (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_PRODUCT_MASK_REVISION_ID (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_PROXIMITY_MASK_FUSE_PROG_ID (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_PROXIMITY_MASK_LED_CURRENT (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_PROXIMITY_MASK_MEASUREMENT_RATE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_AMBIENT_IR_LIGHT_LEVEL (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_AMBIENT_PARAMETER (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_AMBIENT_VALUE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_COMMAND (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_HIGH_THRES (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_INTERRUPT_CONTROL (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_INTERRUPT_LOW_THRES (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_INTERRUPT_STATUS (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_PRODUCT_ID (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_PROXIMITY_CURRENT (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_PROXIMITY_RATE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_PROXIMITY_VALUE (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCNL40X0_REG_PROX_TIMING (macro definition) of file vcnl40x0_internals.h is not documented. +warning: Member VCOM_EN_PIN (macro definition) of file board.h is not documented. +warning: Member VCOM_UART (macro definition) of file board.h is not documented. +warning: Member VEML6070_PARAM_I2C_DEV (macro definition) of file veml6070_params.h is not documented. +warning: Member VEML6070_PARAM_ITIME (macro definition) of file veml6070_params.h is not documented. +warning: Member VEML6070_PARAMS (macro definition) of file veml6070_params.h is not documented. +warning: Member VEML6070_SAUL_INFO (macro definition) of file veml6070_params.h is not documented. +warning: Member VERSION_SX1272 (macro definition) of file sx127x_registers.h is not documented. +warning: Member VERSION_SX1276 (macro definition) of file sx127x_registers.h is not documented. +warning: Member VERSION_SX1276_WLR089 (macro definition) of file sx127x_registers.h is not documented. +warning: Member VIBRATOR (macro definition) of file board.h is not documented. +warning: Member VIMS_CTL_ARB_CFG (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_ARB_CFG_m (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_DYN_CG_EN (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_DYN_CG_EN_m (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_IDCODE_LB_DIS (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_IDCODE_LB_DIS_m (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_MODE_CACHE (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_MODE_GPRAM (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_MODE_m (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_MODE_OFF (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_MODE_SPLIT (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_PREF_EN (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_PREF_EN_m (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_STATS_CLR_m (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_STATS_EN (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_STATS_EN_m (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_SYSBUS_LB_DIS (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_CTL_SYSBUS_LB_DIS_m (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member VIMS_STAT_MODE_CHANGING (macro definition) of file cc26xx_cc13xx_vims.h is not documented. +warning: Member V_PERIPH_MASK (macro definition) of file board.h is not documented. +warning: Member V_PERIPH_OFF (macro definition) of file board.h is not documented. +warning: Member V_PERIPH_ON (macro definition) of file board.h is not documented. +warning: Member V_PERIPH_PIN (macro definition) of file board.h is not documented. +warning: Member W5100_PARAM_CS (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member W5100_PARAM_CS (macro definition) of group boards_common_arduino_due is not documented. +warning: Member W5100_PARAM_EVT (macro definition) of group boards_common_arduino-atmega is not documented. +warning: Member W5100_PARAM_EVT (macro definition) of group boards_common_arduino_due is not documented. +warning: Member W5100_PARAMS (macro definition) of file w5100_params.h is not documented. +warning: Member Watchdog_IRQn (macro definition) of file cpu_conf.h is not documented. +warning: Member WD_BASE (macro definition) of file msp430_regs.h is not documented. +warning: Member WD (macro definition) of file msp430_regs.h is not documented. +warning: Member WDT_CLOCK_HZ (macro definition) of file periph_cpu.h is not documented. +warning: Member WDT_HAS_INIT (macro definition) of file periph_cpu.h is not documented. +warning: Member WDT_HAS_STOP (macro definition) of file periph_cpu.h is not documented. +warning: Member WEACT_4X1CX_NOR_FLAGS (macro definition) of file board.h is not documented. +warning: Member WEACT_4X1CX_NOR_PAGE_SIZE (macro definition) of file board.h is not documented. +warning: Member WEACT_4X1CX_NOR_PAGES_PER_SECTOR (macro definition) of file board.h is not documented. +warning: Member WEACT_4X1CX_NOR_SPI_CLK (macro definition) of file board.h is not documented. +warning: Member WEACT_4X1CX_NOR_SPI_CS (macro definition) of file board.h is not documented. +warning: Member WEACT_4X1CX_NOR_SPI_DEV (macro definition) of file board.h is not documented. +warning: Member WEACT_4X1CX_NOR_SPI_MODE (macro definition) of file board.h is not documented. +warning: Member WHO_AM_I_VAL (macro definition) of file lis2dh12_internal.h is not documented. +warning: Member Wire (variable) of file wireport.hpp is not documented. +warning: Member WS281X_T_DATA_ZERO_NS (macro definition) of file ws281x_constants.h is not documented. +warning: Member WWDT_TIME_LOWER_LIMIT (macro definition) of file periph_cpu.h is not documented. +warning: Member WWDT_TIME_UPPER_LIMIT (macro definition) of file periph_cpu.h is not documented. +warning: Member X16_F (macro definition) of group pkg_lwip_sys is not documented. +warning: Member X32_F (macro definition) of group pkg_lwip_sys is not documented. +warning: Member X8_F (macro definition) of group pkg_lwip_sys is not documented. +warning: Member XBEE1_CS_PIN (macro definition) of file board.h is not documented. +warning: Member XBEE1_DISABLE (macro definition) of file board.h is not documented. +warning: Member XBEE1_ENABLE (macro definition) of file board.h is not documented. +warning: Member XBEE1_EN_MASK (macro definition) of file board.h is not documented. +warning: Member XBEE1_EN_MODE (macro definition) of file board.h is not documented. +warning: Member XBEE1_EN_PIN (macro definition) of file board.h is not documented. +warning: Member XBEE1_EN_PORT (macro definition) of file board.h is not documented. +warning: Member XBEE1_INT_PIN (macro definition) of file board.h is not documented. +warning: Member XBEE2_CS_PIN (macro definition) of file board.h is not documented. +warning: Member XBEE2_DISABLE (macro definition) of file board.h is not documented. +warning: Member XBEE2_ENABLE (macro definition) of file board.h is not documented. +warning: Member XBEE2_EN_MASK (macro definition) of file board.h is not documented. +warning: Member XBEE2_EN_MODE (macro definition) of file board.h is not documented. +warning: Member XBEE2_EN_PIN (macro definition) of file board.h is not documented. +warning: Member XBEE2_EN_PORT (macro definition) of file board.h is not documented. +warning: Member XBEE2_INT_PIN (macro definition) of file board.h is not documented. +warning: Member XBEE_MON (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member XBEE_PARAM_BR (macro definition) of file xbee_params.h is not documented. +warning: Member XBEE_PARAM_PIN_RESET (macro definition) of file xbee_params.h is not documented. +warning: Member XBEE_PARAM_PIN_SLEEP (macro definition) of file xbee_params.h is not documented. +warning: Member XBEE_PARAMS (macro definition) of file xbee_params.h is not documented. +warning: Member XBEE_PARAM_UART (macro definition) of file xbee_params.h is not documented. +warning: Member XBEE_PW (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member XBEE_SLEEP (macro definition) of file waspmote_pinmap.h is not documented. +warning: Member xl320_baudrate_t (enumeration) of file dynamixel_protocol.h is not documented. +warning: Member xl320_register16_t (enumeration) of file dynamixel_protocol.h is not documented. +warning: Member xl320_register8_t (enumeration) of file dynamixel_protocol.h is not documented. +warning: Member XOSC1_FREQUENCY (macro definition) of file periph_conf.h is not documented. +warning: Member XTAL_HZ (macro definition) of file periph_conf.h is not documented. +warning: Member _xtimer_current_time (variable) of file implementation.h is not documented. +warning: Member _xtimer_periodic_wakeup(uint32_t *last_wakeup, uint32_t period) (function) of file implementation.h is not documented. +warning: Member _xtimer_set64(xtimer_t *timer, uint32_t offset, uint32_t long_offset) (function) of file implementation.h is not documented. +warning: Member _xtimer_set_wakeup64(xtimer_t *timer, uint64_t offset, kernel_pid_t pid) (function) of file implementation.h is not documented. +warning: Member _xtimer_set_wakeup(xtimer_t *timer, uint32_t offset, kernel_pid_t pid) (function) of file implementation.h is not documented. +warning: Member _XTSTR(x) (macro definition) of file xtstr.h is not documented. +warning: No output formats selected! Set at least one of the main GENERATE_* options to YES. +warning: unable to resolve reference to 'cc1312_launchpad_flashing' for \ref command +warning: unable to resolve reference to 'cc1312_launchpad_hardware' for \ref command +warning: unable to resolve reference to 'cc1312_launchpad_overview' for \ref command +warning: unable to resolve reference to 'cc1312_launchpad_pinout' for \ref command +warning: unable to resolve reference to 'cc1350_launchpad_flashing' for \ref command +warning: unable to resolve reference to 'cc1350_launchpad_hardware' for \ref command +warning: unable to resolve reference to 'cc1350_launchpad_overview' for \ref command +warning: unable to resolve reference to 'cc1350_launchpad_pinout' for \ref command +warning: unable to resolve reference to 'cc1352_launchpad_flashing' for \ref command +warning: unable to resolve reference to 'cc1352_launchpad_hardware' for \ref command +warning: unable to resolve reference to 'cc1352_launchpad_moreinfo' for \ref command +warning: unable to resolve reference to 'cc1352_launchpad_overview' for \ref command +warning: unable to resolve reference to 'cc1352_launchpad_shell' for \ref command +warning: unable to resolve reference to 'cc1352_launcpad_pinout' for \ref command +warning: unable to resolve reference to 'cc1352p_launchpad_flashing' for \ref command +warning: unable to resolve reference to 'cc1352p_launchpad_hardware' for \ref command +warning: unable to resolve reference to 'cc1352p_launchpad_overview' for \ref command +warning: unable to resolve reference to 'cc1352p_launcpad_pinout' for \ref command +warning: unable to resolve reference to 'cc2650_launchpad_flashing' for \ref command +warning: unable to resolve reference to 'cc2650_launchpad_hardware' for \ref command +warning: unable to resolve reference to 'cc2650_launchpad_overview' for \ref command +warning: unable to resolve reference to 'cc2650_launchpad_pinout' for \ref command +warning: unable to resolve reference to 'cc26xx_cc13xx_ccfg' for \ref command +warning: unable to resolve reference to 'cc26xx_cc13xx_debugging' for \ref command +warning: unable to resolve reference to 'cc26xx_cc13xx_openocd' for \ref command +warning: unable to resolve reference to 'cc26xx_cc13xx_overview' for \ref command +warning: unable to resolve reference to 'cc26xx_cc13xx_uniflash' for \ref command +warning: unable to resolve reference to 'clock_config_t::clkdiv1' for \ref command +warning: unable to resolve reference to 'clock_config_t::clkdiv1' for \ref command +warning: unable to resolve reference to 'clock_config_t::clkdiv1' for \ref command +warning: unable to resolve reference to 'clock_config_t' for \ref command +warning: unable to resolve reference to 'clock_config_t' for \ref command +warning: unable to resolve reference to 'esp32c3_devkit_optional_hardware' for \ref command +warning: unable to resolve reference to 'esp32_esp_qemu' for \ref command +warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_board_configuration' for \ref command +warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_hardware' for \ref command +warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_other-resources' for \ref command +warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_overview' for \ref command +warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_pinout' for \ref command +warning: unable to resolve reference to 'esp32_ethernet_kit_v1_1_toc' for \ref command +warning: unable to resolve reference to 'esp32s2_devkit_optional_hardware' for \ref command +warning: unable to resolve reference to 'esp32s3_devkit_optional_hardware' for \ref command +warning: unable to resolve reference to 'esp32_ttgo_t_beam_optional_hardware' for \ref command +warning: unable to resolve reference to 'nrf52840dongle_flash' for \ref command diff --git a/dist/tools/doccheck/generic_exclude_patterns b/dist/tools/doccheck/generic_exclude_patterns index caf99dbac0..8057e82f1a 100644 --- a/dist/tools/doccheck/generic_exclude_patterns +++ b/dist/tools/doccheck/generic_exclude_patterns @@ -13,6 +13,8 @@ warning: Member BTN[0-9]_PIN \(macro definition\) of warning: Member BTN[0-9]_PORT \(macro definition\) of warning: Member BTN[0-9]_PRESSED \(macro definition\) of warning: Member BTN[0-9]_RELEASED \(macro definition\) of +warning: Member dac_config\[\] \(variable\) of +warning: Member DAC_NUMOF \(macro definition\) of warning: Member EPD_BW_SPI_CMD_[A-Z0-9_]* \(macro definition\) of warning: Member EPD_BW_SPI_DISPLAY_UPDATE_OPTION_[A-Z0-9_]* \(macro definition\) of warning: Member EPD_BW_SPI_WAIT_[A-Z0-9_]* \(macro definition\) of