pub struct RepeaterConfig {
pub offset_frequency: u32,
pub auto_offset: bool,
pub tone_burst_1750hz: ToneBurstHold,
}Expand description
FM repeater operating configuration.
Controls the offset frequency, automatic offset selection, and 1750 Hz tone burst behavior for accessing FM repeaters.
Fields§
§offset_frequency: u32Repeater offset frequency in Hz.
The offset is the difference between the repeater’s transmit and receive frequencies. Common values are 600 kHz (2 m band) and 5 MHz (70 cm band).
auto_offset: boolEnable automatic offset selection based on the operating frequency.
When enabled, the radio automatically selects the correct offset direction (positive or negative) and frequency based on the band plan.
tone_burst_1750hz: ToneBurstHold1750 Hz tone burst hold mode.
The 1750 Hz tone burst is used to access repeaters that require a burst tone instead of or in addition to CTCSS/DCS.
Trait Implementations§
Source§impl Clone for RepeaterConfig
impl Clone for RepeaterConfig
Source§fn clone(&self) -> RepeaterConfig
fn clone(&self) -> RepeaterConfig
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 RepeaterConfig
impl Debug for RepeaterConfig
Source§impl Default for RepeaterConfig
impl Default for RepeaterConfig
Source§impl Hash for RepeaterConfig
impl Hash for RepeaterConfig
Source§impl PartialEq for RepeaterConfig
impl PartialEq for RepeaterConfig
impl Eq for RepeaterConfig
impl StructuralPartialEq for RepeaterConfig
Auto Trait Implementations§
impl Freeze for RepeaterConfig
impl RefUnwindSafe for RepeaterConfig
impl Send for RepeaterConfig
impl Sync for RepeaterConfig
impl Unpin for RepeaterConfig
impl UnwindSafe for RepeaterConfig
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