diff --git a/pyctbgui/pyctbgui/services/Transceiver.py b/pyctbgui/pyctbgui/services/Transceiver.py index e478587f5..ecaf64282 100644 --- a/pyctbgui/pyctbgui/services/Transceiver.py +++ b/pyctbgui/pyctbgui/services/Transceiver.py @@ -133,10 +133,7 @@ class TransceiverTab(QtWidgets.QWidget): nbitsPerDBit += (8 - (dSamples % 8)) transceiverOffset += nDBitEnabled * (nbitsPerDBit // 8) trans_array = np.array(np.frombuffer(data, offset=transceiverOffset, dtype=np.uint16)) - print(f'{trans_array.shape=}') - # tmp = decoder.decode(trans_array, self.mainWindow.pixel_map) tmp = np.take(trans_array, self.mainWindow.pixel_map) - print(f'{tmp.shape=}') return tmp def processImageData(self, data, dSamples):