#[non_exhaustive]pub enum Chip {
Esp32,
Esp32S2,
Esp32S3,
Esp32C3,
Esp32C5,
Esp32C6,
Esp32C61,
Esp32H2,
Esp32P4,
}Expand description
The Espressif part the firmware runs on.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Esp32
ESP32 (Xtensa LX6, dual core).
Esp32S2
ESP32-S2 (Xtensa LX7, single core).
Esp32S3
ESP32-S3 (Xtensa LX7, dual core, PIE SIMD).
Esp32C3
ESP32-C3 (RISC-V).
Esp32C5
ESP32-C5 (RISC-V, dual-band Wi-Fi).
Esp32C6
ESP32-C6 (RISC-V, Wi-Fi 6, 802.15.4).
Esp32C61
ESP32-C61 (RISC-V).
Esp32H2
ESP32-H2 (RISC-V, 802.15.4 only).
Esp32P4
ESP32-P4 (RISC-V dual core, PIE SIMD, hardware JPEG/H.264, no radio).
Implementations§
Trait Implementations§
impl Copy for Chip
impl Eq for Chip
impl StructuralPartialEq for Chip
Auto Trait Implementations§
impl Freeze for Chip
impl RefUnwindSafe for Chip
impl Send for Chip
impl Sync for Chip
impl Unpin for Chip
impl UnsafeUnpin for Chip
impl UnwindSafe for Chip
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more