* Add `esp32p4` feature to `esp-hal-procmacros` * Add `esp32p4` feature to `esp-hal-common` * Create the `esp32p4-hal` package * Add ESP32-P4 to CI workflow * Fix a silly typo :) * Update `CHANGELOG.md`
12 lines
162 B
Rust
12 lines
162 B
Rust
#![no_std]
|
|
#![no_main]
|
|
|
|
use esp32p4_hal::prelude::*;
|
|
use esp_backtrace as _;
|
|
|
|
#[entry]
|
|
fn main() -> ! {
|
|
esp_println::println!("Hello, world!");
|
|
loop {}
|
|
}
|