[][src]Module buspirate::bitbang

Module bigbang contains the API for "binary bit-bang" mode.

This mode cannot be entered directly. Instead, create a BusPirate object (from the root module of this crate) and call to_bitbang on it:

let bp = BusPirate::new();
let bb = bp.to_bitbang()?;

The result of to_bitbang is an instance of BitBang.

Structs

BitBang

BitBang represents a Bus Pirate device in "binary bit-bang" mode.