fix(esp_modem): linux port to work with lwip-2.1.2

This commit is contained in:
David Cermak
2021-11-17 13:27:52 +01:00
parent e7ae0301ae
commit 8465b14653
9 changed files with 77 additions and 53 deletions

View File

@ -30,13 +30,6 @@ struct PdpContext;
static const char *TAG = "modem_api";
#endif
std::shared_ptr<DTE> create_uart_dte(const dte_config *config)
{
TRY_CATCH_RET_NULL(
auto term = create_uart_terminal(config);
return std::make_shared<DTE>(config, std::move(term));
)
}
std::shared_ptr<DTE> create_vfs_dte(const dte_config *config)
{