Skip to content

Commit

Permalink
Update the supported targets for ESP32-C6/H2
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebraham committed Jun 7, 2023
1 parent 80ac719 commit 36804b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions espflash/src/targets/esp32c6.rs
Expand Up @@ -113,10 +113,6 @@ impl Target for Esp32c6 {
}

fn supported_build_targets(&self) -> &[&str] {
&[
"riscv32imac-unknown-none-elf",
"riscv32imc-esp-espidf",
"riscv32imc-unknown-none-elf",
]
&["riscv32imac-esp-espidf", "riscv32imac-unknown-none-elf"]
}
}
6 changes: 1 addition & 5 deletions espflash/src/targets/esp32h2.rs
Expand Up @@ -121,10 +121,6 @@ impl Target for Esp32h2 {
}

fn supported_build_targets(&self) -> &[&str] {
&[
"riscv32imac-unknown-none-elf",
"riscv32imc-esp-espidf",
"riscv32imc-unknown-none-elf",
]
&["riscv32imac-esp-espidf", "riscv32imac-unknown-none-elf"]
}
}

0 comments on commit 36804b0

Please sign in to comment.