aboutsummaryrefslogtreecommitdiffstats
path: root/sw
diff options
context:
space:
mode:
Diffstat (limited to 'sw')
-rw-r--r--sw/dart-70/src/state.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/sw/dart-70/src/state.rs b/sw/dart-70/src/state.rs
index 8491cca..87f3bc2 100644
--- a/sw/dart-70/src/state.rs
+++ b/sw/dart-70/src/state.rs
@@ -1,8 +1,9 @@
pub const VHF_BAND_EDGE : u32 = 70_000_000;
pub const VHF_INITIAL_VFO : u32 = 70_300_000;
-pub const BFO_LSB : u32 = 6_000_700 + 1_100;
-pub const BFO_USB : u32 = 6_000_700 - 1_100;
-pub const BFO_CW : u32 = 6_000_700 - 1_100;
+pub const XTAL_FILT_FREQ : u32 = 11_059_200;
+pub const BFO_LSB : u32 = XTAL_FILT_FREQ + 1_100;
+pub const BFO_USB : u32 = XTAL_FILT_FREQ - 1_100;
+pub const BFO_CW : u32 = XTAL_FILT_FREQ - 1_100;
// Defines which parameter is changed by the encoder
#[derive(Clone, Copy, PartialEq, Eq)]