Commit 43e5234a authored by Marco Buttu's avatar Marco Buttu
Browse files

Changed the min value for the C band local oscillator

Also removed some duplicated lines in the LBand tests.
parent d2c5fe71
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,6 +20,6 @@
	Polarization="L R"
	DefaultLO="5600.0 5600.0"
	FixedLO2="4100.0 4100.0"
	LOMin="5600.0 5600.0"
	LOMin="5500.0 5500.0"
	LOMax="7500.0 7500.0"
/>
+1 −1
Original line number Diff line number Diff line
@@ -20,6 +20,6 @@
	Polarization="L R"
	DefaultLO="5600.0 5600.0"
	FixedLO2="4100.0 4100.0"
	LOMin="5600.0 5600.0"
	LOMin="5500.0 5500.0"
	LOMax="7500.0 7500.0"
/>
+0 −1
Original line number Diff line number Diff line
@@ -65,7 +65,6 @@ CConfiguration const * const CComponentCore::execute() throw (
        throw dummy;
    }
    
    
    m_localOscillatorValue = m_configuration.getDefaultLO()[0];
    m_actualMode="";
    return &m_configuration;
+0 −2
Original line number Diff line number Diff line
@@ -158,8 +158,6 @@ class TestLO(unittest2.TestCase):
        self.lp.setMode('XXL4') # Band 1300:1800
        filter_max = self.get_cdb_values('LowpassFilterMax')
        rf_min = self.get_cdb_values('LBandRFMin')
        filter_max = self.get_cdb_values('LowpassFilterMax')
        rf_min = self.get_cdb_values('LBandRFMin')
        lo = [(rf - filter + 100.0) for (rf, filter) in zip(rf_min, filter_max)]
        self.lp.setLO(lo) # IF (filter_max-100):filter_max -> bandwidth 100MHz
        with self.assertRaisesRegexp(ReceiversErrorsEx, 'outside the low pass'):