Docs: fix doxygen warnings

This commit is contained in:
Marius Vikhammer 2020-12-16 14:37:14 +08:00
parent d4a6c911e4
commit dc0e80a4c8
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;