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]