mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-02-15 07:18:42 +01:00
ctb: added command 'rx_dbitreorder' that sets a flag in the receiver to set the reorder flag. By default it is 1. Setting to false means 'do not reorder' and to keep what the board spits out, which is that all signals in a sample are grouped together
This commit is contained in:
@@ -2277,6 +2277,14 @@ void Detector::setRxDbitOffset(int value, Positions pos) {
|
||||
pimpl->Parallel(&Module::setReceiverDbitOffset, pos, value);
|
||||
}
|
||||
|
||||
Result<bool> Detector::getRxDbitReorder(Positions pos) const {
|
||||
return pimpl->Parallel(&Module::getReceiverDbitReorder, pos);
|
||||
}
|
||||
|
||||
void Detector::setRxDbitReorder(bool reorder, Positions pos) {
|
||||
pimpl->Parallel(&Module::setReceiverDbitReorder, pos, reorder);
|
||||
}
|
||||
|
||||
void Detector::setDigitalIODelay(uint64_t pinMask, int delay, Positions pos) {
|
||||
pimpl->Parallel(&Module::setDigitalIODelay, pos, pinMask, delay);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user