warning in using abs for unsigned (missing packets) in rxr, but also trying to print to signed in command line (so as not to change api atm)

This commit is contained in:
2022-01-05 12:55:21 +01:00
parent 2dd98c6054
commit 77fb8280f1
4 changed files with 50 additions and 6 deletions

View File

@ -588,7 +588,9 @@ class Detector {
Result<int64_t> getFramesCaught(Positions pos = {}) const;
/** Gets the number of missing packets for each port in receiver. */
/** Gets the number of missing packets for each port in receiver.
* Troubleshoot: If they are large numbers, convert it to signed to get
* number of access packets received */
Result<std::vector<uint64_t>>
getNumMissingPackets(Positions pos = {}) const;