This commit is contained in:
maliakal_d 2020-04-24 15:28:41 +02:00
parent bb32b2f653
commit 4f712fcd70

View File

@ -181,8 +181,10 @@ void Implementation::SetupFifoStructure() {
". FifoDepth is now 0."); ". FifoDepth is now 0.");
} }
// set the listener & dataprocessor threads to point to the right fifo // set the listener & dataprocessor threads to point to the right fifo
listener->SetFifo(fifo.get()); if (listener)
dataProcessor->SetFifo(fifo.get()); listener->SetFifo(fifo.get());
if (dataProcessor)
dataProcessor->SetFifo(fifo.get());
if (dataStreamEnable) if (dataStreamEnable)
dataStreamer->SetFifo(fifo.get()); dataStreamer->SetFifo(fifo.get());