I have already configured zcu-102 and linux system using uart16550 scuccefully. Now i wanted to connect them through PPPoS (Point to point Protocol over serial connection) from lwip202 library. But when i try to build my code, i get
undefined reference to 'pppos_create'
undefined reference to 'ppp_connect'
Things i have already tried:
Enabled
PPP_SUPPORTby changing its value from '0' to '1' in netif/ppp/ppp_opts.h
Also have included the
"ppp.h", "pppos.h", "lwipopts.h"in my main.c file.
Also defined
PPP_SUPPORTas 1 in"lwipopts.h"as it was not there by default.
PS: cntrl + left click on the pppos_create function does take me to the source file i.e., pppos.h which means that the pppos.h file is indeed linked to the project.
Please help.. Thanks.

