1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Power amplifier over current protection.
///
/// Used by [`set_pa_ocp`].
///
/// [`set_pa_ocp`]: super::SubGhz::set_pa_ocp
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[repr(u8)]
pub enum Ocp {
    /// Maximum 60mA current for LP PA mode.
    Max60m = 0x18,
    /// Maximum 140mA for HP PA mode.
    Max140m = 0x38,
}