Sha256: 023766dc4cf187aab44b31eabedd9dddd32a8dae2f9c71d1313f9e01e4f9a637

Contents?: true

Size: 736 Bytes

Versions: 35

Compression:

Stored size: 736 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'
require 'cosmos/interfaces/tcpip_client_interface'

class ExampleInterface < Cosmos::TcpipClientInterface
  def initialize (hostname, port, write_timeout = 10.0, read_timeout = nil)
    super(hostname, port, port, write_timeout, read_timeout, 'LENGTH', 0, 32, 4, 1, 'BIG_ENDIAN', 4)
  end

  def pre_write_packet(packet)
    [packet.length].pack('N') << packet.buffer
  end
end

Version data entries

35 entries across 28 versions & 2 rubygems

Version Path
cosmos-3.9.2 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.9.1 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.8.3 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-example-0.0.0 lib/example_interface.rb
cosmos-3.8.2 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.8.1 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.8.0 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.7.1 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.7.0 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.6.3 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.6.2 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.6.1 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.6.0 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.5.3 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.5.2 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.5.0 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.4.2 demo/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.4.2 test/performance/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.4.1 test/performance/config/targets/EXAMPLE/lib/example_interface.rb
cosmos-3.4.1 demo/config/targets/EXAMPLE/lib/example_interface.rb