From 622a41c271791ad5ca79d90ad00f03cdf81f0516 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Mon, 26 Feb 2024 15:51:30 +0100 Subject: [PATCH] docs: Remove esp-hal bootloader section --- src/troubleshooting/espflash.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/troubleshooting/espflash.md b/src/troubleshooting/espflash.md index dab50cd..099507b 100644 --- a/src/troubleshooting/espflash.md +++ b/src/troubleshooting/espflash.md @@ -20,13 +20,3 @@ one. If you want to use `espflash`, you need to specify an appropriate bootloader image using `--bootloader`. You can find the bootloader in `target///build/esp-idf-sys-*/build/bootloader/bootloader.bin` - -### If you are building an `esp-hal` based project - -Make sure your HAL ([ESP32](https://docs.rs/esp32-hal/latest/esp32_hal/), [ESP32-C2](https://docs.rs/esp32c2-hal/latest/esp32c2_hal/)) -is configured to the correct crystal frequency. To do this, you must disable the default features -and enable `xtal-26mhz` (besides the other default features). - -When flashing, you need to specify an appropriate bootloader image using `--bootloader`. Currently, -you will need to build this bootloader using an `esp-idf` based project (Rust or C based should work -equally, we recommend a project set up with [esp-idf-template](https://github.com/esp-rs/esp-idf-template)).