lwIP栈的PPPoS配置



我正在使用ATSAMV71微控制器处理lwIP堆栈。我想使用TCP/IP连接在PPPoS模式下配置lwIP堆栈。你能帮我知道吗,

  1. 需要什么#定义将lwIP堆栈置于PPPoS模式所需的配置?
/*
---------------------------------
---------- PPP options ----------
---------------------------------
*/
#define PPP_SUPPORT                              1
#define PAP_SUPPORT                              1
#define LWIP_DNS                                 1
/*
---------------------------------
--------- GPRS options ----------
---------------------------------
*/
#define GPRS_DEBUG                               LWIP_DBG_OFF
#define GPRS_SUPPORT                             1
#define GPRS_TYPE                                1
#define GPRS_OWNTHREAD                           1
#define GPRS_THREAD_NAME                         "pppos"
#define GPRS_RUNTIME_APN                         1
#define GPRS_RUNTIME_PIN                         1
#define GPRS_COMMAND_DELAY                       500
#define GPRS_ICCID                               1
#define GPRS_THREAD_STACKSIZE                    512
#define GPRS_THREAD_PRIO                         2
#define GPRS_PPPIF_NAME_0                        'P'
#define GPRS_PPPIF_NAME_1                        '0'

相关内容

  • 没有找到相关文章

最新更新