pub enum PacketPath {
Off,
Wide1_1,
Wide1_1Wide2_1,
Wide1_1Wide2_2,
User1,
User2,
User3,
}Expand description
Digipeater packet path for APRS transmissions.
The packet path determines which digipeaters relay the station’s packets. Common paths include WIDE1-1,WIDE2-1 for typical VHF APRS operation.
§New-N Paradigm (per Operating Tips §2.6.1)
The TH-D75 defaults to the New-N Paradigm with WIDE1-1 On and Total Hops = 2 (i.e. WIDE1-1,WIDE2-1). When the user configures a total hop count greater than 2, the radio displays a warning because excessive hops congest the APRS network.
Variants§
Off
Off (no digipeater path).
Wide1_1
WIDE1-1 (one hop via fill-in digipeaters).
Wide1_1Wide2_1
WIDE1-1,WIDE2-1 (standard two-hop path).
Wide1_1Wide2_2
WIDE1-1,WIDE2-2 (three-hop path).
User1
Path 1 (user-configurable, stored in MCP memory).
User2
Path 2 (user-configurable, stored in MCP memory).
User3
Path 3 (user-configurable, stored in MCP memory).
Trait Implementations§
Source§impl Clone for PacketPath
impl Clone for PacketPath
Source§fn clone(&self) -> PacketPath
fn clone(&self) -> PacketPath
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 PacketPath
impl Debug for PacketPath
Source§impl Default for PacketPath
impl Default for PacketPath
Source§fn default() -> PacketPath
fn default() -> PacketPath
Returns the “default value” for a type. Read more
Source§impl Hash for PacketPath
impl Hash for PacketPath
Source§impl PartialEq for PacketPath
impl PartialEq for PacketPath
impl Copy for PacketPath
impl Eq for PacketPath
impl StructuralPartialEq for PacketPath
Auto Trait Implementations§
impl Freeze for PacketPath
impl RefUnwindSafe for PacketPath
impl Send for PacketPath
impl Sync for PacketPath
impl Unpin for PacketPath
impl UnwindSafe for PacketPath
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