mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	Back out the experimental changes of r7709.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7710 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
		
							parent
							
								
									8a49a801c3
								
							
						
					
					
						commit
						920790e671
					
				@ -2165,6 +2165,7 @@ void MainWindow::read_wav_file (QString const& fname)
 | 
				
			|||||||
          auto n = file.read (reinterpret_cast<char *> (dec_data.d2),
 | 
					          auto n = file.read (reinterpret_cast<char *> (dec_data.d2),
 | 
				
			||||||
                            std::min (max_bytes, file.size ()));
 | 
					                            std::min (max_bytes, file.size ()));
 | 
				
			||||||
          int frames_read = n / bytes_per_frame;
 | 
					          int frames_read = n / bytes_per_frame;
 | 
				
			||||||
 | 
					//          qDebug() << "a" << max_bytes << n << frames_read << frames_read/12000.0 << m_TRperiod;
 | 
				
			||||||
        // zero unfilled remaining sample space
 | 
					        // zero unfilled remaining sample space
 | 
				
			||||||
          std::memset(&dec_data.d2[frames_read],0,max_bytes - n);
 | 
					          std::memset(&dec_data.d2[frames_read],0,max_bytes - n);
 | 
				
			||||||
          if (11025 == file.format ().sampleRate ()) {
 | 
					          if (11025 == file.format ().sampleRate ()) {
 | 
				
			||||||
@ -2718,6 +2719,7 @@ void MainWindow::pskPost(DecodedText decodedtext)
 | 
				
			|||||||
  Frequency frequency = m_freqNominal + audioFrequency;
 | 
					  Frequency frequency = m_freqNominal + audioFrequency;
 | 
				
			||||||
  pskSetLocal ();
 | 
					  pskSetLocal ();
 | 
				
			||||||
  if(grid_regexp.exactMatch (grid)) {
 | 
					  if(grid_regexp.exactMatch (grid)) {
 | 
				
			||||||
 | 
					    // qDebug() << "To PSKreporter:" << deCall << grid << frequency << msgmode << snr;
 | 
				
			||||||
    psk_Reporter->addRemoteStation(deCall,grid,QString::number(frequency),msgmode,
 | 
					    psk_Reporter->addRemoteStation(deCall,grid,QString::number(frequency),msgmode,
 | 
				
			||||||
           QString::number(snr),QString::number(QDateTime::currentDateTime().toTime_t()));
 | 
					           QString::number(snr),QString::number(QDateTime::currentDateTime().toTime_t()));
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@ -3148,7 +3150,6 @@ void MainWindow::guiUpdate()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
//Once per second:
 | 
					//Once per second:
 | 
				
			||||||
  if(nsec != m_sec0) {
 | 
					  if(nsec != m_sec0) {
 | 
				
			||||||
//    qDebug() << "a" << m_toneSpacing << m_TRperiod << m_bFast9 << m_bFastMode;
 | 
					 | 
				
			||||||
    if(m_freqNominal!=0 and m_freqNominal<50000000 and m_config.enable_VHF_features()) {
 | 
					    if(m_freqNominal!=0 and m_freqNominal<50000000 and m_config.enable_VHF_features()) {
 | 
				
			||||||
      if(!m_bVHFwarned) vhfWarning();
 | 
					      if(!m_bVHFwarned) vhfWarning();
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
@ -4306,8 +4307,7 @@ void MainWindow::on_actionJT9_triggered()
 | 
				
			|||||||
  m_wideGraph->setMode(m_mode);
 | 
					  m_wideGraph->setMode(m_mode);
 | 
				
			||||||
  m_wideGraph->setModeTx(m_modeTx);
 | 
					  m_wideGraph->setModeTx(m_modeTx);
 | 
				
			||||||
  VHF_features_enabled(bVHF);
 | 
					  VHF_features_enabled(bVHF);
 | 
				
			||||||
//  if(m_nSubMode>=4 and bVHF) {
 | 
					  if(m_nSubMode>=4 and bVHF) {
 | 
				
			||||||
  if(m_nSubMode>=2 and bVHF) {
 | 
					 | 
				
			||||||
    ui->cbFast9->setEnabled(true);
 | 
					    ui->cbFast9->setEnabled(true);
 | 
				
			||||||
  } else {
 | 
					  } else {
 | 
				
			||||||
    ui->cbFast9->setEnabled(false);
 | 
					    ui->cbFast9->setEnabled(false);
 | 
				
			||||||
@ -4327,7 +4327,6 @@ void MainWindow::on_actionJT9_triggered()
 | 
				
			|||||||
  } else {
 | 
					  } else {
 | 
				
			||||||
    ui->cbAutoSeq->setChecked(false);
 | 
					    ui->cbAutoSeq->setChecked(false);
 | 
				
			||||||
    m_TRperiod=60;
 | 
					    m_TRperiod=60;
 | 
				
			||||||
    if(m_nSubMode==2) m_TRperiod = ui->sbTR->value();
 | 
					 | 
				
			||||||
    ui->decodedTextLabel->setText("UTC   dB   DT Freq    Message");
 | 
					    ui->decodedTextLabel->setText("UTC   dB   DT Freq    Message");
 | 
				
			||||||
    ui->decodedTextLabel2->setText("UTC   dB   DT Freq    Message");
 | 
					    ui->decodedTextLabel2->setText("UTC   dB   DT Freq    Message");
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@ -4703,6 +4702,7 @@ void MainWindow::fast_config(bool b)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  m_bFastMode=b;
 | 
					  m_bFastMode=b;
 | 
				
			||||||
  ui->TxFreqSpinBox->setEnabled(!b);
 | 
					  ui->TxFreqSpinBox->setEnabled(!b);
 | 
				
			||||||
 | 
					//  ui->sbTR->setVisible(b);
 | 
				
			||||||
  if(b and (m_bFast9 or m_mode=="MSK144" or m_mode=="ISCAT")) {
 | 
					  if(b and (m_bFast9 or m_mode=="MSK144" or m_mode=="ISCAT")) {
 | 
				
			||||||
    m_wideGraph->hide();
 | 
					    m_wideGraph->hide();
 | 
				
			||||||
    m_fastGraph->show();
 | 
					    m_fastGraph->show();
 | 
				
			||||||
@ -5357,7 +5357,6 @@ void MainWindow::transmit (double snr)
 | 
				
			|||||||
      sps=nsps[m_nSubMode-4];
 | 
					      sps=nsps[m_nSubMode-4];
 | 
				
			||||||
      m_toneSpacing=12000.0/sps;
 | 
					      m_toneSpacing=12000.0/sps;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    if(m_nSubMode==2) sps=m_nsps/4;
 | 
					 | 
				
			||||||
    Q_EMIT sendMessage (NUM_JT9_SYMBOLS, sps,
 | 
					    Q_EMIT sendMessage (NUM_JT9_SYMBOLS, sps,
 | 
				
			||||||
                        ui->TxFreqSpinBox->value() - m_XIT, m_toneSpacing,
 | 
					                        ui->TxFreqSpinBox->value() - m_XIT, m_toneSpacing,
 | 
				
			||||||
                        m_soundOutput, m_config.audio_output_channel (),
 | 
					                        m_soundOutput, m_config.audio_output_channel (),
 | 
				
			||||||
@ -5503,6 +5502,7 @@ void MainWindow::pskSetLocal ()
 | 
				
			|||||||
    antenna_description = stations->index (matches.first ().row ()
 | 
					    antenna_description = stations->index (matches.first ().row ()
 | 
				
			||||||
                                           , StationList::description_column).data ().toString ();
 | 
					                                           , StationList::description_column).data ().toString ();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					  // qDebug() << "To PSKreporter: local station details";
 | 
				
			||||||
  psk_Reporter->setLocalStation(m_config.my_callsign (), m_config.my_grid (),
 | 
					  psk_Reporter->setLocalStation(m_config.my_callsign (), m_config.my_grid (),
 | 
				
			||||||
        antenna_description, QString {"WSJT-X v" + version() + " " +
 | 
					        antenna_description, QString {"WSJT-X v" + version() + " " +
 | 
				
			||||||
        m_revision}.simplified ());
 | 
					        m_revision}.simplified ());
 | 
				
			||||||
@ -5633,13 +5633,6 @@ void MainWindow::on_sbSubmode_valueChanged(int n)
 | 
				
			|||||||
      ui->cbFast9->setEnabled(true);
 | 
					      ui->cbFast9->setEnabled(true);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    ui->sbTR->setVisible(m_bFast9);
 | 
					    ui->sbTR->setVisible(m_bFast9);
 | 
				
			||||||
    if(m_nSubMode==2) {
 | 
					 | 
				
			||||||
      ui->cbFast9->setChecked(false);
 | 
					 | 
				
			||||||
      on_cbFast9_clicked(false);
 | 
					 | 
				
			||||||
      ui->cbFast9->setEnabled(false);
 | 
					 | 
				
			||||||
      ui->sbTR->setVisible(true);
 | 
					 | 
				
			||||||
      m_TRperiod=ui->sbTR->value();
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    if(m_bFast9) ui->TxFreqSpinBox->setValue(700);
 | 
					    if(m_bFast9) ui->TxFreqSpinBox->setValue(700);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  if(m_transmitting and m_bFast9 and m_nSubMode>=4) transmit(99.0);
 | 
					  if(m_transmitting and m_bFast9 and m_nSubMode>=4) transmit(99.0);
 | 
				
			||||||
@ -5652,10 +5645,9 @@ void MainWindow::on_cbFast9_clicked(bool b)
 | 
				
			|||||||
    m_bFast9=b;
 | 
					    m_bFast9=b;
 | 
				
			||||||
//    ui->cbAutoSeq->setVisible(b);
 | 
					//    ui->cbAutoSeq->setVisible(b);
 | 
				
			||||||
    on_actionJT9_triggered();
 | 
					    on_actionJT9_triggered();
 | 
				
			||||||
    if(ui->sbSubmode->value()==2) ui->sbTR->setVisible(true);
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if(b or (m_nSubMode==2)) {
 | 
					  if(b) {
 | 
				
			||||||
    m_TRperiod = ui->sbTR->value ();
 | 
					    m_TRperiod = ui->sbTR->value ();
 | 
				
			||||||
  } else {
 | 
					  } else {
 | 
				
			||||||
    m_TRperiod=60;
 | 
					    m_TRperiod=60;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user