-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Closed
Labels
Type: Feature requestFeature request for Arduino ESP32Feature request for Arduino ESP32
Description
Related area
Serial Interface
Hardware specification
ESP32S3
Is your feature request related to a problem?
I am trying to connect my linux laptop (configured as PPP server using PPPD) with esp32. I am unable to find any suitable example code on ESP32 to configure it as PPPos client to connect with a null modem. All the examples on the internet are for making ESP32 PPP connection with modems.
However I have found one example code in micro python that works perfectly and connect with the Linux machine:
`import machine
import time
uart = machine.UART(2, baudrate=9600, tx=13, rx=14)
import network
ppp = network.PPP(uart)
ppp.active(True)
ppp.connect()
ppp.ifconfig()
ppp.isconnected()`
I need the same code in C language.
Describe the solution you'd like
A code that connects my esp32 to a null modem
Describe alternatives you've considered
No response
Additional context
No response
I have checked existing list of Feature requests and the Contribution Guide
- I confirm I have checked existing list of Feature requests and Contribution Guide.
Metadata
Metadata
Assignees
Labels
Type: Feature requestFeature request for Arduino ESP32Feature request for Arduino ESP32
Type
Projects
Status
Done