Read XCP Object
DEPRECATED It will be removed in a future version. Please use keyword read_XCP instead.
Reads the value of measurement/characteristic saved in memory of ECU at runtime
Arguments Description
channel_name (str): switch the A2L file parsed the channel name could be ETH-OBD
a2l_object (str): the name of measurement/characteristic parsed from the A2l File
value_to_check (int): the value to check against
ecu_name (str): the ecu name was got from the A2L file e.g.: “/begin MODULE New “, the most used “New”
- is_raw_value (bool): by default set to false to read the physical value, otherwise true to read the raw
value
PS: This keyword will be removed, the generic keyword that will be used read_XCP, which is more generic.
Returns
- Tuple[bool, Any]: The first element of tuple return bool; true if we succeeded to read the xcp object
else false, the second element gets the details about the specified xcp.
Example
${read_xcp}= Read XCP Object ${channel_name} ${a2l_object} 1 ${ecu_name}