aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNick Piggott <nick@piggott.eu>2022-03-13 17:50:09 +0000
committerMatthias P. Braendli <matthias.braendli@mpb.li>2022-03-17 16:54:18 +0100
commit41ba6c4062ba3e2d8a76f678ab74ebf0394721f4 (patch)
treebc021f310baf5b5a07b1656bfbed27b642565809 /src
parent81a7e32d86df7fe38b2979886e698edbd00b2933 (diff)
downloaddabmux-41ba6c4062ba3e2d8a76f678ab74ebf0394721f4.tar.gz
dabmux-41ba6c4062ba3e2d8a76f678ab74ebf0394721f4.tar.bz2
dabmux-41ba6c4062ba3e2d8a76f678ab74ebf0394721f4.zip
Corrected the bit order in the data field
Diffstat (limited to 'src')
-rw-r--r--src/fig/FIG0_14.cpp2
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;