Patch to fix bfiq -> iqdat and rawacf hdf5 -> dmap conversions
Issue:
These conversions fail for Borealis v0.5 files. In v0.5, only the samples corresponding to a tx pulse are blanked, but in v0.6 the immediately following sample is blanked as well. Additionally, v0.5 files don't have a field for agc_status_word and lp_status_word, which are necessary fields in the iqdat and rawacf dmap files.
Approval
Number of approvals: 2
Test
Methods changed are all in borealis_convert.py:
_is_convertible_to_iqdat()
_is_convertible_to_rawacf()
__convert_bfiq_record()
__convert_rawacf_record()
These are run by calling BorealisConvert() for bfiq and rawacf files, respectively.
Scope
Patch to fix bfiq -> iqdat and rawacf hdf5 -> dmap conversions
Issue: These conversions fail for Borealis v0.5 files. In v0.5, only the samples corresponding to a tx pulse are blanked, but in v0.6 the immediately following sample is blanked as well. Additionally, v0.5 files don't have a field for
agc_status_word
andlp_status_word
, which are necessary fields in the iqdat and rawacf dmap files.Approval
Number of approvals: 2
Test
Methods changed are all in
borealis_convert.py
:_is_convertible_to_iqdat()
_is_convertible_to_rawacf()
__convert_bfiq_record()
__convert_rawacf_record()
These are run by callingBorealisConvert()
for bfiq and rawacf files, respectively.