* Add `esp32h2-hal` package to the VS Code workspace and CI workflow * Add initial (not quite complete) implementation of GPIO/ADC for ESP32-H2
15 lines
356 B
Rust
15 lines
356 B
Rust
#![no_std]
|
|
#![doc(html_logo_url = "https://avatars.githubusercontent.com/u/46717278")]
|
|
|
|
pub use embedded_hal as ehal;
|
|
#[cfg(feature = "embassy")]
|
|
pub use esp_hal_common::embassy;
|
|
pub use esp_hal_common::*;
|
|
|
|
pub use self::gpio::IO;
|
|
|
|
/// Common module for analog functions
|
|
pub mod analog {
|
|
pub use esp_hal_common::analog::{AvailableAnalog, SarAdcExt};
|
|
}
|