Skip to content
Snippets Groups Projects
Commit a963f298 authored by Tobias Winchen's avatar Tobias Winchen
Browse files

Added missing case for 10 bit

parent 64d92803
No related branches found
No related tags found
No related merge requests found
Pipeline #92954 failed
......@@ -228,6 +228,9 @@ void GatedSpectrometer<HandlerType, InputType, OutputType>::gated_fft(
case 8:
_unpacker->unpack<8>(data._raw_voltage.b(), _unpacked_voltage_G0);
break;
case 10:
_unpacker->unpack<10>(data._raw_voltage.b(), _unpacked_voltage_G0);
break;
case 12:
_unpacker->unpack<12>(data._raw_voltage.b(), _unpacked_voltage_G0);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment