diff options
author | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-05-04 21:31:31 +0200 |
---|---|---|
committer | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-05-04 21:31:31 +0200 |
commit | 9918eb505321183e20357221a4dcf2aa9c1e057c (patch) | |
tree | 41e33e84d51ca2aa558ab1dc248ec5109181d6c8 /controller/fw/src/rscode-config.h | |
parent | 82c1302756d9b8f3d5cfbd4b304411c39651dfa8 (diff) | |
download | master-thesis-9918eb505321183e20357221a4dcf2aa9c1e057c.tar.gz master-thesis-9918eb505321183e20357221a4dcf2aa9c1e057c.tar.bz2 master-thesis-9918eb505321183e20357221a4dcf2aa9c1e057c.zip |
fw: add working reed-solomon encoder/decoder
Diffstat (limited to 'controller/fw/src/rscode-config.h')
-rw-r--r-- | controller/fw/src/rscode-config.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/controller/fw/src/rscode-config.h b/controller/fw/src/rscode-config.h new file mode 100644 index 0000000..922aca9 --- /dev/null +++ b/controller/fw/src/rscode-config.h @@ -0,0 +1,9 @@ +/* Config header for reed-solomon library */ + +#ifndef __RSCODE_CONFIG_H__ +#define __RSCODE_CONFIG_H__ + +#define NPAR 4 +#define NBITS 6 + +#endif /* __RSCODE_CONFIG_H__ */ |