From b2e5cccceeea26841600a8636994ab98c65387fc Mon Sep 17 00:00:00 2001 From: Empire Date: Wed, 29 Nov 2023 18:27:15 +0100 Subject: [PATCH] adjusted runner --- rust/.cargo/config.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/.cargo/config.toml b/rust/.cargo/config.toml index 1070354..400d3f0 100644 --- a/rust/.cargo/config.toml +++ b/rust/.cargo/config.toml @@ -3,9 +3,9 @@ target = "xtensa-esp32-espidf" [target.xtensa-esp32-espidf] linker = "ldproxy" -# runner = "espflash --monitor" # Select this runner for espflash v1.x.x -#runner = "espflash flash --monitor" # Select this runner for espflash v2.x.x -runner = "cargo runner" +# runner = "espflash --monitor --baud 921600" # Select this runner for espflash v1.x.x + runner = "espflash flash --monitor --baud 921600 --partition-table partitions.csv" # Select this runner for espflash v2.x.x +# runner = "cargo runner" rustflags = [ "--cfg", "espidf_time64"] # Extending time_t for ESP IDF 5: https://github.com/esp-rs/rust/issues/110 [unstable]