Naming restructure

oop-decoder
Karlis Goba 2018-11-02 15:43:10 +02:00
rodzic 88858f8c1d
commit 0de42ee1bb
7 zmienionych plików z 10 dodań i 10 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
CXXFLAGS = -std=c++14 -I.
LDFLAGS = -lm
gen_ft8: gen_ft8.o ft8/encode.o ft8/pack.o ft8/text.o ft8/pack_77.o ft8/encode_91.o common/wave.o
gen_ft8: gen_ft8.o ft8/encode.o ft8/pack.o ft8/text.o ft8/pack_v2.o ft8/encode_v2.o common/wave.o
$(CXX) $(LDFLAGS) -o $@ $^
.PHONY: run_tests
@ -9,6 +9,5 @@ gen_ft8: gen_ft8.o ft8/encode.o ft8/pack.o ft8/text.o ft8/pack_77.o ft8/encode_9
run_tests: test
@./test
test: test.o ft8/encode.o ft8/pack.o ft8/text.o ft8/pack_77.o ft8/encode_91.o ft8/unpack.o
test: test.o ft8/encode.o ft8/pack.o ft8/text.o ft8/pack_v2.o ft8/encode_v2.o ft8/unpack.o
$(CXX) $(LDFLAGS) -o $@ $^

Wyświetl plik

@ -1,4 +1,4 @@
#include "encode.h"
#include "encode_v2.h"
#include <stdio.h>

Wyświetl plik

@ -1,8 +1,9 @@
#include <string.h>
#include <stdint.h>
#include "pack_v2.h"
#include "text.h"
#include <stdint.h>
#include <string.h>
#include <stdio.h>
namespace ft8_v2 {

Wyświetl plik

@ -6,8 +6,8 @@
#include "common/wave.h"
#include "ft8/pack.h"
#include "ft8/encode.h"
#include "ft8/pack_77.h"
#include "ft8/encode_91.h"
#include "ft8/pack_v2.h"
#include "ft8/encode_v2.h"
// Convert a sequence of symbols (tones) into a sinewave of continuous phase (FSK).

Wyświetl plik

@ -5,9 +5,9 @@
#include "ft8/text.h"
#include "ft8/pack.h"
#include "ft8/pack_77.h"
#include "ft8/pack_v2.h"
#include "ft8/encode.h"
#include "ft8/encode_91.h"
#include "ft8/encode_v2.h"
#include "ft8/unpack.h"
#include "common/debug.h"