Documentaton generation completed

This commit is contained in:
David Cermak
2021-04-14 17:57:42 +02:00
parent d384cde725
commit 4bf8ab07ca
27 changed files with 509 additions and 88 deletions

View File

@ -17,6 +17,15 @@
#include "driver/uart.h"
#include "esp_modem_dce_config.h"
/**
* @defgroup ESP_MODEM_CONFIG
* @brief Configuration structures for DTE and DCE
*/
/** @addtogroup ESP_MODEM_CONFIG
* @{
*/
/**
* @brief Modem flow control type
*
@ -27,6 +36,10 @@ typedef enum {
ESP_MODEM_FLOW_CONTROL_HW
} esp_modem_flow_ctrl_t;
/**
* @brief DTE configuration structure
*
*/
struct esp_modem_dte_config {
uart_port_t port_num; /*!< UART port number */
uart_word_length_t data_bits; /*!< Data bits of UART */
@ -74,4 +87,8 @@ struct esp_modem_dte_config {
typedef struct esp_modem_dte_config esp_modem_dte_config_t;
/**
* @}
*/
#endif // _ESP_MODEM_CONFIG_H_