diff options
author | Nick Piggott <nick@piggott.eu> | 2022-03-13 17:50:09 +0000 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-03-17 16:54:18 +0100 |
commit | 41ba6c4062ba3e2d8a76f678ab74ebf0394721f4 (patch) | |
tree | bc021f310baf5b5a07b1656bfbed27b642565809 | |
parent | 81a7e32d86df7fe38b2979886e698edbd00b2933 (diff) | |
download | dabmux-41ba6c4062ba3e2d8a76f678ab74ebf0394721f4.tar.gz dabmux-41ba6c4062ba3e2d8a76f678ab74ebf0394721f4.tar.bz2 dabmux-41ba6c4062ba3e2d8a76f678ab74ebf0394721f4.zip |
Corrected the bit order in the data field
-rw-r--r-- | src/fig/FIG0_14.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fig/FIG0_14.cpp b/src/fig/FIG0_14.cpp index fec87d5..72bcfff 100644 --- a/src/fig/FIG0_14.cpp +++ b/src/fig/FIG0_14.cpp @@ -35,8 +35,8 @@ namespace FIC { // See EN 300 401, Clause 6.2.2 for the FIG0_14 description struct FIG0_14_AppInfo { - uint8_t subchId:6; uint8_t fecScheme:2; + uint8_t subchId:6; } PACKED; |