Skip to content

Commit 632cf4d

Browse files
committed
Clean up README
1 parent e3b1282 commit 632cf4d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ If the board you're developing for uses the nucleo pinout (PG11 and PG13 instead
101101
### Building examples
102102
To build an example, run the following command:
103103
```bash
104-
cargo build --release --example <example> --features <MCU feature>,<additional required features> --target <MCU compilation target>
104+
cargo build --release --example <example> \
105+
--features <MCU feature>,<additional required features> \
106+
--target <MCU compilation target>
105107
```
106108

107109
For example, if we wish to build the `ip` example for an `stm32f429`, we should run the following command:
@@ -138,7 +140,8 @@ cargo run --release --example <example> \
138140
For example, if we wish to run the `rtic-echo` example on an `STM32F107RCT6`, we should run the following command:
139141

140142
```bash
141-
DEFMT_LOG=info PROBE_RUN_CHIP=STM32F107RC cargo run --release --example rtic-echo \
143+
DEFMT_LOG=info PROBE_RUN_CHIP=STM32F107RC \
144+
cargo run --release --example rtic-echo \
142145
--features stm32f107,smoltcp-phy \
143146
--target thumbv7m-none-eabi
144147
```
@@ -147,7 +150,7 @@ Or, if we want to run the `arp` example on a Nucleo-F767ZI with a HSE oscillator
147150

148151
```bash
149152
DEFMT_LOG=info PROBE_RUN_CHIP=STM32F767ZGTx \
150-
STM32_ETH_EXAMPLE_PINS=nucleo STM32_ETH_EXAMPLE_HSE=oscillator \
153+
STM32_ETH_EXAMPLE_PINS=nucleo STM32_ETH_EXAMPLE_HSE=oscillator \
151154
cargo run --release --example arp \
152155
--features stm32f767 \
153156
--target thumbv7em-none-eabihf

0 commit comments

Comments
 (0)