mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-03 07:05:19 +00:00

* Add README, improve documentation for `esp-hal-procmacros` * Improve documentation for `esp-hal-smartled` * Use esp-rs logo for all packages' documentation
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};
|
|
}
|