Macro chip

macro_rules! chip {
    () => { ... };
}
Expand description

The name of the chip as &str

ยงExample

use esp_hal::chip;
let chip_name = chip!();
assert_eq!(chip_name, esp32c6)