mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 19:24:33 +02:00
driver: Fix some doxygen warnings
This commit is contained in:
committed by
Angus Gratton
parent
e3664e297b
commit
c44a433b8b
@@ -858,7 +858,6 @@ esp_err_t uart_set_loop_back(uart_port_t uart_num, bool loop_back_en);
|
|||||||
* @param always_rx_timeout_en Set to false enable the default behavior of timeout interrupt,
|
* @param always_rx_timeout_en Set to false enable the default behavior of timeout interrupt,
|
||||||
* set it to true to always trigger timeout interrupt.
|
* set it to true to always trigger timeout interrupt.
|
||||||
*
|
*
|
||||||
* * @return None
|
|
||||||
*/
|
*/
|
||||||
void uart_set_always_rx_timeout(uart_port_t uart_num, bool always_rx_timeout_en);
|
void uart_set_always_rx_timeout(uart_port_t uart_num, bool always_rx_timeout_en);
|
||||||
|
|
||||||
|
@@ -179,7 +179,7 @@ typedef struct {
|
|||||||
If (channel > ADC_CHANNEL_MAX), The data is invalid. */
|
If (channel > ADC_CHANNEL_MAX), The data is invalid. */
|
||||||
uint16_t unit: 1; /*!<ADC unit index info. 0: ADC1; 1: ADC2. */
|
uint16_t unit: 1; /*!<ADC unit index info. 0: ADC1; 1: ADC2. */
|
||||||
} type2; /*!<When the configured output format is 11bit. `ADC_DIGI_FORMAT_11BIT` */
|
} type2; /*!<When the configured output format is 11bit. `ADC_DIGI_FORMAT_11BIT` */
|
||||||
uint16_t val;
|
uint16_t val; /*!<Raw data value */
|
||||||
};
|
};
|
||||||
} adc_digi_output_data_t;
|
} adc_digi_output_data_t;
|
||||||
|
|
||||||
@@ -194,10 +194,10 @@ typedef struct {
|
|||||||
1: input voltage * 1/1.34;
|
1: input voltage * 1/1.34;
|
||||||
2: input voltage * 1/2;
|
2: input voltage * 1/2;
|
||||||
3: input voltage * 1/3.6. */
|
3: input voltage * 1/3.6. */
|
||||||
uint8_t reserved: 2; /*!< reserved0 */
|
uint8_t reserved: 2; /*!< reserved0 */
|
||||||
uint8_t channel: 4; /*!< ADC channel index. */
|
uint8_t channel: 4; /*!< ADC channel index. */
|
||||||
};
|
};
|
||||||
uint8_t val;
|
uint8_t val; /*!< Raw entry value */
|
||||||
};
|
};
|
||||||
} adc_digi_pattern_table_t;
|
} adc_digi_pattern_table_t;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user