Transmit Pdu

Transmits a PDU with the given payload

Arguments Description

channel_name (str): BusName

pdu_name (str): pdu name

frame_id (int or str): frame id

payload (list[int]): Data to send

immediate (bool, optional): Flag indicating whether transmission should be immediate. Default value is False.

Returns

bool: True if the PDU transmission was successful; otherwise, False.

Examples

${payload}= Create List ${0x01} ${0x02} ${0x03} ${0x04} ${0x05} ${0x06} ${0x07} ${0x08}
${transmit}= Transmit Pdu ${channel_name} ${pdu_name} ${frame_id} ${payload}