pub enum VfoMemoryMode {
Vfo = 0,
Memory = 1,
Call = 2,
Weather = 3,
}Expand description
VFO/Memory/Call/Weather operating mode.
Controls which channel selection mode the band is in.
Used by the VM CAT command.
Per User Manual Chapter 5:
- VFO mode (
[VFO]): manually tune to any frequency using the encoder dial, up/down keys, or direct frequency entry via keypad. The default step size varies by band and model (e.g., TH-D75A: 5 kHz on 144 MHz, 20 kHz on 220 MHz, 25 kHz on 430 MHz). - Memory mode (
[MR]): recall one of 1000 stored memory channels (0-999) plus 100 program scan memories and 1 priority channel. - Call mode (
[CALL]): quick-access channel for emergency/group use. Default call channels: TH-D75A 146.520 FM (VHF), 446.000 FM (UHF); TH-D75E 145.500 FM (VHF), 433.500 FM (UHF). - Weather mode: NOAA weather channels (TH-D75A only, 10 channels A1-A10 at 161.650-163.275 MHz).
Variants§
Vfo = 0
VFO mode — frequency entered directly (index 0).
Memory = 1
Memory channel mode — recalls stored channels (index 1).
Call = 2
Call channel mode — quick-access channel (index 2).
Weather = 3
Weather channel mode — NOAA weather frequencies (index 3).
Implementations§
Trait Implementations§
Source§impl Clone for VfoMemoryMode
impl Clone for VfoMemoryMode
Source§fn clone(&self) -> VfoMemoryMode
fn clone(&self) -> VfoMemoryMode
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 VfoMemoryMode
impl Debug for VfoMemoryMode
Source§impl Display for VfoMemoryMode
impl Display for VfoMemoryMode
Source§impl From<VfoMemoryMode> for u8
impl From<VfoMemoryMode> for u8
Source§fn from(mode: VfoMemoryMode) -> Self
fn from(mode: VfoMemoryMode) -> Self
Converts to this type from the input type.
Source§impl Hash for VfoMemoryMode
impl Hash for VfoMemoryMode
Source§impl PartialEq for VfoMemoryMode
impl PartialEq for VfoMemoryMode
Source§impl TryFrom<u8> for VfoMemoryMode
impl TryFrom<u8> for VfoMemoryMode
impl Copy for VfoMemoryMode
impl Eq for VfoMemoryMode
impl StructuralPartialEq for VfoMemoryMode
Auto Trait Implementations§
impl Freeze for VfoMemoryMode
impl RefUnwindSafe for VfoMemoryMode
impl Send for VfoMemoryMode
impl Sync for VfoMemoryMode
impl Unpin for VfoMemoryMode
impl UnwindSafe for VfoMemoryMode
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