pub enum DetectOutputMode {
Af = 0,
If = 1,
Detect = 2,
}Expand description
AF/IF/Detect output mode (Menu No. 102).
Controls what signal is output via the USB connector to a PC.
Used by the IO CAT command. Band B single-band mode must be
active to select IF or Detect.
Per User Manual Chapter 12:
- When IF or Detect is selected, Band A is hidden and its audio output stops. Beeps and voice guidance are also suppressed.
- Special PC software is required to process IF or Detect signals.
- KISS mode prevents selecting IF or Detect.
- DV mode prevents selecting Detect.
- For IF 12 kHz output, the demodulation mode can be AM/LSB/USB/CW.
Source: User Manual Chapter 12 “AF/IF/DETECT OUTPUT MODE”.
Variants§
Af = 0
AF output — received audio sound (index 0).
If = 1
IF output — received IF signal of Band B to PC (index 1).
Detect = 2
Detect output — decoded signal of Band B to PC (index 2).
Implementations§
Trait Implementations§
Source§impl Clone for DetectOutputMode
impl Clone for DetectOutputMode
Source§fn clone(&self) -> DetectOutputMode
fn clone(&self) -> DetectOutputMode
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 DetectOutputMode
impl Debug for DetectOutputMode
Source§impl Display for DetectOutputMode
impl Display for DetectOutputMode
Source§impl From<DetectOutputMode> for u8
impl From<DetectOutputMode> for u8
Source§fn from(mode: DetectOutputMode) -> Self
fn from(mode: DetectOutputMode) -> Self
Converts to this type from the input type.
Source§impl Hash for DetectOutputMode
impl Hash for DetectOutputMode
Source§impl PartialEq for DetectOutputMode
impl PartialEq for DetectOutputMode
Source§impl TryFrom<u8> for DetectOutputMode
impl TryFrom<u8> for DetectOutputMode
impl Copy for DetectOutputMode
impl Eq for DetectOutputMode
impl StructuralPartialEq for DetectOutputMode
Auto Trait Implementations§
impl Freeze for DetectOutputMode
impl RefUnwindSafe for DetectOutputMode
impl Send for DetectOutputMode
impl Sync for DetectOutputMode
impl Unpin for DetectOutputMode
impl UnwindSafe for DetectOutputMode
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