FreeRTOS-Kernel/FreeRTOS-Plus/Test/FreeRTOS-Plus-TCP/Integration/Full-TCP-Suite
Oscar Michael Abrina 01e59a036c
Restructure platform directory (#382)
This updates the platform and logging directory and moves it to the following places:
FreeRTOS\FreeRTOS-Plus\Source\Utilities
FreeRTOS\FreeRTOS-Plus\Source\Application-Protocols\network_transport\freertos_plus_tcp

Project files are updated to follow suite. All updated demos are tested to work as expected.
2020-11-05 16:47:43 -08:00
..
Config Sync back V10.4.1 (#282) 2020-09-17 17:16:33 -07:00
Logging Relocate logging sources under FreeRTOS-Plus/Source/Logging (#354) 2020-10-20 20:31:54 -07:00
Test_Code Add Full TCP test suite - not using secure sockets (#131) 2020-07-10 23:32:30 -07:00
WinPCap Sync back V10.4.1 (#282) 2020-09-17 17:16:33 -07:00
Full-TCP-Suite.sln Add Full TCP test suite - not using secure sockets (#131) 2020-07-10 23:32:30 -07:00
main.c Relocate logging sources under FreeRTOS-Plus/Source/Logging (#354) 2020-10-20 20:31:54 -07:00
Read_Me_Build_Instructions.url Add Full TCP test suite - not using secure sockets (#131) 2020-07-10 23:32:30 -07:00
ReadMe.txt Add Full TCP test suite - not using secure sockets (#131) 2020-07-10 23:32:30 -07:00
WIN32.vcxproj Restructure platform directory (#382) 2020-11-05 16:47:43 -08:00
WIN32.vcxproj.filters Delete printf-stdarg.c and move logging.c from Source/Logging (#381) 2020-11-05 10:12:06 -08:00
WIN32.vcxproj.user Add Full TCP test suite - not using secure sockets (#131) 2020-07-10 23:32:30 -07:00

The FreeRTOS+TCP source code and example projects are currently provided in
their own .zip file download, but using the directory structure of the official
FreeRTOS .zip file download.  This allow the projects to be seamlessly moved
from one download to the other, but can seem strange when the files are viewed
in isolation.

The FreeRTOS+TCP test suite Visual Studio project file is in the following
directory: FreeRTOS-Plus\Test\FreeRTOS-Plus-TCP\Integration\Full-TCP-Suite

This project is a version of the standard FreeRTOS demos that includes the
integration tests of +TCP. It tests the +TCP stack through the use of FreeRTOS_Sockets
API. To Run this project, make sure that the computer is connected to a network
via ethernet cable. 
- Open the project (using file named `Full-TCP-Suite.sln`) and
choose the required network interface by modifying this line `#define 
configNETWORK_INTERFACE_TO_USE` in FreeRTOSConfig.h. 
- Modify the `tcptestECHO_SERVER_ADDR[0-3]` and `tcptestECHO_PORT` in the file 
`test_tcp.h` according to the address of the unsecure echo server of your choosing.
An implementation of echo server is provided here: 
https://docs.aws.amazon.com/freertos/latest/portingguide/afr-echo-server.html

Once these changes are made, just build and run the project. It should run 23 test
of which all should pass with a proper connection.