Skip to content

LWIP_PPP: Fix compilation #9484

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions libraries/PPP/src/ppp.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#if CONFIG_LWIP_PPP_SUPPORT
#include "esp_modem_api.h"

esp_err_t _esp_modem_at(esp_modem_dce_t *dce_wrap, const char *at, char *p_out, int timeout){
Expand All @@ -23,3 +24,4 @@ esp_err_t _esp_modem_set_operator(esp_modem_dce_t *dce_wrap, int mode, int forma
esp_err_t _esp_modem_set_network_bands(esp_modem_dce_t *dce_wrap, const char *mode, const int *bands, int size){
return esp_modem_set_network_bands(dce_wrap, mode, bands, size);
}
#endif // CONFIG_LWIP_PPP_SUPPORT