Skip to content

Commit

Permalink
doc: Update readmes to use the new repo's name
Browse files Browse the repository at this point in the history
  • Loading branch information
ithinuel committed Feb 16, 2023
1 parent 6c7e728 commit 456d650
Show file tree
Hide file tree
Showing 21 changed files with 104 additions and 104 deletions.
10 changes: 5 additions & 5 deletions boards/adafruit-feather-rp2040/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ devices. See the [examples](./examples) folder for more details.

### General Instructions

To compile an example, clone the _rp-hal_ repository and run:
To compile an example, clone the _rp-hal-boards_ repository and run:

```console
rp-hal/boards/adafruit-feather-rp2040 $ cargo build --release --example <name>
rp-hal-boards/boards/adafruit-feather-rp2040 $ cargo build --release --example <name>
```

You will get an ELF file called
`./target/thumbv6m-none-eabi/release/examples/<name>`, where the `target`
folder is located at the top of the _rp-hal_ repository checkout. Normally
folder is located at the top of the _rp-hal-boards_ repository checkout. Normally
you would also need to specify `--target=thumbv6m-none-eabi` but when
building examples from this git repository, that is set as the default.

Expand All @@ -44,7 +44,7 @@ USB drive exported by the RP2040 bootloader, simply boot your board into
bootloader mode and run:

```console
rp-hal/boards/adafruit-feather-rp2040 $ cargo run --release --example <name>
rp-hal-boards/boards/adafruit-feather-rp2040 $ cargo run --release --example <name>
```

If you get an error about not being able to find `elf2uf2-rs`, try:
Expand Down Expand Up @@ -74,7 +74,7 @@ The steps are:
3. Make some changes to the code or documentation.
4. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
5. Push to the Feature Branch (`git push origin feature/AmazingFeature`)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal/pulls)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal-boards/pulls)
7. An admin will review the Pull Request and discuss any changes that may be required.
8. Once everyone is happy, the Pull Request can be merged by an admin, and your work is part of our project!

Expand Down
10 changes: 5 additions & 5 deletions boards/adafruit-itsy-bitsy-rp2040/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ devices. See the [examples](./examples) folder for more details.

### General Instructions

To compile an example, clone the _rp-hal_ repository and run:
To compile an example, clone the _rp-hal-boards_ repository and run:

```console
rp-hal/boards/adafruit-itsy-bitsy-rp2040 $ cargo build --release --example <name>
rp-hal-boards/boards/adafruit-itsy-bitsy-rp2040 $ cargo build --release --example <name>
```

You will get an ELF file called
`./target/thumbv6m-none-eabi/release/examples/<name>`, where the `target`
folder is located at the top of the _rp-hal_ repository checkout. Normally
folder is located at the top of the _rp-hal-boards_ repository checkout. Normally
you would also need to specify `--target=thumbv6m-none-eabi` but when
building examples from this git repository, that is set as the default.

Expand All @@ -44,7 +44,7 @@ USB drive exported by the RP2040 bootloader, simply boot your board into
bootloader mode and run:

```console
rp-hal/boards/adafruit-itsy-bitsy-rp2040 $ cargo run --release --example <name>
rp-hal-boards/boards/adafruit-itsy-bitsy-rp2040 $ cargo run --release --example <name>
```

If you get an error about not being able to find `elf2uf2-rs`, try:
Expand Down Expand Up @@ -74,7 +74,7 @@ The steps are:
3. Make some changes to the code or documentation.
4. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
5. Push to the Feature Branch (`git push origin feature/AmazingFeature`)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal/pulls)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal-boards/pulls)
7. An admin will review the Pull Request and discuss any changes that may be required.
8. Once everyone is happy, the Pull Request can be merged by an admin, and your work is part of our project!

Expand Down
10 changes: 5 additions & 5 deletions boards/adafruit-kb2040/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ devices. See the [examples](./examples) folder for more details.

### General Instructions

To compile an example, clone the _rp-hal_ repository and run:
To compile an example, clone the _rp-hal-boards_ repository and run:

```console
rp-hal/boards/adafruit-kb2040 $ cargo build --release --example <name>
rp-hal-boards/boards/adafruit-kb2040 $ cargo build --release --example <name>
```

You will get an ELF file called
`./target/thumbv6m-none-eabi/release/examples/<name>`, where the `target`
folder is located at the top of the _rp-hal_ repository checkout. Normally
folder is located at the top of the _rp-hal-boards_ repository checkout. Normally
you would also need to specify `--target=thumbv6m-none-eabi` but when
building examples from this git repository, that is set as the default.

Expand All @@ -44,7 +44,7 @@ USB drive exported by the RP2040 bootloader, simply boot your board into
bootloader mode and run:

```console
rp-hal/boards/adafruit-kb2040$ cargo run --release --example <name>
rp-hal-boards/boards/adafruit-kb2040$ cargo run --release --example <name>
```

If you get an error about not being able to find `elf2uf2-rs`, try:
Expand All @@ -70,7 +70,7 @@ The steps are:
3. Make some changes to the code or documentation.
4. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
5. Push to the Feature Branch (`git push origin feature/AmazingFeature`)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal/pulls)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal-boards/pulls)
7. An admin will review the Pull Request and discuss any changes that may be required.
8. Once everyone is happy, the Pull Request can be merged by an admin, and your work is part of our project!

Expand Down
10 changes: 5 additions & 5 deletions boards/adafruit-macropad/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ devices. See the [examples](./examples) folder for more details.

### General Instructions

To compile an example, clone the _rp-hal_ repository and run:
To compile an example, clone the _rp-hal-boards_ repository and run:

```console
rp-hal/boards/adafruit-macropad $ cargo build --release --example <name>
rp-hal-boards/boards/adafruit-macropad $ cargo build --release --example <name>
```

You will get an ELF file called
`./target/thumbv6m-none-eabi/release/examples/<name>`, where the `target`
folder is located at the top of the _rp-hal_ repository checkout. Normally
folder is located at the top of the _rp-hal-boards_ repository checkout. Normally
you would also need to specify `--target=thumbv6m-none-eabi` but when
building examples from this git repository, that is set as the default.

Expand All @@ -44,7 +44,7 @@ USB drive exported by the RP2040 bootloader, simply boot your board into
bootloader mode and run:

```console
rp-hal/boards/adafruit-macropad $ cargo run --release --example <name>
rp-hal-boards/boards/adafruit-macropad $ cargo run --release --example <name>
```

If you get an error about not being able to find `elf2uf2-rs`, try:
Expand All @@ -66,7 +66,7 @@ The steps are:
3. Make some changes to the code or documentation.
4. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
5. Push to the Feature Branch (`git push origin feature/AmazingFeature`)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal/pulls)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal-boards/pulls)
7. An admin will review the Pull Request and discuss any changes that may be required.
8. Once everyone is happy, the Pull Request can be merged by an admin, and your work is part of our project!

Expand Down
10 changes: 5 additions & 5 deletions boards/adafruit-qt-py-rp2040/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ devices. See the [examples](./examples) folder for more details.

### General Instructions

To compile an example, clone the _rp-hal_ repository and run:
To compile an example, clone the _rp-hal-boards_ repository and run:

```console
rp-hal/boards/adafruit-qt-py-rp2040 $ cargo build --release --example <name>
rp-hal-boards/boards/adafruit-qt-py-rp2040 $ cargo build --release --example <name>
```

You will get an ELF file called
`./target/thumbv6m-none-eabi/release/examples/<name>`, where the `target`
folder is located at the top of the _rp-hal_ repository checkout. Normally
folder is located at the top of the _rp-hal-boards_ repository checkout. Normally
you would also need to specify `--target=thumbv6m-none-eabi` but when
building examples from this git repository, that is set as the default.

Expand All @@ -44,7 +44,7 @@ USB drive exported by the RP2040 bootloader, simply boot your board into
bootloader mode and run:

```console
rp-hal/boards/adafruit-qt-py-rp2040 $ cargo run --release --example <name>
rp-hal-boards/boards/adafruit-qt-py-rp2040 $ cargo run --release --example <name>
```

If you get an error about not being able to find `elf2uf2-rs`, try:
Expand All @@ -70,7 +70,7 @@ The steps are:
3. Make some changes to the code or documentation.
4. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
5. Push to the Feature Branch (`git push origin feature/AmazingFeature`)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal/pulls)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal-boards/pulls)
7. An admin will review the Pull Request and discuss any changes that may be required.
8. Once everyone is happy, the Pull Request can be merged by an admin, and your work is part of our project!

Expand Down
10 changes: 5 additions & 5 deletions boards/adafruit-trinkey-qt2040/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ devices. See the [examples](./examples) folder for more details.

### General Instructions

To compile an example, clone the _rp-hal_ repository and run:
To compile an example, clone the _rp-hal-boards_ repository and run:

```console
rp-hal/boards/adafruit-trinkey-qt2040 $ cargo build --release --example <name>
rp-hal-boards/boards/adafruit-trinkey-qt2040 $ cargo build --release --example <name>
```

You will get an ELF file called
`./target/thumbv6m-none-eabi/release/examples/<name>`, where the `target`
folder is located at the top of the _rp-hal_ repository checkout. Normally
folder is located at the top of the _rp-hal-boards_ repository checkout. Normally
you would also need to specify `--target=thumbv6m-none-eabi` but when
building examples from this git repository, that is set as the default.

Expand All @@ -43,7 +43,7 @@ USB drive exported by the RP2040 bootloader, simply boot your board into
bootloader mode and run:

```console
rp-hal/boards/adafruit-trinkey-qt2040 $ cargo run --release --example <name>
rp-hal-boards/boards/adafruit-trinkey-qt2040 $ cargo run --release --example <name>
```

If you get an error about not being able to find `elf2uf2-rs`, try:
Expand All @@ -69,7 +69,7 @@ The steps are:
3. Make some changes to the code or documentation.
4. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
5. Push to the Feature Branch (`git push origin feature/AmazingFeature`)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal/pulls)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal-boards/pulls)
7. An admin will review the Pull Request and discuss any changes that may be required.
8. Once everyone is happy, the Pull Request can be merged by an admin, and your work is part of our project!

Expand Down
10 changes: 5 additions & 5 deletions boards/arduino_nano_connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ devices. See the [examples](./examples) folder for more details.

### General Instructions

To compile an example, clone the _rp-hal_ repository and run:
To compile an example, clone the _rp-hal-boards_ repository and run:

```console
rp-hal/boards/arduino_nano_connect $ cargo build --release --example <name>
rp-hal-boards/boards/arduino_nano_connect $ cargo build --release --example <name>
```

You will get an ELF file called
`./target/thumbv6m-none-eabi/release/examples/<name>`, where the `target`
folder is located at the top of the _rp-hal_ repository checkout. Normally
folder is located at the top of the _rp-hal-boards_ repository checkout. Normally
you would also need to specify `--target=thumbv6m-none-eabi` but when
building examples from this git repository, that is set as the default.

Expand All @@ -46,7 +46,7 @@ USB drive exported by the RP2040 bootloader, simply boot your board into
bootloader mode and run:

```console
rp-hal/boards/arduino_nano_connect $ cargo run --release --example <name>
rp-hal-boards/boards/arduino_nano_connect $ cargo run --release --example <name>
```

If you get an error about not being able to find `elf2uf2-rs`, try:
Expand Down Expand Up @@ -74,7 +74,7 @@ The steps are:
3. Make some changes to the code or documentation.
4. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
5. Push to the Feature Branch (`git push origin feature/AmazingFeature`)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal/pulls)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal-boards/pulls)
7. An admin will review the Pull Request and discuss any changes that may be required.
8. Once everyone is happy, the Pull Request can be merged by an admin, and your work is part of our project!

Expand Down
10 changes: 5 additions & 5 deletions boards/pimoroni-badger2040/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ devices and configure common clocks. See the [examples](./examples) folder for m

### General Instructions

To compile an example, clone the _rp-hal_ repository and run:
To compile an example, clone the _rp-hal-boards_ repository and run:

```console
rp-hal/boards/pimoroni-badger2040 $ cargo build --release --example <name>
rp-hal-boards/boards/pimoroni-badger2040 $ cargo build --release --example <name>
```

You will get an ELF file called
`./target/thumbv6m-none-eabi/release/examples/<name>`, where the `target`
folder is located at the top of the _rp-hal_ repository checkout. Normally
folder is located at the top of the _rp-hal-boards_ repository checkout. Normally
you would also need to specify `--target=thumbv6m-none-eabi` but when
building examples from this git repository, that is set as the default.

Expand All @@ -45,7 +45,7 @@ USB drive exported by the RP2040 bootloader, simply boot your board into
bootloader mode and run:

```console
rp-hal/boards/pimoroni-badger2040 $ cargo run --release --example <name>
rp-hal-boards/boards/pimoroni-badger2040 $ cargo run --release --example <name>
```

If you get an error about not being able to find `elf2uf2-rs`, try:
Expand All @@ -72,7 +72,7 @@ The steps are:
3. Make some changes to the code or documentation.
4. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
5. Push to the Feature Branch (`git push origin feature/AmazingFeature`)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal/pulls)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal-boards/pulls)
7. An admin will review the Pull Request and discuss any changes that may be required.
8. Once everyone is happy, the Pull Request can be merged by an admin, and your work is part of our project!

Expand Down
10 changes: 5 additions & 5 deletions boards/pimoroni-pico-explorer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ devices. See the [examples](./examples) folder for more details.

### General Instructions

To compile an example, clone the _rp-hal_ repository and run:
To compile an example, clone the _rp-hal-boards_ repository and run:

```console
rp-hal/boards/pimoroni-pico-explorer $ cargo build --release --example <name>
rp-hal-boards/boards/pimoroni-pico-explorer $ cargo build --release --example <name>
```

You will get an ELF file called
`./target/thumbv6m-none-eabi/release/examples/<name>`, where the `target`
folder is located at the top of the _rp-hal_ repository checkout. Normally
folder is located at the top of the _rp-hal-boards_ repository checkout. Normally
you would also need to specify `--target=thumbv6m-none-eabi` but when
building examples from this git repository, that is set as the default.

Expand All @@ -45,7 +45,7 @@ USB drive exported by the RP2040 bootloader, simply boot your board into
bootloader mode and run:

```console
rp-hal/boards/pimoroni-pico-explorer $ cargo run --release --example <name>
rp-hal-boards/boards/pimoroni-pico-explorer $ cargo run --release --example <name>
```

If you get an error about not being able to find `elf2uf2-rs`, try:
Expand All @@ -71,7 +71,7 @@ The steps are:
3. Make some changes to the code or documentation.
4. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
5. Push to the Feature Branch (`git push origin feature/AmazingFeature`)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal/pulls)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal-boards/pulls)
7. An admin will review the Pull Request and discuss any changes that may be required.
8. Once everyone is happy, the Pull Request can be merged by an admin, and your work is part of our project!

Expand Down
10 changes: 5 additions & 5 deletions boards/pimoroni-pico-lipo-16mb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ devices. See the [examples](./examples) folder for more details.

### General Instructions

To compile an example, clone the _rp-hal_ repository and run:
To compile an example, clone the _rp-hal-boards_ repository and run:

```console
rp-hal/boards/pimoroni-pico-lipo-16mb $ cargo build --release --example <name>
rp-hal-boards/boards/pimoroni-pico-lipo-16mb $ cargo build --release --example <name>
```

You will get an ELF file called
`./target/thumbv6m-none-eabi/release/examples/<name>`, where the `target`
folder is located at the top of the _rp-hal_ repository checkout. Normally
folder is located at the top of the _rp-hal-boards_ repository checkout. Normally
you would also need to specify `--target=thumbv6m-none-eabi` but when
building examples from this git repository, that is set as the default.

Expand All @@ -46,7 +46,7 @@ USB drive exported by the RP2040 bootloader, simply boot your board into
bootloader mode and run:

```console
rp-hal/boards/pimoroni-pico-lipo-16mb $ cargo run --release --example <name>
rp-hal-boards/boards/pimoroni-pico-lipo-16mb $ cargo run --release --example <name>
```

If you get an error about not being able to find `elf2uf2-rs`, try:
Expand All @@ -72,7 +72,7 @@ The steps are:
3. Make some changes to the code or documentation.
4. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
5. Push to the Feature Branch (`git push origin feature/AmazingFeature`)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal/pulls)
6. Create a [New Pull Request](https://github.com/rp-rs/rp-hal-boards/pulls)
7. An admin will review the Pull Request and discuss any changes that may be required.
8. Once everyone is happy, the Pull Request can be merged by an admin, and your work is part of our project!

Expand Down
Loading

0 comments on commit 456d650

Please sign in to comment.