From 25d8390d68f5b996c3df5200b485ef217cf5793b Mon Sep 17 00:00:00 2001 From: Dominic Fischer <14130965+Dominaezzz@users.noreply.github.com> Date: Thu, 31 Oct 2024 06:43:11 +0000 Subject: [PATCH] Fix typo in migration guide (#2435) --- esp-hal/MIGRATING-0.20.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp-hal/MIGRATING-0.20.md b/esp-hal/MIGRATING-0.20.md index 543cb0318..0064d8a1d 100644 --- a/esp-hal/MIGRATING-0.20.md +++ b/esp-hal/MIGRATING-0.20.md @@ -230,7 +230,7 @@ We've replaced some usage of features with [esp-config](https://docs.rs/esp-conf # feature in Cargo.toml - esp-hal = { version = "0.20", features = ["place-spi-driver-in-ram"] } # key in .cargo/config.toml [env] section -+ ESP_HAL_PLACE_SPI_DRIVER_IN_RAM=true ++ ESP_HAL_PLACE_SPI_DRIVER_IN_RAM="true" ``` ## `Camera` driver now uses `DmaRxBuffer` and moves the driver into the transfer object.