mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-26 20:00:32 +00:00
10 lines
249 B
Rust
10 lines
249 B
Rust
use std::error::Error;
|
|
|
|
fn main() -> Result<(), Box<dyn Error>> {
|
|
// Define all necessary configuration symbols for the configured device:
|
|
let chip = esp_metadata_generated::Chip::from_cargo_feature()?;
|
|
chip.define_cfgs();
|
|
|
|
Ok(())
|
|
}
|