feat(esp_modem): Add CMUX mode to C-API

Closes https://github.com/espressif/esp-protocols/issues/41
This commit is contained in:
David Cermak
2022-05-26 17:40:02 +02:00
parent a16aab6979
commit 3fd4391c38
2 changed files with 8 additions and 0 deletions

View File

@ -39,6 +39,7 @@ typedef enum esp_modem_dce_mode
{
ESP_MODEM_MODE_COMMAND, /**< Default mode after modem startup, used for sending AT commands */
ESP_MODEM_MODE_DATA, /**< Used for switching to PPP mode for the modem to connect to a network */
ESP_MODEM_MODE_CMUX, /**< Multiplexed terminal mode */
} esp_modem_dce_mode_t;
/**