Skip to content

Feature/ppp modem support #9464

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

Closed
wants to merge 28 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
4c42fb0
Add esp_modem component
me-no-dev Apr 8, 2024
20a7102
Add initial PPP Modem support
me-no-dev Apr 8, 2024
70a7494
Add more access methods
me-no-dev Apr 8, 2024
bcfa7ae
Rename Method
me-no-dev Apr 8, 2024
d70ff49
Add PPP to configurations
me-no-dev Apr 8, 2024
e2970a8
Update CMakeLists.txt
me-no-dev Apr 8, 2024
4401ef8
fix(ble): rename esp_ble_gap_ext_adv_report_t
me-no-dev Apr 8, 2024
c9b0380
IDF d23b7a0361
me-no-dev Apr 9, 2024
82b3a43
Better event handling
me-no-dev Apr 9, 2024
e2f4d90
Change return value on some methods
me-no-dev Apr 9, 2024
b6bdcbb
Update libs and API
me-no-dev Apr 9, 2024
49872bf
Add example sketch
me-no-dev Apr 9, 2024
35a6293
Fix build error
me-no-dev Apr 9, 2024
abb0123
Merge branch 'master' into feature/ppp_modem_support
me-no-dev Apr 9, 2024
b35430a
Add sync and update reset and wait logic
me-no-dev Apr 10, 2024
615217d
Merge branch 'master' into feature/ppp_modem_support
me-no-dev Apr 10, 2024
d32f7ed
Add support for changing baud rate
me-no-dev Apr 10, 2024
d5cd990
Fix string input methods and add direct AT command API
me-no-dev Apr 10, 2024
2f84198
Merge branch 'master' into feature/ppp_modem_support
me-no-dev Apr 10, 2024
ee0366e
Improve example and add some comments to the header
me-no-dev Apr 11, 2024
3120cc2
Fix PPP.end()
me-no-dev Apr 11, 2024
8250c04
Merge branch 'master' into feature/ppp_modem_support
me-no-dev Apr 11, 2024
40b2b84
LWIP_PPP: Fix compilation (#9484)
Jason2866 Apr 12, 2024
a57bbdb
Merge branch 'master' into feature/ppp_modem_support
me-no-dev Apr 12, 2024
915b84b
Merge branch 'master' into feature/ppp_modem_support
me-no-dev Apr 15, 2024
52fec1e
Style Checker and Pre-commit hook CI (#9132)
lucasssvaz Apr 15, 2024
d8cab9c
add change to re-trigger the CI
me-no-dev Apr 15, 2024
2fc7462
trigger CI
me-no-dev Apr 15, 2024
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
Prev Previous commit
trigger CI
  • Loading branch information
me-no-dev committed Apr 15, 2024
commit 2fc7462744e5b8a0448707d837eba9500ce54bff
1 change: 1 addition & 0 deletions libraries/PPP/src/PPP.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#pragma once

#include "sdkconfig.h"
#if CONFIG_LWIP_PPP_SUPPORT
#include "Network.h"
Expand Down