Skip to content

Commit

Permalink
rp-hal
Browse files Browse the repository at this point in the history
  • Loading branch information
ImplFerris committed Oct 22, 2024
1 parent b22f209 commit 6ce9d21
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
- [Approaches](./concepts/approaches.md)

- [Blink LED](./blinky/index.md)
- [With rp-rs](./blinky/rp-rs.md)
- [With RP HAL](./blinky/rp-hal.md)
- [PWM](./blinky/pwm.md)
- [Watchdog](./blinky/watchdog.md)
- [With embassy](./blinky/embassy.md)
- [With Embassy](./blinky/embassy.md)
- [Using External LED](./blinky/external-led.md)
- [Resources](./resources.md)
4 changes: 2 additions & 2 deletions src/blinky/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The onboard LED of the Pico is connected to GPIO pin 25 (based on the datasheet)
<img style="display: block; margin: auto;" alt="pico2" src="../images/pico2-board.png"/>

## Choosing the crate
You can develop using two main approaches: the rp-rs HAL or the Embassy framework.
You can develop using two main approaches: the RP HAL or the Embassy framework.

- [With rp-rs](./rp-rs.md)
- [With RP HAL](./rp-hal.md)
- [With embassy](./embassy.md)
2 changes: 1 addition & 1 deletion src/blinky/rp-rs.md → src/blinky/rp-hal.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Blink LED Program with rp-rs HAL
# Blink LED Program with RP HAL

This example code is taken from rp235x-hal repo (It also includes additional examples beyond just the blink examples):

Expand Down
4 changes: 2 additions & 2 deletions src/concepts/approaches.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Approaches for Raspberry Pi Pico 2


### 1. rp-rs
[**rp-rs**](https://github.com/rp-rs/rp-hal) is a Rust Embedded Hardware Abstraction Layer (HAL) designed specifically for the RP series microcontrollers.
### 1. RP HAL
[**rp-hal**](https://github.com/rp-rs/rp-hal) is a Rust Embedded Hardware Abstraction Layer (HAL) designed specifically for the RP series microcontrollers.

### 2. Embassy
[**Embassy**](https://github.com/embassy-rs/embassy) is a modern embedded framework that utilizes Rust and asynchronous programming.
Expand Down

0 comments on commit 6ce9d21

Please sign in to comment.