Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc: add #[doc(inline)] to esp-hal-common re-exports
  • Loading branch information
icedrocket committed Nov 8, 2022
commit b52670a3e9b2c2a00ea6fda593beae06ffe334d7
1 change: 1 addition & 0 deletions esp32-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![no_std]

pub use embedded_hal as ehal;
#[doc(inline)]
pub use esp_hal_common::{
clock,
cpu_control::CpuControl,
Expand Down
1 change: 1 addition & 0 deletions esp32c2-hal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
use core::arch::global_asm;

pub use embedded_hal as ehal;
#[doc(inline)]
pub use esp_hal_common::{
clock,
dma::{self, gdma},
Expand Down
1 change: 1 addition & 0 deletions esp32c3-hal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ use core::arch::{asm, global_asm};
use core::mem::size_of;

pub use embedded_hal as ehal;
#[doc(inline)]
pub use esp_hal_common::{
clock,
dma,
Expand Down
1 change: 1 addition & 0 deletions esp32s2-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![no_std]

pub use embedded_hal as ehal;
#[doc(inline)]
pub use esp_hal_common::{
clock,
dma,
Expand Down
1 change: 1 addition & 0 deletions esp32s3-hal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#![cfg_attr(feature = "direct-boot", feature(asm_experimental_arch))]

pub use embedded_hal as ehal;
#[doc(inline)]
pub use esp_hal_common::{
clock,
cpu_control::CpuControl,
Expand Down