Yes, see my fork of the esp32-at repository here:
https://github.com/ep00ch/esp32-at-ppp/
which includes new commands like : AT+PPPD
If you include PPP_SERVER support in the configuration, it will compile and run as a server, otherwise a client.
Search found 2 matches
- Wed Nov 28, 2018 10:38 pm
- Forum: General Discussion
- Topic: PPP Over Serial Server
- Replies: 1
- Views: 6784
- Sun Mar 04, 2018 8:19 pm
- Forum: ESP-IDF
- Topic: User defined AT Command makes the module rest
- Replies: 1
- Views: 4207
Re: User defined AT Command makes the module rest
Yet appears that you may be freeing esp_at lib's internal parameter buffer when you do: free(str2); after: if (esp_at_get_para_as_str (cnt++,&str2) != ESP_AT_PARA_PARSE_RESULT_OK) { Just get rid of all the malloc and free'ing for your str2. You could probably make some minor changes to not use sprin...