Data types, see also Core data types.
More...
|
enum class | ResponseStates { FAILED
, INVALID
, POSITIVE
, NEGATIVE
} |
| ResponseState is an enumeration type describing the state of a Response. More...
|
|
enum class | ResultStates {
ALL_INVALID
, ALL_NEGATIVE
, ALL_POSITIVE
, ALL_FAILED
,
FAILED
, INVALID
, NEGATIVE
, POSITIVE
} |
| ResultState is an enumeration type describing the state of a Result. More...
|
|
Data types, see also Core data types.
◆ ResponseStates
ResponseState is an enumeration type describing the state of a Response.
Enumerator |
---|
FAILED | It refers the case when the ECU failed to answer.
|
INVALID | It refers the case when the ECUs returned an invalid response.
|
POSITIVE | It refers the case when the ECUs returned a positive response.
|
NEGATIVE | It refers the case when the ECUs returned a negative response.
|
◆ ResultStates
ResultState is an enumeration type describing the state of a Result.
Enumerator |
---|
ALL_INVALID | All ECUs in a functional group (listening to the same functional address) returned an invalid answer, in case of physical addressing: the one requested ECU returned an invalid response. In case of a MVCIServer, it will be mapped with MCDExecutationState: eALL_INVALID_RESPONSE.
|
ALL_NEGATIVE | All ECUs in a functional group (listening to the same functional address) returned a negative response, in case of physical addressing: the one requested ECU returned a negative response. In case of a MVCIServer, it will be mapped with MCDExecutationState: eALL_NEGATIVE.
|
ALL_POSITIVE | All ECUs in a functional group (listening to the same functional address) returned a positive response, in case of physical addressing: the one requested ECU returned a positive response. In case of a MVCIServer, it will be mapped with MCDExecutationState: eALL_POSITIVE.
|
ALL_FAILED | All ECUs in a functional group (listening to the same functional address) failed to answer, in case of physical addressing: the one requested ECU failed to answer. In case of a MVCIServer, it will be mapped with MCDExecutationState: eALL_FAILED.
|
FAILED | Some of the ECUs in a functional group (listening to the same functional address) failed to answer. In case of a MVCIServer, it will be mapped with MCDExecutationState: eCANCELED_DURING_EXECUTION or eCANCELED_FROM_QUEUE or eFAILED.
|
INVALID | Some of the ECUs in a functional group (listening to the same functional address) returned an invalid response. In case of a MVCIServer, it will be mapped with MCDExecutationState: eINVALID_RESPONSE.
|
NEGATIVE | Some of the ECUs in a functional group (listening to the same functional address) returned a negative response. In case of a MVCIServer, it will be mapped with MCDExecutationState: eNEGATIVE.
|
POSITIVE | It refers the case when some of the ECUs in a functional group (listening to the same functional address) returned a positive response. The POSITIVE value will never occur.
|