Skip to content

Commit 698b532

Browse files
committed
Periodic update - 05/29/2020 2:00PM PDT
1 parent 1aa3b7c commit 698b532

File tree

177 files changed

+1914
-1784
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+1914
-1784
lines changed
+126-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,128 @@
1-
# Setting Up an Echo Server<a name="afr-echo-server"></a>
1+
# Setting up an echo server<a name="afr-echo-server"></a>
22

3-
Two simple echo servers, written in Go, are provided with FreeRTOS\. One server uses TLS for secure communication, and the other is unsecured\. The servers are located in the `<freertos>/tools/echo_server` folder\. The following topics walk you through setting up the echo servers\.
3+
The `freertos/tools/echo_server/` directory has the source code for a Go\-based echo server that you can use to test TCP on FreeRTOS\. You can find the TCP tests in the `freertos/libraries/abstractions/secure_sockets/test/iot_test_tcp.c` file\. Follow the instructions in this section to set up and run the echo server\.
44

5-
**Topics**
6-
+ [Setting Up the TLS Echo Server](tls-echo-server.md)
7-
+ [Setting Up the Echo Server \(Without TLS\)](notls-echo-server.md)
5+
## Prerequisites<a name="afr-echo-server-prerequisites"></a>
6+
7+
To run the TLS echo server, you must install the following:
8+
+ Go – You can download the latest version from [ golang\.org](https://golang.org/dl/)\.
9+
+ OpenSSL – For a Linux source code download, see [OpenSSL\.org](https://www.openssl.org/source/)\. You can also use a package manager to install OpenSSL for Linux and macOS\.
10+
11+
## Create credentials<a name="afr-echo-server-credentials"></a>
12+
13+
After you finish the prerequisites, you must enter the following commands to create your credentials\.
14+
15+
**Server**
16+
The following `openssl` command generates a self\-signed server certificate\.
17+
18+
```
19+
openssl req -newkey rsa:2048 -nodes -x509 -sha256 -out certs/server.pem -keyout certs/server.key -days 365 -subj "/C=US/ST=WA/L=Place/O=YourCompany/OU=IT/CN=www.your-company-website.com/[email protected]"
20+
```
21+
22+
**Client**
23+
The following `openssl` commands generate a client certificate\.
24+
25+
```
26+
openssl genrsa -out certs/client.key 2048
27+
```
28+
29+
```
30+
openssl req -new -key certs/client.key -out certs/client.csr -subj "/C=US/ST=WA/L=Place/O=YourCompany/OU=IT/CN=www.your-company-website.com/[email protected]"
31+
```
32+
33+
```
34+
openssl x509 -req -in certs/client.csr -CA certs/server.pem -CAkey certs/server.key -CAcreateserial -out certs/client.pem -days 365 -sha256
35+
```
36+
37+
## Directory structure<a name="afr-echo-server-folder-struct"></a>
38+
39+
By default, certificates and keys are stored in a directory named `certs` that is located on a relative path specified in the configuration file, `config.json`\. If you want to move your credentials to a different directory, you can update this directory location in the configuration file\.
40+
41+
You can find the source code for the echo server in the `echo_server.go` file\.
42+
43+
## Server configuration<a name="afr-echo-server-config"></a>
44+
45+
The echo server reads a JSON based configuration file\. The default location for this JSON file is `./config.json`\. To override this, specify the location of the JSON with the `-config` flag\.
46+
47+
The JSON file contains the following options:
48+
49+
**server\-port**
50+
Specify the port on which to open a socket\.
51+
52+
**server\-certificate\-location**
53+
The relative or absolute path to the server certificate generated in [Create credentials](#afr-echo-server-credentials)\.
54+
55+
**secure\-connection**
56+
Enable this option to have the echo server use TLS\. You must first [Create credentials](#afr-echo-server-credentials)\.
57+
58+
**logging**
59+
Enable this option to output all log messages received to a file\.
60+
61+
**verbose**
62+
Enable this option to output the contents of the message sent to the echo server\.
63+
64+
**server\-key\-location**
65+
The relative or absolute path to the server key generated in [Create credentials](#afr-echo-server-credentials)\.
66+
67+
**Example configuration**
68+
69+
```
70+
{
71+
"verbose": false,
72+
"logging": false,
73+
"secure-connection": false,
74+
"server-port": "9000",
75+
"server-certificate-location": "./certs/server.pem",
76+
"server-key-location": "./certs/server.pem"
77+
}
78+
```
79+
80+
## Run the echo server from the command line<a name="afr-echo-server-run"></a>
81+
82+
Enter the following commands to run the echo server\.
83+
84+
```
85+
go run echo_server.go
86+
```
87+
88+
Enter the following command to run with a custom config location\.
89+
90+
```
91+
go run echo_server.go -config=config_file_path
92+
```
93+
94+
If you want to run the unsecure and secure TCP tests at the same time, you must start both a secure and an unsecure echo server\. To do this, create a second, secure configuration file, and pass its location to the second instance of the echo server using the `-config` flag\. Remember to also specify a different TCP port in the second configuration file\.
95+
96+
## Client device configuration<a name="afr-echo-server-device-config"></a>
97+
98+
Before you run the TCP tests on your device, we recommend that you read [Getting Started with FreeRTOS](https://docs.aws.amazon.com/freertos/latest/userguide/freertos-getting-started.html) in the *FreeRTOS User Guide*\.
99+
100+
After you complete the steps in [Create credentials](#afr-echo-server-credentials), you should have the following files:
101+
+ `certs/server.pem`
102+
+ `certs/server.key`
103+
+ `certs/client.pem`
104+
+ `certs/client.key`
105+
+ `certs/client.csr`
106+
+ `certs/server.srl`
107+
108+
Make the following changes to these files:
109+
110+
`freertos/tests/include/aws_clientcredential.h`
111+
+ Define the broker endpoint\.
112+
+ Define the thing name\.
113+
+ Define access to Wi\-Fi \(if not on Ethernet\)\.
114+
115+
`freertos/tests/include/aws_clientcredential_keys.h`
116+
+ Set `keyCLIENT_CERTIFICATE_PEM` to the contents of `certs/client.pem`\.
117+
+ Leave `keyJITR_DEVICE_CERTIFICATE_AUTHORITY_PEM` as `NULL`\.
118+
+ Set `keyCLIENT_PRIVATE_KEY_PEM` to the contents of `certs/client.key`\.
119+
+ For more information, see [ Configuring the FreeRTOS demos](https://docs.aws.amazon.com/freertos/latest/userguide/freertos-configure.html)\.
120+
121+
`freertos/tests/include/aws_test_tcp.h`
122+
+ Set `tcptestECHO_HOST_ROOT_CA` to the contents of `certs/server.pem`\.
123+
+ Set the IP address and the port of the echo server:
124+
+ `tcptestECHO_SERVER_ADDR[0-3]`
125+
+ `tcptestECHO_PORT`
126+
+ Set the IP address and the port of the secure echo server:
127+
+ `tcptestECHO_SERVER_TLS_ADDR0[0-3]`
128+
+ `tcptestECHO_PORT_TLS`

doc_source/portingguide/afr-porting-ble.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Porting the Bluetooth Low Energy Library<a name="afr-porting-ble"></a>
1+
# Porting the Bluetooth Low Energy library<a name="afr-porting-ble"></a>
22

33
You can use the FreeRTOS Bluetooth Low Energy library to provision Wi\-Fi and send MQTT messages over Bluetooth Low Energy\. The Bluetooth Low Energy library also includes higher\-level APIs that you can use to communicate directly with the Bluetooth Low Energy stack\. For more information, see [FreeRTOS Bluetooth Low Energy Library](https://docs.aws.amazon.com/freertos/latest/userguide/freertos-ble-library.html) in the FreeRTOS User Guide\.
44

@@ -13,12 +13,12 @@ To port the Bluetooth Low Energy library, you need the following:
1313
For information about setting up a test project, see [Setting Up Your FreeRTOS Source Code for Porting](porting-set-up-project.md)\.
1414
+ A validated configuration of the FreeRTOS kernel\.
1515

16-
For information about configuring the FreeRTOS kernel for your platform, see [Configuring a FreeRTOS Kernel Port](afr-porting-kernel.md)\.
16+
For information about configuring the FreeRTOS kernel for your platform, see [Configuring a FreeRTOS kernel port](afr-porting-kernel.md)\.
1717
+ A [Raspberry Pi 3 Model B\+](https://www.raspberrypi.org/products/raspberry-pi-3-model-b-plus/), with a memory card\.
1818

1919
## Porting<a name="porting-steps-ble"></a>
2020

21-
Three files in the `<freertos>/libraries/abstractions/ble_hal/include` folder define the FreeRTOS Bluetooth Low Energy APIs:
21+
Three files in the `freertos/libraries/abstractions/ble_hal/include` folder define the FreeRTOS Bluetooth Low Energy APIs:
2222
+ `bt_hal_manager.h`
2323
+ `bt_hal_manager_adapter_ble.h`
2424
+ `bt_hal_gatt_server.h`
@@ -104,7 +104,7 @@ The Bluetooth Low Energy porting and qualification tests target the low\-level w
104104

105105
If you are using an IDE to build test projects, you need to set up your library port in the IDE project\.
106106

107-
### Setting Up the IDE Test Project<a name="testing-ide-ble"></a>
107+
### Setting up the IDE test project<a name="testing-ide-ble"></a>
108108

109109
If you are using an IDE for porting and testing, you need to add some source files to the IDE test project before you can test your ported code\.
110110

@@ -113,23 +113,23 @@ In the following steps, make sure that you add the source files to your IDE proj
113113

114114
**To set up the Bluetooth Low Energy library in the IDE project**
115115

116-
1. Add all of the files in `<freertos>/vendors/<vendor>/boards/<board>/ports/ble` to your `aws_tests` IDE project\.
116+
1. Add all of the files in `freertos/vendors/vendor/boards/board/ports/ble` to your `aws_tests` IDE project\.
117117

118-
1. Add all of the files in `<freertos>/libraries/abstractions/ble_hal/include` to your `aws_tests` IDE project\.
118+
1. Add all of the files in `freertos/libraries/abstractions/ble_hal/include` to your `aws_tests` IDE project\.
119119

120-
1. Add all of the files in `<freertos>/libraries/c_sdk/standard/ble` to your `aws_tests` IDE project\.
120+
1. Add all of the files in `freertos/libraries/c_sdk/standard/ble` to your `aws_tests` IDE project\.
121121

122-
1. Open `<freertos>/vendors/<vendor>/boards/<board>/aws_tests/application_code/main.c`, and enable the required Bluetooth Low Energy drivers\.
122+
1. Open `freertos/vendors/vendor/boards/board/aws_tests/application_code/main.c`, and enable the required Bluetooth Low Energy drivers\.
123123

124-
### Configuring the `CMakeLists.txt` File<a name="testing-cmake-ble"></a>
124+
### Configuring the `CMakeLists.txt` file<a name="testing-cmake-ble"></a>
125125

126126
If you are using CMake to build your test project, you need to define a portable layer target for the library in your CMake list file\.
127127

128-
To define a library's portable layer target in `CMakeLists.txt`, follow the instructions in [FreeRTOS Portable Layers](cmake-template.md#cmake-portable)\.
128+
To define a library's portable layer target in `CMakeLists.txt`, follow the instructions in [FreeRTOS portable layers](cmake-template.md#cmake-portable)\.
129129

130-
The `CMakeLists.txt` template list file under `<freertos>/vendors/<vendor>/boards/<board>/CMakeLists.txt` includes example portable layer target definitions\. You can uncomment the definition for the library that you are porting, and modify it to fit your platform\.
130+
The `CMakeLists.txt` template list file under `freertos/vendors/vendor/boards/board/CMakeLists.txt` includes example portable layer target definitions\. You can uncomment the definition for the library that you are porting, and modify it to fit your platform\.
131131

132-
### Setting Up Your Local Testing Environment<a name="testing-local-ble"></a>
132+
### Setting up your local testing environment<a name="testing-local-ble"></a>
133133

134134
**To set up the Raspberry Pi for testing**
135135

@@ -141,7 +141,7 @@ The `CMakeLists.txt` template list file under `<freertos>/vendors/<vendor>/board
141141

142142
1. Enable SSH on the Raspberry Pi\. For instructions, see the [Raspberry Pi documentation](https://www.raspberrypi.org/documentation/remote-access/ssh/)\.
143143

144-
1. On your computer, open the `<freertos>/tests/bleTestsScripts/runPI.sh` script, and change the IP addresses in the first two lines to the IP address of your Raspberry Pi:
144+
1. On your computer, open the `freertos/tests/bleTestsScripts/runPI.sh` script, and change the IP addresses in the first two lines to the IP address of your Raspberry Pi:
145145

146146
```
147147
#!/bin/sh
@@ -155,7 +155,7 @@ The `CMakeLists.txt` template list file under `<freertos>/vendors/<vendor>/board
155155
ENDSSH
156156
```
157157

158-
### Running the Tests<a name="testing-run-ble"></a>
158+
### Running the tests<a name="testing-run-ble"></a>
159159

160160
**To execute the Bluetooth Low Energy tests**
161161

doc_source/portingguide/afr-porting-config.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ To implement the `configPRINT_STRING()` macro, you need the following:
1616

1717
1. Connect your device to a terminal emulator to output test results\.
1818

19-
1. Open the file `<freertos>/vendors/<vendor>/boards/<board>/aws_tests/application_code/main.c`, and locate the call to `configPRINT_STRING("Test Message")` in the `prvMiscInitialization()` function\.
19+
1. Open the file `freertos/vendors/vendor/boards/board/aws_tests/application_code/main.c`, and locate the call to `configPRINT_STRING("Test Message")` in the `prvMiscInitialization()` function\.
2020

2121
1. Immediately before the call to `configPRINT_STRING("Test Message")`, add code that uses the vendor\-supplied UART driver to initialize the UART baud rate level to 115200\.
2222

23-
1. Open `<freertos>/vendors/<vendor>/boards/<board>/aws_tests/config_files/FreeRTOSConfig.h`, and locate the empty definition of `configPRINT_STRING()`\. The macro takes a NULL\-terminated ASCII C string as its only parameter\.
23+
1. Open `freertos/vendors/vendor/boards/board/aws_tests/config_files/FreeRTOSConfig.h`, and locate the empty definition of `configPRINT_STRING()`\. The macro takes a NULL\-terminated ASCII C string as its only parameter\.
2424

2525
1. Update the empty definition of `configPRINT_STRING()` so that it calls the vendor\-supplied UART output function\.
2626

@@ -40,4 +40,4 @@ To implement the `configPRINT_STRING()` macro, you need the following:
4040

4141
Build and execute the test demo project\. If Test Message appears in the UART console, then the console is connected and configured correctly, `configPRINT_STRING()` is behaving properly, and testing is complete\. You can remove the call to `configPRINT_STRING("Test Message")` from `prvMiscInitialization()`\.
4242

43-
After you implement the `configPRINT_STRING()` macro, you can start configuring a FreeRTOS kernel port for your device\. See [Configuring a FreeRTOS Kernel Port](afr-porting-kernel.md) for instructions\.
43+
After you implement the `configPRINT_STRING()` macro, you can start configuring a FreeRTOS kernel port for your device\. See [Configuring a FreeRTOS kernel port](afr-porting-kernel.md) for instructions\.

doc_source/portingguide/afr-porting-https.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configuring the HTTPS Client Library for Testing<a name="afr-porting-https"></a>
1+
# Configuring the HTTPS client library for testing<a name="afr-porting-https"></a>
22

33
The HTTPS Client library implements the HTTPS/1\.1 protocol over TLS for devices running FreeRTOS\.
44

@@ -7,33 +7,33 @@ The HTTPS Client library implements the HTTPS/1\.1 protocol over TLS for devices
77
To set up the FreeRTOS HTTPS Client library tests, you need the following:
88
+ A port of the TLS library\.
99

10-
For information about porting the TLS library to your platform, see [Porting the TLS Library](afr-porting-tls.md)\.
10+
For information about porting the TLS library to your platform, see [Porting the TLS library](afr-porting-tls.md)\.
1111

1212
If you are using an IDE to build test projects, you need to set up your library port in the IDE project\.
1313

14-
## Setting Up the IDE Test Project<a name="testing-ide-https"></a>
14+
## Setting up the IDE test project<a name="testing-ide-https"></a>
1515

16-
**To set up the HTTPS Client library in the IDE project**
17-
+ Add all of the test source files in `<freertos>/libraries/c_sdk/standard/https` and its subdirectories to the `aws_tests` IDE project\.
16+
**To set up the HTTPS client library in the IDE project**
17+
+ Add all of the test source files in `freertos/libraries/c_sdk/standard/https` and its subdirectories to the `aws_tests` IDE project\.
1818

19-
## Configuring the `CMakeLists.txt` File<a name="testing-cmake-https"></a>
19+
## Configuring the `CMakeLists.txt` file<a name="testing-cmake-https"></a>
2020

2121
If you are using CMake to build your test project, you need to define a portable layer target for the library in your CMake list file\.
2222

23-
To define a library's portable layer target in CMakeLists\.txt, follow the instructions in [FreeRTOS Portable Layers](cmake-template.md#cmake-portable)\.
23+
To define a library's portable layer target in CMakeLists\.txt, follow the instructions in [FreeRTOS portable layers](cmake-template.md#cmake-portable)\.
2424

25-
The CMakeLists\.txt template list file under `<freertos>/vendors/<vendor>/boards/<board>/CMakeLists.txt` includes example portable layer target definitions\. You can uncomment the definition for the library that you are porting, and modify it to fit your platform\.
25+
The CMakeLists\.txt template list file under `freertos/vendors/vendor/boards/board/CMakeLists.txt` includes example portable layer target definitions\. You can uncomment the definition for the library that you are porting, and modify it to fit your platform\.
2626

27-
## Setting Up Your Local Testing Environment<a name="testing-local-https"></a>
27+
## Setting up your local testing environment<a name="testing-local-https"></a>
2828

2929
After you set up the library in the IDE project, you need to configure some other files for testing\.
3030

31-
**To configure the source and header files for the HTTPS Client tests**
32-
+ To enable the HTTPS Client tests, open `<freertos>/vendors/<vendor>/boards/<board>/aws_tests/config_files/aws_test_runner_config.h`, and set the `testrunnerFULL_HTTPS_CLIENT_ENABLED ` macro to `1`\.
31+
**To configure the source and header files for the HTTPS client tests**
32+
+ To enable the HTTPS Client tests, open `freertos/vendors/vendor/boards/board/aws_tests/config_files/aws_test_runner_config.h`, and set the `testrunnerFULL_HTTPS_CLIENT_ENABLED ` macro to `1`\.
3333

34-
## Running the Tests<a name="testing-run-https"></a>
34+
## Running the tests<a name="testing-run-https"></a>
3535

36-
**To execute the HTTPS Client tests**
36+
**To execute the HTTPS client tests**
3737

3838
1. Build the test project, and then flash it to your device for execution\.
3939

0 commit comments

Comments
 (0)