From bf019e97857f99cf499c3f50b0632a21704cb182 Mon Sep 17 00:00:00 2001 From: Kaleb Joseph Himes Date: Wed, 12 Aug 2015 15:20:49 -0600 Subject: [PATCH] Update README.md --- tirtos_ccs_examples/README.md | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/tirtos_ccs_examples/README.md b/tirtos_ccs_examples/README.md index 4f4bd241..bcb607a4 100644 --- a/tirtos_ccs_examples/README.md +++ b/tirtos_ccs_examples/README.md @@ -73,7 +73,8 @@ Step 5: Loading first example Step 6: Setting up the environment -- Before building we have to do a little setup.
- Step 6.a
+
+ Step 6.a
Right click on the imported project and select `Properties`

Under `Build -> ARM Compiler -> Include Options`
@@ -81,19 +82,17 @@ Step 6: Setting up the environment (NOTE: include the quotes)
Click on that and add this line `"C:/wolfssl"`

- Step 6.b
+ Step 6.b
Now still in the Properties window
Under `Build -> ARM Linker -> File Search Path`

In the browser window on the right under "Include library file or command file as input"
Click the add button and add this line `"C:\wolfssl\tirtos\packages\ti\net\wolfssl\lib\wolfssl.aem4f"`

- In the browser window on the right under "Add to library search path"
+ In the browser window on the right under "Add dir to library search path"
Click the add button and add this line `"C:\wolfssl\tirtos\packages\ti\net\wolfssl\lib"`
-
-
- Step 6.c
- Hit OK and we're ready to build the example project.
+ Hit OK and we're ready to build the example project.
+
Step 7: Build the project -- In the "TI Resource Explorer window" Click on the link in "Step 2" to build the project.
@@ -111,18 +110,26 @@ Step 9: Get Debug Working -- In the "TI Resource Explorer window" Click on the link in "Step 3"
Click the drop down options and select "Stellaris In-Circuit Debug Interface"
+
In the "TI Resource Explorer window" Click on the link in "Step 4"
This should alert you to the need for some additional setup. Click OK and a new tab will open.
+
In the field "Board or Device" type in `Tiva TM4C1294NCPDT` and check the box
+
In the right-hand side of this same window click "save" to save the configuration.
Close this tab.
+
In the "TI Resource Explorer window" Click on the link in "Step 4" a second time.
+
The project will be flashed onto the Tiva Board. Wait for a few seconds.
+
Now hit the key "F8" or in the top left of CCS click the green "Play" Button
(The buton says "Resume" in the drop down if you scroll over it)
+
You will see output in the "Console" Window at the bottom of CCS.
A line will read `Network Added: If-1:192.168.1.xxx` or some other IP
- This is the IP of the tcpEchoTLS server that is now running on the board in step 9
+
+ This is the IP of the tcpEchoTLS server that is now running on the board in step 10
we will refer to this IP as `TCP_ECHO_IP`

Step 10: Test the server