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

@ -15,10 +15,14 @@
#ifndef _ESP_MODEM_DCE_CONFIG_H_
#define _ESP_MODEM_DCE_CONFIG_H_
struct esp_modem_dce_config {
const char* apn;
};
/** @addtogroup ESP_MODEM_CONFIG
* @{
*/
/**
* @brief ESP Modem DCE Default Configuration
*
*/
#define ESP_MODEM_DCE_DEFAULT_CONFIG(APN) \
{ \
.apn = APN \
@ -26,4 +30,16 @@ struct esp_modem_dce_config {
typedef struct esp_modem_dce_config esp_modem_dce_config_t;
/**
* @brief DCE configuration structure
*/
struct esp_modem_dce_config {
const char* apn; /*!< APN: Logical name of the Access point */
};
/**
* @}
*/
#endif // _ESP_MODEM_DCE_CONFIG_H_