From bf11d66f6040e008f6d7986e2b93338e2648380a Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Thu, 26 Jul 2018 20:51:02 -0400 Subject: [PATCH] Dont reset the beacon at a 1 minute interval --- mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index baccfed..d497e8e 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -5799,7 +5799,7 @@ bool MainWindow::prepareNextMessageFrame() if(ui->beaconButton->isChecked()){ // bump beacon - scheduleBacon(true); + scheduleBacon(false); } return true; @@ -5926,7 +5926,7 @@ void MainWindow::prepareBacon(){ m_lastTxTime.secsTo(QDateTime::currentDateTimeUtc()) < 30 ){ if(ui->beaconButton->isChecked()){ - scheduleBacon(true); + scheduleBacon(false); } return; } @@ -5968,7 +5968,7 @@ void MainWindow::prepareBacon(){ ui->startTxButton->setChecked(true); - scheduleBacon(); + scheduleBacon(false); }