Skip to content

Commit d70ff49

Browse files
committed
Add PPP to configurations
1 parent bcfa7ae commit d70ff49

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ set(ARDUINO_LIBRARY_LittleFS_SRCS libraries/LittleFS/src/LittleFS.cpp)
157157

158158
set(ARDUINO_LIBRARY_NetBIOS_SRCS libraries/NetBIOS/src/NetBIOS.cpp)
159159

160+
set(ARDUINO_LIBRARY_PPP_SRCS libraries/PPP/src/PPP.cpp)
161+
160162
set(ARDUINO_LIBRARY_Preferences_SRCS libraries/Preferences/src/Preferences.cpp)
161163

162164
set(ARDUINO_LIBRARY_RainMaker_SRCS

Kconfig.projbuild

+10
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,16 @@ config ARDUINO_SELECTIVE_Networking
321321
depends on ARDUINO_SELECTIVE_COMPILATION
322322
default y
323323

324+
config ARDUINO_SELECTIVE_Ethernet
325+
bool "Enable Ethernet"
326+
depends on ARDUINO_SELECTIVE_COMPILATION
327+
default y
328+
329+
config ARDUINO_SELECTIVE_PPP
330+
bool "Enable PPP"
331+
depends on ARDUINO_SELECTIVE_COMPILATION
332+
default y
333+
324334
config ARDUINO_SELECTIVE_ArduinoOTA
325335
bool "Enable ArduinoOTA"
326336
depends on ARDUINO_SELECTIVE_COMPILATION && ARDUINO_SELECTIVE_Networking

0 commit comments

Comments
 (0)