Ravn::HAL::

Message class

Messages that are emitted from HAL devices.

Public Instance Methods

callsign()

Use the local callsign as the “sender’s” callsign.

# File lib/ravn/hal/message.rb, line 16
def callsign
        return Ravn::BDE.callsign
end
fields()

Override the base Message’s field to include the local callsign.

# File lib/ravn/hal/message.rb, line 10
def fields
        return super.merge( callsign: self.callsign )
end