Sha256: 5b504432c17cc03b8fe65eebd703aa9d1f4f760855a7835c438afaf58dd7641c
Contents?: true
Size: 1.2 KB
Versions: 6
Compression:
Stored size: 1.2 KB
Contents
# encoding: ascii-8bit # Copyright 2022 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 Affero General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # Modified by OpenC3, Inc. # All changes Copyright 2022, OpenC3, Inc. # All Rights Reserved require 'openc3/conversions/conversion' module OpenC3 # Converts the packet received count as a derived telemetry item class ReceivedCountConversion < Conversion # Initializes converted_type to :UINT and converted_bit_size to 32 def initialize super() @converted_type = :UINT @converted_bit_size = 32 end # @param (see Conversion#call) # @return [Integer] packet.received_count def call(value, packet, buffer) packet.received_count end end # class ReceivedCountConversion end
Version data entries
6 entries across 6 versions & 1 rubygems