_Diag_ChannelStateChanged
Valid for: CANoe DEFunction Syntax
void _Diag_ChannelStateChanged(long newState); // form 1void _Diag_ChannelStateChanged(char target[], long newState); // form 2
Description
Callback function in a tester that is called every time the state of the diagnostic channel changes.- Note: Form 1 requires a diagnostic target to be set, by calling diagSetTarget.
- Note: Only one of the two forms may be implemented at a time and the function name is case-sensitive.
- Note: In combination with the CAPL Callback Interface (CCI), only the states Closed and Connected are supported.
Parameters
- target: Qualifier of the ECU whose communication channel’s state has changed.
-
newState: New state of the channel.
0: Closed
Channel is not yet opened or already closed.1: Opened
Channel is opened but no request has successfully been sent yet or the attempt to send a request failed.2: Connected
Request was successfully sent but no response has been received yet or the expected response was missed.3: Online
Request and response have successfully been sent and received.4: ClosePending
Closing of the communication was requested but is still pending. State Closed will follow.5: ConnectPending
Start of the communication was requested but is still pending, in case of success state Connected will follow, otherwise state Opened.