tps55288 0.2.0

Rust driver skeleton for TI TPS55288 buck-boost converter (I2C)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! TPS55288 Rust Driver (skeleton)
//!
//! This crate is a placeholder for the TPS55288 buck-boost converter driver.
//! Implementation will follow the `sc8815-rs` structure with no-std, optional async,
//! defmt support, and type-safe register access.

#![no_std]

pub mod data_types;
pub mod driver;
pub mod error;
pub mod registers;

pub use driver::Tps55288;
pub use error::Error;
pub use registers::DEFAULT_I2C_ADDRESS;