cu-sdlogger 1.0.0

Shared SD/eMMC logging utilities for Copper targets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

#[cfg(all(not(feature = "eh1"), feature = "eh02"))]
pub use embedded_sdmmc as sdmmc;
#[cfg(feature = "eh1")]
pub use embedded_sdmmc_eh1 as sdmmc;

mod gpt;
mod logger;

pub use gpt::find_copper_partition;
pub use logger::{EMMCLogger, EMMCSectionStorage, ForceSyncSend};