FT8CN/ft8cn/app/src/main/java/com/bg7yoz/ft8cn/flex/VitaTSI.java

14 wiersze
942 B
Java
Czysty Wina Historia

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.bg7yoz.ft8cn.flex;
//时间戳的类型
//时间戳共有两部分小数部分和整数部分整数部分以秒为分辨率32位 主要传递UTC时间或者 GPS 时间,
//小数部分主要有三种一种是sample-count 以采样周期为最小分辨率一种是real-time以ps为最小单位第三种是以任意选择的时间进行累加得出的前面两种时间戳可以直接与整数部分叠加第三种则不能保证与整数部分保持恒定关系前两种与整数部分叠加来操作的可以在覆盖的时间范围为年
//小数部分的时间戳共有64位小数部分可以在没有整数部分的情况下使用
//所有的时间带来都是在以一个采样数据为该reference-point 时间
public enum VitaTSI {
TSI_NONE,//No Integer-seconds Timestamp field included
TSI_UTC,//Coordinated Universal Time(UTC)
TSI_GPS,//GPS time
TSI_OTHER//Other
}