removed comments
All checks were successful
Build on RHEL9 / build (push) Successful in 3m43s
Build on RHEL8 / build (push) Successful in 4m41s

This commit is contained in:
froejdh_e
2026-01-28 16:43:43 +01:00
parent 8a0191e3f6
commit c500891eb5

View File

@@ -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):