Sha256: 53a9ff2548665ab07b96698f9295615e42d6fc3abb3997806d5950bff43f7b17

Contents?: true

Size: 1002 Bytes

Versions: 64

Compression:

Stored size: 1002 Bytes

Contents

# encoding: ascii-8bit

# Copyright 2014 Ball Aerospace & Technologies Corp.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt

require 'cosmos/conversions/conversion'

module Cosmos

  # Converts the packet received time into floating point seconds.
  class ReceivedTimeSecondsConversion < Conversion

    # Initializes converted_type to :FLOAT and converted_bit_size to 64
    def initialize
      super()
      @converted_type = :FLOAT
      @converted_bit_size = 64
    end

    # @param (see Conversion#call)
    # @return [Float] Packet received time in seconds
    def call(value, packet, buffer)
      if packet.received_time
        return packet.received_time.to_f
      else
        return 0.0
      end
    end

  end # class ReceivedTimeSecondsConversion

end # module Cosmos

Version data entries

64 entries across 64 versions & 1 rubygems

Version Path
cosmos-3.2.0 lib/cosmos/conversions/received_time_seconds_conversion.rb
cosmos-3.1.2 lib/cosmos/conversions/received_time_seconds_conversion.rb
cosmos-3.1.1 lib/cosmos/conversions/received_time_seconds_conversion.rb
cosmos-3.1.0 lib/cosmos/conversions/received_time_seconds_conversion.rb