* renamed display traits to Draw* * renamed Send to SendBits to differentiate from the standard trait * introduced the Paint trait * changed type of coordinate to u8 instead of usize * use generic constant when performing moodulo operation based on screen size
8 lines
109 B
Rust
8 lines
109 B
Rust
mod thumbv6m;
|
|
|
|
pub trait SendBits {
|
|
fn send_bits(&self, value: u32);
|
|
}
|
|
|
|
pub use thumbv6m::Msb2LsbSender;
|