Naming restructure
This commit is contained in:
parent
88858f8c1d
commit
0de42ee1bb
7 changed files with 10 additions and 10 deletions
5
Makefile
5
Makefile
|
@ -1,7 +1,7 @@
|
||||||
CXXFLAGS = -std=c++14 -I.
|
CXXFLAGS = -std=c++14 -I.
|
||||||
LDFLAGS = -lm
|
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 $@ $^
|
$(CXX) $(LDFLAGS) -o $@ $^
|
||||||
|
|
||||||
.PHONY: run_tests
|
.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
|
run_tests: test
|
||||||
@./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 $@ $^
|
$(CXX) $(LDFLAGS) -o $@ $^
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "encode.h"
|
#include "encode_v2.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
#include <string.h>
|
#include "pack_v2.h"
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
#include "text.h"
|
#include "text.h"
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
namespace ft8_v2 {
|
namespace ft8_v2 {
|
|
@ -6,8 +6,8 @@
|
||||||
#include "common/wave.h"
|
#include "common/wave.h"
|
||||||
#include "ft8/pack.h"
|
#include "ft8/pack.h"
|
||||||
#include "ft8/encode.h"
|
#include "ft8/encode.h"
|
||||||
#include "ft8/pack_77.h"
|
#include "ft8/pack_v2.h"
|
||||||
#include "ft8/encode_91.h"
|
#include "ft8/encode_v2.h"
|
||||||
|
|
||||||
|
|
||||||
// Convert a sequence of symbols (tones) into a sinewave of continuous phase (FSK).
|
// Convert a sequence of symbols (tones) into a sinewave of continuous phase (FSK).
|
||||||
|
|
4
test.cpp
4
test.cpp
|
@ -5,9 +5,9 @@
|
||||||
|
|
||||||
#include "ft8/text.h"
|
#include "ft8/text.h"
|
||||||
#include "ft8/pack.h"
|
#include "ft8/pack.h"
|
||||||
#include "ft8/pack_77.h"
|
#include "ft8/pack_v2.h"
|
||||||
#include "ft8/encode.h"
|
#include "ft8/encode.h"
|
||||||
#include "ft8/encode_91.h"
|
#include "ft8/encode_v2.h"
|
||||||
#include "ft8/unpack.h"
|
#include "ft8/unpack.h"
|
||||||
|
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
|
|
Loading…
Reference in a new issue