Other Parts Discussed in Thread: EK-TM4C1294XL
Tool/software: TI-RTOS
Hi,
I am using EK-TM4C1294XL board and I am trying to run the project tcpEchoIPv6_EK_TM4C1294XL_TI_TivaTM4C1294NCPDT which is imported directly from the original document. To set the static ipv4 address, I added the following codes to the tcpEchoIPv6.cfg file.
Ip.autoIp = false;
Ip.address = "192.168.0.55";
Ip.mask = "255.255.255.255";
Ip.gatewayIpAddr = "192.168.0.1";
When build the project and try to run it in my board, I got the Exception occured problem.
Additional information:
1. The NDK version is 2_25_00_09 and the tirtos version is tirtos_tivac_2_16_01_14.
2. I have a router to provide the Stateless Auto IPv6 Address Configuration to the board.When the router send out the Router Advertisement packet, the Exception occured. It seems that the something wrong with the network stack when it receive and process the RA packet.
I got the console output as below:
Starting the TCP Echo IPv6 example
System provider is set to SysMin. Halt the target to view any SysMin contents in ROV.
Network Added: If-1:192.168.0.55
Address: fe80::21a:b6ff:fe02:c23b on device 1 is UNIQUE
Address: 2555:530:5a::21a:b6ff:fe02:c23b on device 1 is UNIQUE ---> this address is set by the net stack according the RA packet sent by my router.
FSR = 0x0000
HFSR = 0x40000000
DFSR = 0x0000000b
MMAR = 0xe000ed34
BFAR = 0xe000ed38
AFSR = 0x00000000
Terminating execution...
Can anyone help solve this? Thanks a lot.
