Skip to content

Commit 7892dd8

Browse files
gergelykarmurutva
authored andcommitted
docs: Add Corstone-320
Signed-off-by: Gergely Korcsák <[email protected]>
1 parent b5df3d7 commit 7892dd8

File tree

6 files changed

+17
-15
lines changed

6 files changed

+17
-15
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ is used to run the application artefacts.
2929
The [currently released version <11.24.22>](https://developer.arm.com/downloads/-/arm-ecosystem-fvps)
3030
of FVP is supported by the FRI.
3131

32+
* [Corstone-320](https://developer.arm.com/Processors/Corstone-320)
33+
* Arm Cortex-M85 CPU, Ethos-U85 NPU and Mali-C55 ISP
3234
* [Corstone-315](https://developer.arm.com/Processors/Corstone-315)
3335
* Arm Cortex-M85 CPU, Ethos-U65 NPU and Mali-C55 ISP
3436
* [Corstone-310](https://developer.arm.com/Processors/Corstone-310)

docs/applications/blinky.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ setup correctly before proceeding.
1919

2020
To build the blinky example, run the following command:
2121
```bash
22-
./tools/scripts/build.sh blinky --target <corstone300/corstone310/corstone315> --toolchain <ARMCLANG/GNU>
22+
./tools/scripts/build.sh blinky --target <corstone300/corstone310/corstone315/corstone320> --toolchain <ARMCLANG/GNU>
2323
```
2424

2525
Run the command below to perform a clean build:
2626
```bash
27-
./tools/scripts/build.sh blinky --target <corstone300/corstone310/corstone315> --toolchain <ARMCLANG/GNU> -c
27+
./tools/scripts/build.sh blinky --target <corstone300/corstone310/corstone315/corstone320> --toolchain <ARMCLANG/GNU> -c
2828
```
2929

3030
## Running the application
3131

3232
To run the blinky example, run the following command:
3333
```bash
34-
./tools/scripts/run.sh blinky --target <corstone300/corstone310/corstone315>
34+
./tools/scripts/run.sh blinky --target <corstone300/corstone310/corstone315/corstone320>
3535
```
3636

3737
### Expected output

docs/applications/device_advisor/running_aws_iot_core_device_advisor_tests.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ Save and close the file.
6565
To build the application, run the following command:
6666

6767
```bash
68-
./tools/scripts/build.sh ${APPLICATION_NAME} --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315> --toolchain GNU --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS>
68+
./tools/scripts/build.sh ${APPLICATION_NAME} --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315/corstone320> --toolchain GNU --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS>
6969
```
7070

7171
* The `certificate pem's path` and `private key pem's path` should be the downloaded key's and certificate's paths during the Thing creation.
7272

7373
Or, run the command below to perform a clean build:
7474

7575
```bash
76-
./tools/scripts/build.sh ${APPLICATION_NAME} --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315> --toolchain GNU --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS> -c
76+
./tools/scripts/build.sh ${APPLICATION_NAME} --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315/corstone320> --toolchain GNU --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS> -c
7777
```
7878

7979
## Running the application
@@ -87,7 +87,7 @@ to start the [previously created](#creating-aws-iot-core-qualification-test-suit
8787
Now run the application by running the following command:
8888

8989
```bash
90-
./tools/scripts/run.sh ${APPLICATION_NAME} --target <corstone300/corstone310/corstone315>
90+
./tools/scripts/run.sh ${APPLICATION_NAME} --target <corstone300/corstone310/corstone315/corstone320>
9191
```
9292

9393
Once the device advisor has completed all the tests, you can download the AWS

docs/applications/keyword_detection.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Follow the instructions described in [Setting Up AWS Connectivity](./aws_iot/set
4747
To build the Keyword-Detection example, run the following command:
4848

4949
```bash
50-
./tools/scripts/build.sh keyword-detection --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315> --inference <ETHOS/SOFTWARE> --audio <ROM/VSI> --toolchain <ARMCLANG/GNU> --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS>
50+
./tools/scripts/build.sh keyword-detection --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315/corstone320> --inference <ETHOS/SOFTWARE> --audio <ROM/VSI> --toolchain <ARMCLANG/GNU> --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS>
5151
```
5252
* The `certificate pem's path` and `private key pem's path` should be the downloaded key's and certificate's path if you chose the **Auto-generate a new certificate** during the Thing creation. If you chose **Skip creating a certificate at this time** then these paths should locate the generated credential files that were created by the `./tools/scripts/generate_credentials.py` script in the previous step.
5353

@@ -63,7 +63,7 @@ implementation, please refer to [Mbed TLS document](../components/security/mbedt
6363
Or, run the command below to perform a clean build:
6464

6565
```bash
66-
./tools/scripts/build.sh keyword-detection --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315> --inference <ETHOS/SOFTWARE> --audio <ROM/VSI> --toolchain <ARMCLANG/GNU> --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS> -c
66+
./tools/scripts/build.sh keyword-detection --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315/corstone320> --inference <ETHOS/SOFTWARE> --audio <ROM/VSI> --toolchain <ARMCLANG/GNU> --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS> -c
6767
```
6868

6969
## Provisioning the device credentials into Protected Storage
@@ -82,7 +82,7 @@ If you would like to run the keyword detection application using VSI configurati
8282
To run the Keyword-Detection example, run the following command:
8383

8484
```bash
85-
./tools/scripts/run.sh keyword-detection --target <corstone300/corstone310/corstone315> --audio <ROM/VSI>
85+
./tools/scripts/run.sh keyword-detection --target <corstone300/corstone310/corstone315/corstone320> --audio <ROM/VSI>
8686
```
8787

8888
### Expected output

docs/applications/object_detection.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Follow the instructions described in [Setting Up AWS Connectivity](./aws_iot/set
2525

2626
To build the Object-Detection example, run the following command:
2727
```bash
28-
./tools/scripts/build.sh object-detection --certificate_path <certificate pem's path> --private_key_path <private key pem's path> -t corstone315 --toolchain GNU --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS>
28+
./tools/scripts/build.sh object-detection --certificate_path <certificate pem's path> --private_key_path <private key pem's path> -t <corstone315/corstone320> --toolchain GNU --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS>
2929
```
3030
- The `certificate pem's path` and `private key pem's path` should be the downloaded key's and certificate's path if you chose the **Auto-generate a new certificate** during the Thing creation. If you chose **Skip creating a certificate at this time** then these paths should locate the generated credential files that were created by the `./tools/scripts/generate_credentials.py` script in the previous step.
3131

@@ -38,7 +38,7 @@ implementation, please refer to [Mbed TLS document](../components/security/mbedt
3838

3939
Or, run the command below to perform a clean build:
4040
```bash
41-
./tools/scripts/build.sh object-detection --certificate_path <certificate pem's path> --private_key_path <private key pem's path> -t corstone315 --toolchain GNU --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS> -c
41+
./tools/scripts/build.sh object-detection --certificate_path <certificate pem's path> --private_key_path <private key pem's path> -t <corstone315/corstone320> --toolchain GNU --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS> -c
4242
```
4343

4444
## Provisioning the device credentials into Protected Storage
@@ -48,7 +48,7 @@ Check [Device Provisioning](./device_provisioning/device_provisioning.md) for de
4848
## Running the application
4949

5050
```bash
51-
./tools/scripts/run.sh object-detection -t corstone315 --frames applications/object_detection/resources/test.frm
51+
./tools/scripts/run.sh object-detection -t <corstone315/corstone320> --frames applications/object_detection/resources/test.frm
5252
```
5353
- The `frames` is used to select the input frames file.
5454

docs/applications/speech_recognition.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Follow the instructions described in [Setting Up AWS Connectivity](./aws_iot/set
2727
To build the Speech-Recognition example, run the following command:
2828

2929
```bash
30-
./tools/scripts/build.sh speech-recognition --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315> --inference ETHOS --audio <ROM/VSI> --toolchain <ARMCLANG/GNU> --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS>
30+
./tools/scripts/build.sh speech-recognition --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315/corstone320> --inference ETHOS --audio <ROM/VSI> --toolchain <ARMCLANG/GNU> --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS>
3131
```
3232
* The `certificate pem's path` and `private key pem's path` should be the downloaded key's and certificate's path if you chose the **Auto-generate a new certificate** during the Thing creation. If you chose **Skip creating a certificate at this time** then these paths should locate the generated credential files that were created by the `./tools/scripts/generate_credentials.py` script in the previous step.
3333

@@ -41,7 +41,7 @@ implementation, please refer to [Mbed TLS document](../components/security/mbedt
4141
Or, run the command below to perform a clean build:
4242

4343
```bash
44-
./tools/scripts/build.sh speech-recognition --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315> --inference ETHOS --audio <ROM/VSI> --toolchain <ARMCLANG/GNU> --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS> -c
44+
./tools/scripts/build.sh speech-recognition --certificate_path <certificate pem's path> --private_key_path <private key pem's path> --target <corstone300/corstone310/corstone315/corstone320> --inference ETHOS --audio <ROM/VSI> --toolchain <ARMCLANG/GNU> --conn-stack <FREERTOS_PLUS_TCP/IOT_VSOCKET> --psa-crypto-implementation <TF-M/MBEDTLS> -c
4545
```
4646

4747
## Provisioning the device credentials into Protected Storage
@@ -60,7 +60,7 @@ If you would like to run the speech recognition application using VSI configurat
6060
To run the Speech-Recognition example, run the following command:
6161

6262
```bash
63-
./tools/scripts/run.sh speech-recognition --target <corstone300/corstone310/corstone315> --audio <ROM/VSI>
63+
./tools/scripts/run.sh speech-recognition --target <corstone300/corstone310/corstone315/corstone320> --audio <ROM/VSI>
6464
```
6565

6666
### Expected output

0 commit comments

Comments
 (0)