Search found 2 matches

by epooch
Wed Nov 28, 2018 10:38 pm
Forum: General Discussion
Topic: PPP Over Serial Server
Replies: 1
Views: 6614

Re: PPP Over Serial Server

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.
by epooch
Sun Mar 04, 2018 8:19 pm
Forum: ESP-IDF
Topic: User defined AT Command makes the module rest
Replies: 1
Views: 4134

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...