pub enum PALevel {
Min = 0,
Low = 2,
High = 4,
Max = 6,
}
Expand description
Different RF power levels. The higher the level the bigger range, but the more the current consumption.
Defaults to Min.
Variants§
Min = 0
-18 dBm, 7 mA current consumption.
Low = 2
-12 dBm, 7.5 mA current consumption.
High = 4
-6 dBm, 9.0 mA current consumption.
Max = 6
-0 dBm, 11.3 mA current consumption.
Trait Implementations§
impl Copy for PALevel
Auto Trait Implementations§
impl Freeze for PALevel
impl RefUnwindSafe for PALevel
impl Send for PALevel
impl Sync for PALevel
impl Unpin for PALevel
impl UnwindSafe for PALevel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more