mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 13:11:20 -05:00 
			
		
		
		
	RTL-SDR: moved input object creation at top of GUI comstructor
This commit is contained in:
		
							parent
							
								
									3ab855c927
								
							
						
					
					
						commit
						934e73f7a7
					
				@ -36,7 +36,10 @@ RTLSDRGui::RTLSDRGui(DeviceSourceAPI *deviceAPI, QWidget* parent) :
 | 
			
		||||
	m_sampleSource(0),
 | 
			
		||||
	m_lastEngineState((DSPDeviceSourceEngine::State)-1)
 | 
			
		||||
{
 | 
			
		||||
	ui->setupUi(this);
 | 
			
		||||
    m_sampleSource = new RTLSDRInput(m_deviceAPI);
 | 
			
		||||
    m_deviceAPI->setSource(m_sampleSource);
 | 
			
		||||
 | 
			
		||||
    ui->setupUi(this);
 | 
			
		||||
	ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::ReverseGold));
 | 
			
		||||
	ui->centerFrequency->setValueRange(7, 24000U, 1900000U);
 | 
			
		||||
 | 
			
		||||
@ -49,9 +52,7 @@ RTLSDRGui::RTLSDRGui(DeviceSourceAPI *deviceAPI, QWidget* parent) :
 | 
			
		||||
 | 
			
		||||
	displaySettings();
 | 
			
		||||
 | 
			
		||||
	m_sampleSource = new RTLSDRInput(m_deviceAPI);
 | 
			
		||||
	connect(m_sampleSource->getOutputMessageQueueToGUI(), SIGNAL(messageEnqueued()), this, SLOT(handleSourceMessages()));
 | 
			
		||||
	m_deviceAPI->setSource(m_sampleSource);
 | 
			
		||||
 | 
			
		||||
    char recFileNameCStr[30];
 | 
			
		||||
    sprintf(recFileNameCStr, "test_%d.sdriq", m_deviceAPI->getDeviceUID());
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user