We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92031bc commit 0d8ddddCopy full SHA for 0d8dddd
espflash/src/chip/esp32/esp32c3.rs
@@ -54,8 +54,11 @@ impl ChipType for Esp32c3 {
54
const SUPPORTED_IMAGE_FORMATS: &'static [ImageFormatId] =
55
&[ImageFormatId::Bootloader, ImageFormatId::DirectBoot];
56
57
- const SUPPORTED_TARGETS: &'static [&'static str] =
58
- &["riscv32imc-unknown-none-elf", "riscv32imc-esp-espidf"];
+ const SUPPORTED_TARGETS: &'static [&'static str] = &[
+ "riscv32imac-unknown-none-elf",
59
+ "riscv32imc-esp-espidf",
60
+ "riscv32imc-unknown-none-elf",
61
+ ];
62
63
fn chip_features(&self, _connection: &mut Connection) -> Result<Vec<&str>, Error> {
64
Ok(vec!["WiFi"])
0 commit comments