esp-hal/esp32p4-hal/examples/hello_world.rs
Jesse Braham e5cd1bd33e
Add initial support for the ESP32-P4 (#1101)
* 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`
2024-01-22 15:28:05 +00:00

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 {}
}