SRSUE: Fix PCAP for CA

This commit is contained in:
Xavier Arteaga 2019-06-14 18:13:05 +02:00 committed by Andre Puschmann
parent 0bb7f590b3
commit 4ec22b8353
1 changed files with 5 additions and 0 deletions

View File

@ -125,6 +125,11 @@ void mac::reconfiguration(const uint32_t& cc_idx, const bool& enable)
while (dl_harq.size() < cc_idx + 1) {
auto dl = dl_harq_entity_ptr(new dl_harq_entity());
dl->init(log_h, &uernti, timers.get(timer_alignment), &demux_unit);
if (pcap) {
dl->start_pcap(pcap);
}
dl_harq.push_back(std::move(dl));
}
}