You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: qemu-cortex-r5-app/README.md
+42-14Lines changed: 42 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,47 +7,75 @@ This application is for the Arm Versatile Application Board, which includes an
7
7
Arm Cortex-R5 processor. This board was chosen because it can be emulated by
8
8
QEMU.
9
9
10
-
To build and run this project, simply run:
10
+
## Pre-requisites
11
+
12
+
To build this demo you must:
13
+
14
+
1. Run `git submodule update --init` to check-out the ThreadX source code
15
+
2. Install `defmt-print` with `cargo install defmt-print`
16
+
3. Install `qemu-system-arm` - see [the QEMU website](https://www.qemu.org/download/) or via `winget install --id=SoftwareFreedomConservancy.QEMU`
17
+
4. Install `arm-none-eabi-gcc` - such as from the [Arm GNU Toolchain](https://developer.arm.com/Tools%20and%20Software/GNU%20Toolchain) or via `winget install gcc-arm-embedded`
18
+
5. Install `libclang`, as specified in [the `bindgen` documentation](https://rust-lang.github.io/rust-bindgen/requirements.html) or via `winget install LLVM.LLVM`
19
+
6. Add the `armv7r-none-eabihf` target with `rustup target add armv7r-none-eabih`:
0 commit comments