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: src/doc/rustc/src/platform-support/armv7a-vex-v5.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
Allows compiling user programs for the [VEX V5 Brain](https://www.vexrobotics.com/276-4810.html), a microcontroller for educational and competitive robotics.
7
7
8
-
Rust support for this target is not affiliated with VEX Robotics or IFI, and is not derived from nor used with any official VEX SDK.
8
+
Rust support for this target is not affiliated with VEX Robotics or IFI.
9
9
10
10
## Target maintainers
11
11
@@ -29,7 +29,7 @@ This target generates binaries in the ELF format that may uploaded to the brain
29
29
30
30
## Building the target
31
31
32
-
Rust does not ship pre-compiled artifacts for this target. You can use `build-std` feature to build ELF binaries with `std` support.
32
+
Rust does not ship pre-compiled artifacts for this target. You can use the `build-std` feature to build ELF binaries with `std` support.
The recommended way to build artifacts that can be installed and run on V5 Brain is by using the [cargo-v5](https://github.com/vexide/cargo-v5) tool. This tool wraps the `cargo build` command by supplying arguments necessary to build the target, while also providing uploading functionality.
47
+
The recommended way to build artifacts that run on V5 Brain is by using the [cargo-v5](https://github.com/vexide/cargo-v5) tool. This tool wraps the `cargo build` command by supplying arguments necessary to build the target, while also providing functionality for uploading over USB to a V5 Controller or Brain.
48
48
49
-
To install the tool run:
49
+
To install the tool, run:
50
50
51
51
```sh
52
52
cargo install cargo-v5
@@ -70,15 +70,15 @@ To build an uploadable BIN file using the release profile, run:
70
70
cargo v5 build --release
71
71
```
72
72
73
-
Programs can also be directly uploaded to the brain over a USB connection after building:
73
+
Programs can also be directly uploaded to the brain over a USB connection immediately after building:
74
74
75
75
```sh
76
76
cargo v5 upload --release
77
77
```
78
78
79
79
## Testing
80
80
81
-
Binaries built for this target can be run in an emulator (such as [vex-v5-qemu](https://github.com/vexide/vex-v5-qemu)), or uploaded to a device over a USB or bluetooth connection.
81
+
Binaries built for this target can be run in an emulator (such as [vex-v5-qemu](https://github.com/vexide/vex-v5-qemu)), or uploaded to a physical device over a serial (USB) connection.
0 commit comments