This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Is there any simple example program to check ethernet connectivity and data transfer between PC and TM4C129EXL Evaluation kit through Ethernet by setting a STATIC IP?
The existing example program in CCS software uses a web server. I need a program which can run completely offline and date transfer to be checked using pUTTY.
I tried to ping. But it didn't work. I think the static IP is not set correctly.
I need to transfer data between putty and EK-TM4C129EXL board. Is there any peripheral function to achieve data transfer?
All the three examples in CCS are web-based. Is there any example program that can do data transfer using putty or telnet?
Thank you for replying.
I have set STATIC IP and successfully ping. The example program also works fine with both DHCP and STATIC IP.
Now I am trying to do simple data transfer (int/char) through Ethernet. Is there any Ethernet Peripheral function regarding that?
Thanks in advance.
Thank You Charles...
The tcpecho_raw.c seems to work. I am trying to do data transfer using that. I can't figure out the main function and the sequence in which the functions in tcpecho_raw.c should be called in the main function?
Do you have any code with the main function to do data transfer using the tcpecho_raw.c ?
Thank You for your time...
There is a UDP PC application in your TI-RTOS directory at packages/examples/tools/udpSendReceive.c
This should work with the udp echo project from the reasource explorer without modifications.
Thank you.
I have used the TCP echo server lwip example in the following link:
https://coherentmusings.wordpress.com/tag/sample-lwip-application/
It works fine.