cc_talk_core 0.0.1

A no-std implementation of the CCtalk protocol.
Documentation
1
2
3
4
5
6
7
8
9
#[repr(u8)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub enum PowerOption {
    Normal = 0,
    LowPower = 1,
    FullPower = 2,
    Shutdown = 3,
}