Hello,
I am trying PPP/GPRS example on FRDM-K64F (modified project from twrk60n512 - just pointed to another libraries and changed to hard float and enabled ITTYE) on MQX 4.2.0.1
I was getting this output:
ATDT*99***1#,"IP","internet"
Attempting to establish connection. Please wait.......................DNS server added successfuly.
Connection established
Local address: 216.172.3.241
Remote address: 244.21.73.114
PPP connection ok
GPRS modem connected successfuly
Trying to resolve hostname
Hostname resolution successful
Pinging on address:147.251.48.140
PING_ERROR: error = 0x1510
PING_ERROR: error = 0x1510
PING_ERROR: error = 0x1510
PING_ERROR: error = 0x1510
Trying to sync Time:
SNTP_ERROR: error = 0x1510
PPP connection closed
(I changed NTP name to IP 147.251.48.140 in config, so thats why it got resolved)
Then I accidentaly turned off GPRS modem when doing PPP connection and it still wrote connection established. So I tried to connect serial to my pc and just replied OK 5x and it still wrote "connection establieshed"
Does anybody know how this can happen? Where is it taking the IPs?
I found out that it even doesn't call IPCP_up from ipcpfsm.c
Is PPP so buggy or is something wrong with the example or am I doing something wrong?
I also added
ppp_params_ptr->up=modem_ppp_linkup;
ppp_params_ptr->down=modem_ppp_linkdown;
ppp_params_ptr->callback_param=&ppp_sem;
to modem_ppp_start() and removed ipcp_data variable, because I think it has no use in modem_ppp_start() - PPP_init() is doing that assignment.
Thanks,
Martin