1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-07 08:24:43 -04:00

FT8 demod: unwanted dependencies removal and unpacking reorganization

This commit is contained in:
f4exb
2023-01-11 04:49:16 +01:00
parent 60debc5d83
commit 508da7da9c
8 changed files with 103 additions and 58 deletions
+1 -4
View File
@@ -18,12 +18,12 @@
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <sys/time.h>
#include <assert.h>
#include <math.h>
#include <complex>
#include <string>
#include <algorithm>
#include "util/timeutil.h"
#include "util.h"
@@ -32,9 +32,6 @@ namespace FT8 {
double now()
{
return TimeUtil::nowus() / 1000000.0;
// struct timeval tv;
// gettimeofday(&tv, 0);
// return tv.tv_sec + tv.tv_usec / 1000000.0;
}
//