pub enum PowerLevel {
High = 0,
Medium = 1,
Low = 2,
ExtraLow = 3,
}Expand description
Transmit power level.
Maps to the power field in the PC, FO, and ME commands.
The D75 firmware RE confirms 4 levels: Hi (0), Mid (1), Lo (2), EL (3).
Per User Manual Chapter 5 and Chapter 28: power output with external DC 13.8 V or battery 7.4 V:
| Level | Output | Current (DC IN) | Current (Batt) |
|---|---|---|---|
| High | 5 W | 1.4 A | 2.0 A |
| Medium | 2 W | 0.9 A | 1.3 A |
| Low | 0.5 W | 0.6 A | 0.8 A |
| EL | 0.05 W | 0.4 A | 0.5 A |
Power settings can be programmed independently for Band A and Band B. The optional KBP-9 alkaline battery case supports Low power only. Power level cannot be changed while transmitting.
Variants§
High = 0
High power — 5 W (index 0).
Medium = 1
Medium power — 2 W (index 1).
Low = 2
Low power — 0.5 W (index 2).
ExtraLow = 3
Extra-low power — 50 mW (index 3). D75-specific; not present on the TH-D74.
Implementations§
Trait Implementations§
Source§impl Clone for PowerLevel
impl Clone for PowerLevel
Source§fn clone(&self) -> PowerLevel
fn clone(&self) -> PowerLevel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PowerLevel
impl Debug for PowerLevel
Source§impl Display for PowerLevel
impl Display for PowerLevel
Source§impl From<PowerLevel> for u8
impl From<PowerLevel> for u8
Source§fn from(level: PowerLevel) -> Self
fn from(level: PowerLevel) -> Self
Converts to this type from the input type.
Source§impl Hash for PowerLevel
impl Hash for PowerLevel
Source§impl PartialEq for PowerLevel
impl PartialEq for PowerLevel
Source§impl TryFrom<u8> for PowerLevel
impl TryFrom<u8> for PowerLevel
impl Copy for PowerLevel
impl Eq for PowerLevel
impl StructuralPartialEq for PowerLevel
Auto Trait Implementations§
impl Freeze for PowerLevel
impl RefUnwindSafe for PowerLevel
impl Send for PowerLevel
impl Sync for PowerLevel
impl Unpin for PowerLevel
impl UnwindSafe for PowerLevel
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