Class: OpenC3::ReceivedTimeSecondsConversion

Inherits:
Conversion show all
Defined in:
lib/openc3/conversions/received_time_seconds_conversion.rb

Overview

Converts the packet received time into floating point seconds.

Instance Attribute Summary

Attributes inherited from Conversion

#converted_array_size, #converted_bit_size, #converted_type

Instance Method Summary collapse

Methods inherited from Conversion

#as_json, #to_config, #to_s

Constructor Details

#initializeReceivedTimeSecondsConversion

Initializes converted_type to :FLOAT and converted_bit_size to 64



29
30
31
32
33
# File 'lib/openc3/conversions/received_time_seconds_conversion.rb', line 29

def initialize
  super()
  @converted_type = :FLOAT
  @converted_bit_size = 64
end

Instance Method Details

#call(value, packet, buffer) ⇒ Float

Returns Packet received time in seconds.

Parameters:

  • value (Object)

    The value to convert

  • packet (Packet)

    The packet which contains the value. This can be useful to reach into the packet and use other values in the conversion.

  • buffer (String)

    The packet buffer

Returns:

  • (Float)

    Packet received time in seconds



37
38
39
40
41
42
43
# File 'lib/openc3/conversions/received_time_seconds_conversion.rb', line 37

def call(value, packet, buffer)
  if packet.received_time
    return packet.received_time.to_f
  else
    return 0.0
  end
end