5 lines
211 B
Rust
5 lines
211 B
Rust
pub const LED_NCHANS: usize = 8_usize; // Number of channels (strips)
|
|
pub const CHAN_NUM_MASK: u8 = 0b0111_u8; // Mask to get channel number from port address
|
|
|
|
pub type TX_DATA_T = u8; // Type of Tx data buffer
|