diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-01-31 20:49:05 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-01-31 20:49:05 +0100 |
commit | c21be14dd5cb7b8aa338c3eecd87fc996e1f5430 (patch) | |
tree | 2229a6333549fe2aa4fce3901ed5eee56f3c7c4c /src/fig/FIGCarousel.cpp | |
parent | 45221a53851dd7ed70a8595d4a691b6e294d4a04 (diff) | |
download | dabmux-c21be14dd5cb7b8aa338c3eecd87fc996e1f5430.tar.gz dabmux-c21be14dd5cb7b8aa338c3eecd87fc996e1f5430.tar.bz2 dabmux-c21be14dd5cb7b8aa338c3eecd87fc996e1f5430.zip |
Remove requirement that MCI be only in FIB0
Diffstat (limited to 'src/fig/FIGCarousel.cpp')
-rw-r--r-- | src/fig/FIGCarousel.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/fig/FIGCarousel.cpp b/src/fig/FIGCarousel.cpp index 5e1e82f..ec5855f 100644 --- a/src/fig/FIGCarousel.cpp +++ b/src/fig/FIGCarousel.cpp @@ -85,14 +85,13 @@ FIGCarousel::FIGCarousel(std::shared_ptr<dabEnsemble> ensemble) : * and pushed for support for receivers that only could * decode FIB0. * - * If repetition rate cannot be maintained with this allocation, - * we should drop the requirement and allocate all FIGs except 0/0 - * to FIB_ANY + * In order to alleviate repetition rate issues, + * this requirement has been dropped. */ load_and_allocate(m_fig0_0, FIBAllocation::FIB0); - load_and_allocate(m_fig0_1, FIBAllocation::FIB0); - load_and_allocate(m_fig0_2, FIBAllocation::FIB0); - load_and_allocate(m_fig0_3, FIBAllocation::FIB0); + load_and_allocate(m_fig0_1, FIBAllocation::FIB_ANY); + load_and_allocate(m_fig0_2, FIBAllocation::FIB_ANY); + load_and_allocate(m_fig0_3, FIBAllocation::FIB_ANY); load_and_allocate(m_fig0_17, FIBAllocation::FIB_ANY); load_and_allocate(m_fig0_8, FIBAllocation::FIB_ANY); |