Main Content

disconnect

Disconnect from server module

Description

example

disconnect(xcpch) disconnects the specified XCP channel from the server module. Disconnecting the channel stops active messaging between the channel and the server module.

Examples

collapse all

Create an XCP channel using a CAN module, connect the channel and disconnect it from the specified server module.

Link an A2L file

a2l = xcpA2L('XCPSIM.a2l')

Create an XCP channel using a Vector CAN module virtual channel. Check to see if channel is connected.

xcpch = xcpChannel(a2lfile,'CAN','Vector','Virtual 1',1);

Connect the channel and validate its connection.

connect(xcpch)
isConnected(xcpch)
ans =

     1

Disconnect the channel and check if connection is active.

disconnect(xcpch)
isConnected(xcpch)
ans =

     0

Input Arguments

collapse all

XCP channel, specified as an XCP channel object created using xcpChannel. The XCP channel object can then communicate with the specified server module defined by the A2L file.

Version History

Introduced in R2013a