From f963a4d3bbdca51b4895f8e6c86d8434cf38f28d Mon Sep 17 00:00:00 2001 From: ImplFerris Date: Sun, 22 Dec 2024 18:31:58 +0530 Subject: [PATCH] rp-hal and embassy exercies repo seperation --- src/blinky/external-led.md | 2 +- src/blinky/rp-hal.md | 2 +- src/buzzer/beep.md | 2 +- src/buzzer/play.md | 2 +- src/joystick/adc-values-to-ubs-serial.md | 2 +- src/lcd-display/display-custom-chars.md | 2 +- src/lcd-display/hello-rust.md | 2 +- src/lcd-display/multi-custom-character.md | 2 +- src/oled/ferris.md | 2 +- src/oled/hello-oled.md | 2 +- src/rfid/change-auth-key.md | 2 +- src/rfid/dump-memory.md | 2 +- src/rfid/read-data.md | 2 +- src/rfid/read-uid.md | 2 +- src/rfid/uid-led.md | 2 +- src/rfid/write-data.md | 2 +- src/sdcard/read-sdcard.md | 2 +- src/servo/action.md | 2 +- src/ultrasonic/action.md | 2 +- src/usb-serial/action.md | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/blinky/external-led.md b/src/blinky/external-led.md index ffd788c..919cd92 100644 --- a/src/blinky/external-led.md +++ b/src/blinky/external-led.md @@ -81,7 +81,7 @@ loop { You can clone the blinky project I created and navigate to the `external-led` folder to run this version of the blink program: ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/external-led ``` diff --git a/src/blinky/rp-hal.md b/src/blinky/rp-hal.md index f835429..b3742b9 100644 --- a/src/blinky/rp-hal.md +++ b/src/blinky/rp-hal.md @@ -144,7 +144,7 @@ pub static PICOTOOL_ENTRIES: [hal::binary_info::EntryAddr; 5] = [ You can clone the blinky project I created and navigate to the `rprs-blinky` folder to run this version of the blink program: ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/rprs-blinky ``` diff --git a/src/buzzer/beep.md b/src/buzzer/beep.md index 4efefe9..37dc345 100644 --- a/src/buzzer/beep.md +++ b/src/buzzer/beep.md @@ -48,7 +48,7 @@ loop { You can clone (or refer) project I created and navigate to the `beep` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/beep ``` diff --git a/src/buzzer/play.md b/src/buzzer/play.md index f0e55bd..b914a17 100644 --- a/src/buzzer/play.md +++ b/src/buzzer/play.md @@ -48,7 +48,7 @@ loop { You can clone (or refer) project I created and navigate to the `got-buzzer` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/got-buzzer ``` diff --git a/src/joystick/adc-values-to-ubs-serial.md b/src/joystick/adc-values-to-ubs-serial.md index 01607f7..9f0ac84 100644 --- a/src/joystick/adc-values-to-ubs-serial.md +++ b/src/joystick/adc-values-to-ubs-serial.md @@ -301,7 +301,7 @@ pub static PICOTOOL_ENTRIES: [hal::binary_info::EntryAddr; 5] = [ You can clone (or refer) project I created and navigate to the `joystick-usb` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/joystick-usb/ ``` diff --git a/src/lcd-display/display-custom-chars.md b/src/lcd-display/display-custom-chars.md index 0a086c1..d6a8677 100644 --- a/src/lcd-display/display-custom-chars.md +++ b/src/lcd-display/display-custom-chars.md @@ -37,6 +37,6 @@ Displaying the character is straightforward. You just need to use the CustomChar You can clone (or refer) project I created and navigate to the `lcd-custom` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/lcd-custom/ ``` diff --git a/src/lcd-display/hello-rust.md b/src/lcd-display/hello-rust.md index de19bb8..5b04e63 100644 --- a/src/lcd-display/hello-rust.md +++ b/src/lcd-display/hello-rust.md @@ -74,6 +74,6 @@ lcd.write_str("Hello, Rust!", &mut timer).unwrap(); You can clone (or refer) project I created and navigate to the `lcd-hello` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/lcd-hello/ ``` diff --git a/src/lcd-display/multi-custom-character.md b/src/lcd-display/multi-custom-character.md index 54b24d4..10d3a58 100644 --- a/src/lcd-display/multi-custom-character.md +++ b/src/lcd-display/multi-custom-character.md @@ -62,6 +62,6 @@ lcd.set_cursor(&mut timer, 1, 4) You can clone (or refer) project I created and navigate to the `lcd-custom-multi` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/lcd-custom-multi/ ``` diff --git a/src/oled/ferris.md b/src/oled/ferris.md index 2e6f422..0ebf743 100644 --- a/src/oled/ferris.md +++ b/src/oled/ferris.md @@ -30,7 +30,7 @@ im.draw(&mut display).unwrap(); You can clone (or refer) project I created and navigate to the `ferris-oled` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/ferris-oled ``` diff --git a/src/oled/hello-oled.md b/src/oled/hello-oled.md index e292457..4999f0d 100644 --- a/src/oled/hello-oled.md +++ b/src/oled/hello-oled.md @@ -138,6 +138,6 @@ loop { You can clone (or refer) project I created and navigate to the `hello-oled` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/hello-oled ``` diff --git a/src/rfid/change-auth-key.md b/src/rfid/change-auth-key.md index aa9b966..ba7d6dd 100644 --- a/src/rfid/change-auth-key.md +++ b/src/rfid/change-auth-key.md @@ -129,7 +129,7 @@ There's nothing new in the main loop. All the read and write functions are ones You can clone (or refer) project I created and navigate to the `rfid-change-key` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/rfid-change-key/ ``` diff --git a/src/rfid/dump-memory.md b/src/rfid/dump-memory.md index 8973dec..78c90c1 100644 --- a/src/rfid/dump-memory.md +++ b/src/rfid/dump-memory.md @@ -106,7 +106,7 @@ loop { You can clone (or refer) project I created and navigate to the `rfid-dump` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/rfid-dump/ ``` diff --git a/src/rfid/read-data.md b/src/rfid/read-data.md index 92b4223..0059923 100644 --- a/src/rfid/read-data.md +++ b/src/rfid/read-data.md @@ -63,7 +63,7 @@ The main loop operates similarly to what we covered in the previous chapter. Aft You can clone (or refer) project I created and navigate to the `rfid-read` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/rfid-read/ ``` diff --git a/src/rfid/read-uid.md b/src/rfid/read-uid.md index 75f7fab..38ef601 100644 --- a/src/rfid/read-uid.md +++ b/src/rfid/read-uid.md @@ -125,7 +125,7 @@ loop { You can clone (or refer) project I created and navigate to the `rfid-uid` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/rfid-uid/ ``` diff --git a/src/rfid/uid-led.md b/src/rfid/uid-led.md index 4068322..c9213ab 100644 --- a/src/rfid/uid-led.md +++ b/src/rfid/uid-led.md @@ -30,7 +30,7 @@ loop { You can clone (or refer) project I created and navigate to the `rfid-led` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/rfid-led/ ``` diff --git a/src/rfid/write-data.md b/src/rfid/write-data.md index d898f3b..aab07c0 100644 --- a/src/rfid/write-data.md +++ b/src/rfid/write-data.md @@ -80,7 +80,7 @@ The main loop begins by reading and printing the current content of a specified You can clone (or refer) project I created and navigate to the `rfid-write` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/rfid-write/ ``` diff --git a/src/sdcard/read-sdcard.md b/src/sdcard/read-sdcard.md index 5dca39f..c2c64aa 100644 --- a/src/sdcard/read-sdcard.md +++ b/src/sdcard/read-sdcard.md @@ -341,7 +341,7 @@ pub static PICOTOOL_ENTRIES: [hal::binary_info::EntryAddr; 5] = [ You can clone (or refer) project I created and navigate to the `read-sdcard` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/read-sdcard/ ``` diff --git a/src/servo/action.md b/src/servo/action.md index c30a8c5..8f5a95a 100644 --- a/src/servo/action.md +++ b/src/servo/action.md @@ -134,6 +134,6 @@ fn main() -> ! { You can clone (or refer) project I created and navigate to the `servo` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/servo ``` diff --git a/src/ultrasonic/action.md b/src/ultrasonic/action.md index 25a5e59..a04a73e 100644 --- a/src/ultrasonic/action.md +++ b/src/ultrasonic/action.md @@ -149,7 +149,7 @@ loop { You can clone (or refer) project I created and navigate to the `ultrasonic` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/ultrasonic ``` diff --git a/src/usb-serial/action.md b/src/usb-serial/action.md index f9ecab5..aaacf69 100644 --- a/src/usb-serial/action.md +++ b/src/usb-serial/action.md @@ -202,7 +202,7 @@ pub static PICOTOOL_ENTRIES: [hal::binary_info::EntryAddr; 5] = [ You can clone (or refer) project I created and navigate to the `usb-fun` folder. ```sh -git clone https://github.com/ImplFerris/pico2-projects +git clone https://github.com/ImplFerris/pico2-rp-projects cd pico2-projects/usb-fun/ ```