From 1ee574944c506c5c07ad4c1857d1a23950156eb3 Mon Sep 17 00:00:00 2001 From: Sylvain Rochet Date: Mon, 18 Jan 2016 12:44:08 +0100 Subject: [PATCH] PPP, Documentation, fixed mistake about pppos_input_sys Woops, pppos_input_sys is an internal function which must not be called from lwIP user application. The correct function to use is pppos_input_tcpip. --- doc/ppp.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ppp.txt b/doc/ppp.txt index 7a9ba674..f1b9107d 100644 --- a/doc/ppp.txt +++ b/doc/ppp.txt @@ -318,7 +318,7 @@ ppp_free(ppp); ===================================================== Received data on serial port should be sent to lwIP using the pppos_input() -function or the pppos_input_sys() function. +function or the pppos_input_tcpip() function. If NO_SYS is 1 and if PPP_INPROC_IRQ_SAFE is 0 (the default), pppos_input() is not IRQ safe and then *MUST* only be called inside your main loop.