1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #13563 from yegorich/pr/driver-documentation-fix

doxygen/I2C: don't include overridden typedefs
This commit is contained in:
benpicco 2020-03-05 17:18:43 +01:00 committed by GitHub
commit 2f2fcc848e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -166,6 +166,7 @@ typedef enum {
*/
#define DAC_NUMOF (1U)
#ifndef DOXYGEN
/**
* @brief Possible ADC resolution settings
* @{
@ -185,6 +186,7 @@ typedef enum {
ADC_RES_3BIT = 0b111, /**< ADC resolution: 3 bit */
} adc_res_t;
/** @} */
#endif /* ndef DOXYGEN */
/**
* @brief ADC device configuration
@ -195,6 +197,7 @@ typedef struct {
uint32_t pinsel_msk; /**< PINSEL Mask for ADC pin */
} adc_conf_t;
#ifndef DOXYGEN
/**
* @brief Override I2C clock speed values
* @{
@ -206,6 +209,7 @@ typedef enum {
I2C_SPEED_FAST = 400000, /**< fast mode: ~400 kbit/s */
} i2c_speed_t;
/* @} */
#endif /* ndef DOXYGEN */
/**
* @brief I2C device configuration