From ea48c1e0f68eaa79743b2e1d39684fcbd635b8a0 Mon Sep 17 00:00:00 2001 From: cmsong-shina Date: Tue, 29 Oct 2024 10:28:45 +0900 Subject: [PATCH 1/3] Fix broken link --- src/overview/using-the-core-library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/overview/using-the-core-library.md b/src/overview/using-the-core-library.md index 7692152..c8b9df3 100644 --- a/src/overview/using-the-core-library.md +++ b/src/overview/using-the-core-library.md @@ -32,7 +32,7 @@ The table below covers the current support for `no_std` at this moment for diffe [esp-wifi]: https://github.com/esp-rs/esp-wifi "Wi-Fi, BLE and ESP-NOW support" [esp-backtrace]: https://github.com/esp-rs/esp-backtrace "Exception and panic handlers" [esp-storage]: https://github.com/esp-rs/esp-storage "Embedded-storage traits to access unencrypted flash memory" -[esp-wifi-current-support]: https://github.com/esp-rs/esp-wifi#current-support +[esp-wifi-current-support]: https://github.com/esp-rs/esp-hal/tree/main/esp-wifi#current-support [esp8266-hal]: https://github.com/esp-rs/esp8266-hal "ESP8266 Hardware abstraction layer" ### Relevant `esp-rs` Crates From 3b8acaf86c708a2ffa81bf71a2f831fde0fab827 Mon Sep 17 00:00:00 2001 From: cmsong-shina Date: Tue, 29 Oct 2024 18:44:34 +0900 Subject: [PATCH 2/3] Fix broken url of using-the-core-library.md --- src/overview/using-the-core-library.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/overview/using-the-core-library.md b/src/overview/using-the-core-library.md index c8b9df3..a4996be 100644 --- a/src/overview/using-the-core-library.md +++ b/src/overview/using-the-core-library.md @@ -28,10 +28,10 @@ The table below covers the current support for `no_std` at this moment for diffe > - ✅ in Wi-Fi/BLE/ESP-NOW means that the target supports, at least, one of the listed technologies. For details, see [Current support][esp-wifi-current-support] table of the esp-wifi repository. > - [ESP8266 HAL][esp8266-hal] is in maintenance mode and no further development will be done for this chip. -[esp-hal]: https://github.com/esp-rs/esp-hal "Hardware abstraction layer" -[esp-wifi]: https://github.com/esp-rs/esp-wifi "Wi-Fi, BLE and ESP-NOW support" -[esp-backtrace]: https://github.com/esp-rs/esp-backtrace "Exception and panic handlers" -[esp-storage]: https://github.com/esp-rs/esp-storage "Embedded-storage traits to access unencrypted flash memory" +[esp-hal]: https://github.com/esp-rs/esp-hal/tree/main/esp-hal "Hardware abstraction layer" +[esp-wifi]: https://github.com/esp-rs/esp-hal/tree/main/esp-wifi "Wi-Fi, BLE and ESP-NOW support" +[esp-backtrace]: https://github.com/esp-rs/esp-hal/tree/main/esp-backtrace "Exception and panic handlers" +[esp-storage]: https://github.com/esp-rs/esp-hal/tree/main/esp-storage "Embedded-storage traits to access unencrypted flash memory" [esp-wifi-current-support]: https://github.com/esp-rs/esp-hal/tree/main/esp-wifi#current-support [esp8266-hal]: https://github.com/esp-rs/esp8266-hal "ESP8266 Hardware abstraction layer" From 84c488d4cd65966d96a655e6dcc0770e5337a93a Mon Sep 17 00:00:00 2001 From: cmsong-shina Date: Wed, 30 Oct 2024 09:12:03 +0900 Subject: [PATCH 3/3] Fix broken url of using-the-core-library.md Fix link of esp-alloc and esp-println. --- src/overview/using-the-core-library.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/overview/using-the-core-library.md b/src/overview/using-the-core-library.md index a4996be..42bf36b 100644 --- a/src/overview/using-the-core-library.md +++ b/src/overview/using-the-core-library.md @@ -55,5 +55,5 @@ The table below covers the current support for `no_std` at this moment for diffe - Custom requirements: bare-metal allows more customization and fine-grained control over the behavior of an application, which can be useful in specialized or non-standard environments. [esp-pacs]: https://github.com/esp-rs/esp-pacs "Peripheral access crates" -[esp-alloc]: https://github.com/esp-rs/esp-alloc "Simple heap allocator" -[esp-println]: https://github.com/esp-rs/esp-println "print!, println!" +[esp-alloc]: https://github.com/esp-rs/esp-hal/tree/main/esp-alloc "Simple heap allocator" +[esp-println]: https://github.com/esp-rs/esp-hal/tree/main/esp-println "print!, println!"