diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 1bb6798..07be57d 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -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) diff --git a/src/blinky/index.md b/src/blinky/index.md index 5c42f55..b55b417 100644 --- a/src/blinky/index.md +++ b/src/blinky/index.md @@ -9,7 +9,7 @@ The onboard LED of the Pico is connected to GPIO pin 25 (based on the datasheet) pico2 ## 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) diff --git a/src/blinky/rp-rs.md b/src/blinky/rp-hal.md similarity index 99% rename from src/blinky/rp-rs.md rename to src/blinky/rp-hal.md index 3bfb5a8..42cb2e8 100644 --- a/src/blinky/rp-rs.md +++ b/src/blinky/rp-hal.md @@ -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): diff --git a/src/concepts/approaches.md b/src/concepts/approaches.md index 754a389..dac8622 100644 --- a/src/concepts/approaches.md +++ b/src/concepts/approaches.md @@ -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.