Skip to content

Commit 5a68dcd

Browse files
Amanda Butlerhug-dev
authored andcommitted
Copy edit README.md
Copy edit for active voice, branding, spelling and other minor grammar fixes.
1 parent 0ec8444 commit 5a68dcd

File tree

1 file changed

+13
-10
lines changed
  • targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2

1 file changed

+13
-10
lines changed

targets/TARGET_ARM_SSG/TARGET_CM3DS_MPS2/README.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# Cortex-M3 Design Start Eval package example on MPS2+ board
22

3-
This folder includes the port of mbed OS on the example system of the Cortex-M3
3+
This folder includes the port of Mbed OS on the example system of the Cortex-M3
44
Design Start Eval package. This example is implemented in FPGA on the MPS2+
5-
board. Please check the [Mbed page](https://os.mbed.com/platforms/ARM-CM3DS/) of
6-
this target for more information.
5+
board. Please see this target's [Mbed page](https://os.mbed.com/platforms/ARM-CM3DS/)
6+
for more information.
77
For convenience, this target is called **CM3DS**.
88

99
## Compiling
1010

11-
The target name is `ARM_CM3DS_MPS2`, you should be able to compile Mbed OS
11+
The target name is `ARM_CM3DS_MPS2`. You can compile Mbed OS
1212
projects for CM3DS with:
1313

1414
```bash
1515
mbed compile -t COMPILER -m ARM_CM3DS_MPS2
1616
```
1717

18-
The following compilers are supported (replace `COMPILER` with):
18+
Mbed OS supports the following compilers (replace `COMPILER` with):
1919

2020
* `ARM` for Arm Compiler version 5.
2121
* `GCC_ARM` for GNU Compiler for Arm.
@@ -25,9 +25,9 @@ The following compilers are supported (replace `COMPILER` with):
2525

2626
Because of the new memory configuration introduced in commit `CM3DS: switch to
2727
larger memories for code and data`, it
28-
has become easier (and portable amoung all compilers) to use `.elf` files
29-
instead of `.bin`. `.elf` files are now the default for CM3DS projects and only
30-
they will be generated from the compilation.
28+
has become easier (and portable among all compilers) to use `.elf` files
29+
instead of `.bin`. `.elf` files are now the default for CM3DS projects, and compilation
30+
generates only them.
3131
For `.elf` files to work, you need **at least version 2.2.5** of the MPS2+
3232
firmware. For more information, please see the [firmware version 2.2.6 and instructions on how to put it
3333
in the MPS2+ board](https://community.arm.com/processors/designstart/f/discussions/9727/mps2-firmware-for-mbed).
@@ -40,23 +40,26 @@ If you want to execute the Mbed OS greentea tests on CM3DS, you need
4040
* `mbedls` does not automatically recognize which serial port is linked to the
4141
board. Check it manually, and create a file named `mbedls.json` containing
4242
(at the same level than where you execute all commands):
43+
4344
```bash
4445
{
4546
"50040200074D652F3828F333": {
4647
"serial_port": "/dev/ttyUSB0"
4748
}
4849
}
4950
```
51+
5052
Replace `/dev/ttyUSB0` with your correct serial port
5153
(something like `COM6` on Windows).
5254

5355
* `mbedls` does not link CM3DS target ID with its name, so execute the command:
56+
5457
```bash
5558
mbedls --mock 5004:ARM_CM3DS_MPS2
5659
```
5760

58-
* You can now compile and run the tests
61+
* You can now compile and run the tests:
62+
5963
```bash
6064
mbed test -m ARM_CM3DS_MPS2 -t COMPILER
6165
```
62-

0 commit comments

Comments
 (0)