summaryrefslogtreecommitdiff
path: root/controller/fw/tools/dsss_demod_test.c
diff options
context:
space:
mode:
authorjaseg <git-bigdata-wsl-arch@jaseg.de>2020-03-09 22:10:46 +0100
committerjaseg <git-bigdata-wsl-arch@jaseg.de>2020-03-09 22:10:46 +0100
commit6880468862a498d359a0a6ed4bd9dd116a478fa9 (patch)
tree7534be5aea9b81eaac8f8d37ee2808ba628e6c63 /controller/fw/tools/dsss_demod_test.c
parentb0a523248766c1e001ea0f5d2e40c23b3178e629 (diff)
downloadmaster-thesis-6880468862a498d359a0a6ed4bd9dd116a478fa9.tar.gz
master-thesis-6880468862a498d359a0a6ed4bd9dd116a478fa9.tar.bz2
master-thesis-6880468862a498d359a0a6ed4bd9dd116a478fa9.zip
WIP cryptographic design
Diffstat (limited to 'controller/fw/tools/dsss_demod_test.c')
-rw-r--r--controller/fw/tools/dsss_demod_test.c2
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 d09ce87..64fd889 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[TRANSMISSION_SYMBOLS]) {
+void handle_dsss_received(uint8_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));