• Bartosz Podrygajlo's avatar
    Add IQ file recording and IQ file viewer to ImScope · ab75a7cc
    Bartosz Podrygajlo authored
    This commit introduces the following changes to ImScope:
     - Added the ability to record IQ data using the same mechanism as ImScope.
     - Added a new executable target `imscope_iq_file_viewer` for viewing IQ files.
     - Introduced a command line argument `--imscope-record` that enables data recording mode.
     - Refactored a lot of the scope code
    
    Usage:
     - To record IQ data, run a modem with `--imscope-record` flag.
       The recording happens whenever a modem calls dumpScopeData, which currently is
       done only in gNB on PUSCH DTX and PUSCH CRC NOK.
       There is a limit of ~1GB of files written by the thread in a signle run to avoid
       accidentally exhausting disk space.
       If a directory `imscope-dump` is available the data will be recorded there in .imscope
       files. Otherwise files are written to the directory the modem was run. This is done so that
       the directory can be mapped in a docker container.
    
     - To view recorded IQ files, use the new executable `imscope_iq_file_viewer`. This can be done by running:
          ```
          ./imscope_iq_file_viewer <path_to_iq_file>
          ```
       Replace `<path_to_iq_file>` with the path to the IQ file you want to view.
    ab75a7cc
imscope.cpp 25.8 KB