Skip to content

Commit eb9bc06

Browse files
committed
Minor text updates
1 parent 8c9c4a2 commit eb9bc06

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

DoxyGen/infrastructure/src/avh_desktop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
You can use Arm Virtual Hardware FVP models with embedded projects locally on your machine.
44

5-
**Use in command line interface:**
6-
- Section \ref avh_fvp_artifactory explains how to download the AVH FVPs to your local machine. While section [Simulation - Using AVH FVPs](../../simulation/html/using.html) gives an overview on how to use AVH FVPs in a command-line interface (CLI).
5+
**Use in command line interface (CLI):**
6+
- Section \ref avh_fvp_artifactory explains how to download the AVH FVPs to your local machine. For an overview about program execution using CLI see section [Simulation - Using AVH FVPs](../../simulation/html/using.html).
77

88
**Use in IDEs:**
99
- \subpage run_mdk_vscode explains how to use AVH FVPs in Keil MDK for VS Code running on a Linux/Windows/MacOs machine.

DoxyGen/infrastructure/src/avh_gh_actions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Arm provides several GitHub Actions that simplify installation of AVH FVPs and o
2222
```
2323
.
2424

25-
- **armlm action** activates an Arm user based license (UBL) for Arm Tools on your GitHub Runner.<br/>
25+
- **armlm action** activates an Arm user based license (UBL) for Arm Tools on your GitHub Runner.<br/>
2626
For example add the following step to your workflow to activate a Keil-MDK Community license that allows evaluation and open-source usage of Arm Tools:
2727
```yml
2828
- name: Activate Arm license
@@ -37,13 +37,13 @@ The actions execute on the GitHub Runner operations for vcpkg-based tool downloa
3737

3838
After AVH FVPs and other tools are installed and activated on the GitHub Runner (see \ref arm_cmsis_actions) you can use the command line interface for building your project (e.g with `cbuild` utility) and run the firmware on an AVH FVP target (see [Running User Applications in CLI](../../simulation/html/using.html#Execution)).
3939

40-
For example, the code snippet below adds to a GitHub Actions workflow a step with program execution on Cortex-M3 FVP target:
40+
For example, the code snippet below adds to a GitHub Actions workflow a step with program execution on Corstone-320 FVP target:
4141

4242
```yml
4343
name: Execute
4444
run: |
45-
echo "Running get started example ..."
46-
FVP_MPS2_Cortex-M3 --simlimit 10 -f fvp_config.txt -a Project.axf | tee Project.avh.log
45+
echo "Running project example ..."
46+
FVP_Corstone_SSE-320 -f fvp_config.txt -a Project.axf | tee Project.avh.log
4747
```
4848

4949
Also see [Execution in CI frameworks](../../simulation/html/hints.html#ci_frameworks) for useful hints about running FVPs in CI workflows.
@@ -52,11 +52,11 @@ Also see [Execution in CI frameworks](../../simulation/html/hints.html#ci_framew
5252

5353
Software often needs to be tested in multiple configurations, with different toolchains and on different platforms. To simplify job definition for such variations you can use [matrix strategy in GitHub Action](https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs).
5454

55-
For example the code snapshot below defines a two-dimensional matrix for Corsone-315/310/300 targets with Arm Compiler 6, GCC and Clang:
55+
For example the code snapshot below defines a two-dimensional matrix for Corstone-320/315/310/300 targets with Arm Compiler 6, GCC and Clang:
5656

5757
```yml
5858
matrix:
59-
target: [CS315, CS310, CS300]
59+
target: [CS320, CS315, CS310, CS300]
6060
compiler: [AC6, GCC, Clang]
6161
```
6262

0 commit comments

Comments
 (0)