All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.utils.GpsCcsdsTime Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.utils;

/**
 * Auxiliary class for GPS CCSDS time.
 * 
 * @author mu
 *
 */
public class GpsCcsdsTime {
    public final int coarseTime;
    public final byte fineTime;
    
    public GpsCcsdsTime(int coarseTime, byte fineTime) {
        this.coarseTime = coarseTime;
        this.fineTime = fineTime;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy