How do you use Rx Timestamp? I'm using a Wahoo dongle on the iPhone to receive somewhat time sensitive data. Currently I'm time stamping messages using the iOS system clock. Since data is received on the main thread, if the app pauses for a moment, then the messages get buffered and all get timestamped when the app becomes responsive again.
I can use the Rx Timestamp to ensure the time delta between messages is correct, but is there a way to use the Rx Timestamp to get absolute time? Is there any way to get/set the current value of the counter from the ANT module.
Or, should i uses the iOS system clock value and the Rx Timestamp value. If the deltas match, assume the iOS Timestamp Value is correct. And if they don't match, use the Rx Timestamp value to correct the value from the iOS system clock based on the message with the last known good value?