Uses of Class
com.flightpanels.scs.can_t

Uses of can_t in com.flightpanels.scs
 

Methods in com.flightpanels.scs that return can_t
 can_t DataReference.write(CanAeroMetadata meta, java.lang.Object value)
           
 can_t IDataReference.write(CanAeroMetadata meta, java.lang.Object value)
          Write data to can-object that can be send to the bus
static can_t can_t.writeBoolToCan(long id, boolean data, short message_code, short node_id)
           
static can_t can_t.writeDRSNodeServiceRequest(short node_id, long param, short requestor, long channel)
           
static can_t can_t.writeFloatToCan(long id, float data, short message_code, short node_id)
           
static can_t can_t.writeIDSNodeServiceRequest(short node_id, short requestor, long channel)
           
static can_t can_t.writeIndexedFloatToCan(long id, float data, short index, short message_code, short node_id)
           
static can_t can_t.writeIndexedIntToCan(long id, int data, short index, short message_code, short node_id)
           
static can_t can_t.writeIndexedStringChunkToCan(long id, java.lang.String data, short index, short message_code, short node_id)
           
static can_t can_t.writeIntToCan(long id, int data, short message_code, short node_id)
           
static can_t can_t.writeMCSNodeServiceRequest(short node_id, int module, int mode, short requestor, long channel)
           
static can_t can_t.writeNCSNodeServiceRequest(long node_uuid, long channel)
           
static can_t can_t.writeNodeServiceRequest(short node_id, short service_code, short type, byte[] msg_buffer, short msg_code, long channel)
           
static can_t can_t.writeNodeServiceResponse(short node_id, short service_code, short data_type, byte[] message_data, short message_code, long channel)
           
static can_t can_t.writeStringToCan(long id, java.lang.String data, short message_code, short node_id)
           
 

Methods in com.flightpanels.scs with parameters of type can_t
 void Receiver.incomingData(can_t msg)
          Handle incoming data the application subscribed to.
 void ICanAeroDataManager.incomingData(can_t can)
          Incoming normal operation data must be handled in this function.
 void DataReferenceString.readFromCan(CanAeroMetadata meta, can_t can)
           
 void DataReferenceInt.readFromCan(CanAeroMetadata meta, can_t can)
           
 void DataReferenceFloat.readFromCan(CanAeroMetadata meta, can_t can)
           
 void DataReferenceDouble.readFromCan(CanAeroMetadata meta, can_t can)
           
 void DataReferenceBool.readFromCan(CanAeroMetadata meta, can_t can)
           
abstract  void DataReference.readFromCan(CanAeroMetadata meta, can_t can)
           
 void IDataReference.readFromCan(CanAeroMetadata meta, can_t can)
          read incoming data from the bus into the cache
 void DataReferenceFloatVector.readFromCan(CanAeroMetadata meta, can_t can)
           
 void CanAeroBusConnector.receiveMessage(can_t message)
          Processes service requests and responses, filters normal operation data.
 void UDPConnector.send(can_t msg)
           
 void CanAeroBusConnector.send(can_t msg)
           
 

Method parameters in com.flightpanels.scs with type arguments of type can_t
 void CanAeroBusConnector.receiveMessage(java.util.Vector<can_t> msg)
          Processes service requests and responses, filters normal operation data.
 void CanAeroBusConnector.send(java.util.Vector<can_t> msg)
           
 void UDPConnector.setListener(IBusConnector<can_t> listener)
           
 

Constructor parameters in com.flightpanels.scs with type arguments of type can_t
CanAeroBusConnector(ICanAeroDataManager manager, INetworkConnector<can_t> connector, short own_node_id, short config_revision)