pub struct CwConfig {
pub break_in: bool,
pub delay_time: CwDelay,
pub pitch_frequency: CwPitch,
pub cw_on_fm: bool,
}Expand description
CW (Morse code) operating configuration.
Controls break-in timing, sidetone pitch, and the CW-on-FM feature that allows sending CW tones over an FM carrier.
Fields§
§break_in: boolEnable break-in (receive between transmitted CW elements).
delay_time: CwDelayBreak-in delay time (time to hold TX after last element).
pitch_frequency: CwPitchCW sidetone pitch frequency.
cw_on_fm: boolEnable CW tone generation on FM mode.
Trait Implementations§
impl Eq for CwConfig
impl StructuralPartialEq for CwConfig
Auto Trait Implementations§
impl Freeze for CwConfig
impl RefUnwindSafe for CwConfig
impl Send for CwConfig
impl Sync for CwConfig
impl Unpin for CwConfig
impl UnwindSafe for CwConfig
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