diff options
author | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-04-17 17:59:08 +0200 |
---|---|---|
committer | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-04-17 17:59:08 +0200 |
commit | 87ae7dfcb35d9a55950eecc2116d13d73b2b9ece (patch) | |
tree | 090946c28eb7b9d3028844bf4e0dcc01ddb29664 /controller/fw/tools/dsss_demod_test.c | |
parent | e505627adad7510673f983cd158016342aa1bdfc (diff) | |
download | master-thesis-87ae7dfcb35d9a55950eecc2116d13d73b2b9ece.tar.gz master-thesis-87ae7dfcb35d9a55950eecc2116d13d73b2b9ece.tar.bz2 master-thesis-87ae7dfcb35d9a55950eecc2116d13d73b2b9ece.zip |
fw simulator: WIP
Diffstat (limited to 'controller/fw/tools/dsss_demod_test.c')
-rw-r--r-- | controller/fw/tools/dsss_demod_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controller/fw/tools/dsss_demod_test.c b/controller/fw/tools/dsss_demod_test.c index 7a4ca71..a1e269a 100644 --- a/controller/fw/tools/dsss_demod_test.c +++ b/controller/fw/tools/dsss_demod_test.c @@ -12,7 +12,7 @@ #include "dsss_demod.h" -void handle_dsss_received(uint8_t data[static TRANSMISSION_SYMBOLS]) { +void handle_dsss_received(symbol_t data[static TRANSMISSION_SYMBOLS]) { printf("data sequence received: [ "); for (size_t i=0; i<TRANSMISSION_SYMBOLS; i++) { printf("%+3d", ((data[i]&1) ? 1 : -1) * (data[i]>>1)); |