dvcdbg 0.3.0

Lightweight diagnostics toolkit for embedded (no_std, I2C scan, quick tests)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![no_std]

//! # dvcdbg
//!
//! Lightweight diagnostic utilities for embedded Rust.
//! Compatible with `no_std` and multiple HAL backends.

pub mod scanner;

#[macro_use]
pub mod macros;

pub mod compat;
pub mod error;
pub mod explore;
pub mod prelude;