pub enum PaLevel {
Min,
Low,
High,
Max,
}
Expand description
Power Amplifier level. The units dBm (decibel-milliwatts or dBmW) represents a logarithmic signal loss.
Variants§
Min
nRF24L01 | Si24R1 with LNA Enabled | Si24R1 with LNA Disabled |
---|---|---|
-18 dBm | -6 dBm | -12 dBm |
Low
nRF24L01 | Si24R1 with LNA Enabled | Si24R1 with LNA Disabled |
---|---|---|
-12 dBm | 0 dBm | -4 dBm |
High
nRF24L01 | Si24R1 with LNA Enabled | Si24R1 with LNA Disabled |
---|---|---|
-6 dBm | 3 dBm | 1 dBm |
Max
nRF24L01 | Si24R1 with LNA Enabled | Si24R1 with LNA Disabled |
---|---|---|
0 dBm | 7 dBm | 4 dBm |
Trait Implementations§
impl Copy for PaLevel
impl StructuralPartialEq 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