You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just realized that the rdioscanner-plugin does not send the freq_list with the number of spikes and errors in the frequency field, so Rdio Scanner always shows "E: 0 S: 0" instead of the proper data.
I am however a little confused on how to bring this data to the uploader. What would be the right way to do this, add the information in Call_Data_t?
The text was updated successfully, but these errors were encountered:
So there is a freqList object available in the JSON file but it's not actually getting populated with all of the data from the freq_list. Error Count and Spike Count look like they're hard-coded to zero and only one frequency is making it in there, the list isn't being accessed and looped through to populate the JSON data.
I think you're correct that the freq_list information needs to get added to the Call_Data_t structure and then populated in call_concluder.cc. The JSON generation should also loop through that same info to pull out everything from the list so that it's available there in addition to via the plugin system.
Changes in the recent no-overlap branch have allowed plugins to see errors and spikes. Commits to this branch should already provide rdio-scanner with correctly-formatted json files if using upload scripts.
#660 should patch the ability into the rdio-scanner plugin.
I just realized that the rdioscanner-plugin does not send the freq_list with the number of spikes and errors in the frequency field, so Rdio Scanner always shows "E: 0 S: 0" instead of the proper data.
I am however a little confused on how to bring this data to the uploader. What would be the right way to do this, add the information in
Call_Data_t
?The text was updated successfully, but these errors were encountered: