Method: OpenC3::GenericConversion#call
- Defined in:
- lib/openc3/conversions/generic_conversion.rb
#call(value, packet, buffer) ⇒ Object
Perform the conversion on the value.
55 56 57 58 59 60 |
# File 'lib/openc3/conversions/generic_conversion.rb', line 55 def call(value, packet, buffer) myself = packet # For backwards compatibility if true or myself # Remove unused variable warning for myself return eval(@code_to_eval) end end |