Merge branch 'bugfix/doxygen_warnings' into 'master'

Docs: fix doxygen warnings

See merge request espressif/esp-idf!11643
This commit is contained in:
Krzysztof Budzynski 2020-12-18 13:44:07 +08:00
commit 3474daecb1
2 changed files with 4 additions and 4 deletions

View File

@ -134,7 +134,7 @@ typedef struct {
#endif
uint8_t channel: 4; /*!< ADC channel index. */
};
uint8_t val;
uint8_t val; /*!<Raw data value */
};
} adc_digi_pattern_table_t;

View File

@ -74,9 +74,9 @@ typedef enum {
typedef struct {
cdcacm_event_type_t type; /*!< Event type */
union {
cdcacm_event_rx_wanted_char_data_t rx_wanted_char_data;
cdcacm_event_line_state_changed_data_t line_state_changed_data;
cdcacm_event_line_coding_changed_data_t line_coding_changed_data;
cdcacm_event_rx_wanted_char_data_t rx_wanted_char_data; /*!< Data input of the `callback_rx_wanted_char` callback */
cdcacm_event_line_state_changed_data_t line_state_changed_data; /*!< Data input of the `callback_line_state_changed` callback */
cdcacm_event_line_coding_changed_data_t line_coding_changed_data; /*!< Data input of the `line_coding_changed` callback */
};
} cdcacm_event_t;