cargo: add esp32s3 as a target, configure espflash to use --no-stub
This commit is contained in:
parent
56443c638c
commit
d3a7f8a3e9
@ -1,16 +1,22 @@
|
||||
[build]
|
||||
target = "xtensa-esp32-espidf"
|
||||
target = "xtensa-esp32s3-espidf"
|
||||
|
||||
[target.xtensa-esp32s3-espidf]
|
||||
linker = "ldproxy"
|
||||
runner = "espflash flash --monitor --no-stub" # Select this runner for espflash v3.x.x
|
||||
rustflags = [ "--cfg", "espidf_time64"] # Extending time_t for ESP IDF 5: https://github.com/esp-rs/rust/issues/110
|
||||
rust-env = {MCU = "esp32s3"}
|
||||
|
||||
[target.xtensa-esp32-espidf]
|
||||
linker = "ldproxy"
|
||||
runner = "espflash flash --monitor" # Select this runner for espflash v3.x.x
|
||||
runner = "espflash flash --monitor --no-stub" # Select this runner for espflash v3.x.x
|
||||
rustflags = [ "--cfg", "espidf_time64"] # Extending time_t for ESP IDF 5: https://github.com/esp-rs/rust/issues/110
|
||||
rust-env = {MCU = "esp32"}
|
||||
|
||||
[unstable]
|
||||
build-std = ["std", "panic_abort"]
|
||||
|
||||
[env]
|
||||
MCU="esp32"
|
||||
# Note: this variable is not used by the pio builder (`cargo build --features pio`)
|
||||
ESP_IDF_VERSION = "v5.2.2"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user