Mathematica - CAN Bricklet

This is the description of the Mathematica API bindings for the CAN Bricklet. General information and technical specifications for the CAN Bricklet are summarized in its hardware description.

An installation guide for the Mathematica API bindings is part of their general description.

Examples

The example code below is Public Domain (CC0 1.0).

Loopback

Download (ExampleLoopback.nb)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Needs["NETLink`"]
LoadNETAssembly["Tinkerforge",NotebookDirectory[]<>"../../.."]

host="localhost"
port=4223
uid="XYZ"(*Change XYZ to the UID of your CAN Bricklet*)

(*Create IPConnection and device object*)
ipcon=NETNew["Tinkerforge.IPConnection"]
can=NETNew["Tinkerforge.BrickletCAN",uid,ipcon]
ipcon@Connect[host,port]

(*Configure transceiver for loopback mode*)
can@SetConfiguration[Tinkerforge`BrickletCAN`BAUDURATEU1000KBPS,
                     Tinkerforge`BrickletCAN`TRANSCEIVERUMODEULOOPBACK,0]

(*Callback function for frame read callback*)
FrameReadCB[sender_,frameType_,identifier_,data_,length_]:=
 Module[{},
  If[frameType==Tinkerforge`BrickletCAN`FRAMEUTYPEUSTANDARDUDATA,Print["Frame Type: Standard Data"]];
  If[frameType==Tinkerforge`BrickletCAN`FRAMEUTYPEUSTANDARDUREMOTE,Print["Frame Type: Standard Remote"]];
  If[frameType==Tinkerforge`BrickletCAN`FRAMEUTYPEUEXTENDEDUDATA,Print["Frame Type: Extended Data"]];
  If[frameType==Tinkerforge`BrickletCAN`FRAMEUTYPEUEXTENDEDUREMOTE,Print["Frame Type: Extended Remote"]];
  Print["Identifier: "<>ToString[identifier]];
  Print["Data (Length: "<>ToString[N[length]]<>"): "<>ToString[data]]
 ]

AddEventHandler[can@FrameReadCallback,FrameReadCB]

(*Enable frame read callback*)
can@EnableFrameReadCallback[]

(*Write standard data frame with identifier 1742 and 3 bytes of data*)
data={42,23,17,0,0,0,0,0}
can@WriteFrame[Tinkerforge`BrickletCAN`FRAMEUTYPEUSTANDARDUDATA,1742,data,3]

Input["Click OK to exit"]

can@DisableFrameReadCallback[]

ipcon@Disconnect[]
ReleaseNETObject[can]
ReleaseNETObject[ipcon]

API

Generally, every function of the Mathematica bindings that returns a value can throw a Tinkerforge.TimeoutException. This exception gets thrown if the device did not respond. If a cable based connection is used, it is unlikely that this exception gets thrown (assuming nobody plugs the device out). However, if a wireless connection is used, timeouts will occur if the distance to the device gets too big.

Since .NET/Link does not support multiple return values directly, we use the out keyword to return multiple values from a function. For further information about the out keyword in .NET/Link see the corresponding Mathematica .NET/Link documentation.

The namespace for all Brick/Bricklet bindings and the IPConnection is Tinkerforge.*.

Basic Functions

BrickletCAN[uid, ipcon] → can
Parameters:
  • uid – Type: String
  • ipcon – Type: NETObject[IPConnection]
Returns:
  • can – Type: NETObject[BrickletCAN]

Creates an object with the unique device ID uid:

can=NETNew["Tinkerforge.BrickletCAN","YOUR_DEVICE_UID",ipcon]

This object can then be used after the IP Connection is connected.

The .NET runtime has built-in garbage collection that frees objects that are no longer in use by a program. But because Mathematica can not automatically tell when a Mathematica "program" doesn't use a .NET object anymore, this has to be done by the program. For this the ReleaseNETObject[] function is used in the examples.

For further information about object management in .NET/Link see the corresponding Mathematica .NET/Link documentation.

BrickletCAN@WriteFrame[frameType, identifier, {data1, data2, ..., data8}, length] → success
Parameters:
  • frameType – Type: Integer, Range: See constants
  • identifier – Type: Integer, Range: [0 to 230 - 1]
  • datai – Type: Integer, Range: [0 to 255]
  • length – Type: Integer, Range: [0 to 15]
Returns:
  • success – Type: True/False

Writes a data or remote frame to the write buffer to be transmitted over the CAN transceiver.

The Bricklet supports the standard 11-bit (CAN 2.0A) and the additional extended 18-bit (CAN 2.0B) identifiers. For standard frames the Bricklet uses bit 0 to 10 from the identifier parameter as standard 11-bit identifier. For extended frames the Bricklet additionally uses bit 11 to 28 from the identifier parameter as extended 18-bit identifier.

For remote frames the data parameter is ignored.

Returns true if the frame was successfully added to the write buffer. Returns false if the frame could not be added because write buffer is already full.

The write buffer can overflow if frames are written to it at a higher rate than the Bricklet can transmitted them over the CAN transceiver. This may happen if the CAN transceiver is configured as read-only or is using a low baud rate (see SetConfiguration[]). It can also happen if the CAN bus is congested and the frame cannot be transmitted because it constantly loses arbitration or because the CAN transceiver is currently disabled due to a high write error level (see GetErrorLog[]).

The following constants are available for this function:

For frameType:

  • BrickletCAN`FRAMEUTYPEUSTANDARDUDATA = 0
  • BrickletCAN`FRAMEUTYPEUSTANDARDUREMOTE = 1
  • BrickletCAN`FRAMEUTYPEUEXTENDEDUDATA = 2
  • BrickletCAN`FRAMEUTYPEUEXTENDEDUREMOTE = 3
BrickletCAN@ReadFrame[out success, out frameType, out identifier, out {data1, data2, ..., data8}, out length] → Null
Output Parameters:
  • success – Type: True/False
  • frameType – Type: Integer, Range: See constants
  • identifier – Type: Integer, Range: [0 to 230 - 1]
  • datai – Type: Integer, Range: [0 to 255]
  • length – Type: Integer, Range: [0 to 15]

Tries to read the next data or remote frame from the read buffer and return it. If a frame was successfully read, then the success return value is set to true and the other return values contain the frame. If the read buffer is empty and no frame could be read, then the success return value is set to false and the other return values contain invalid data.

The identifier return value follows the identifier format described for WriteFrame[].

For remote frames the data return value always contains invalid data.

A configurable read filter can be used to define which frames should be received by the CAN transceiver and put into the read buffer (see SetReadFilter[]).

Instead of polling with this function, you can also use callbacks. See the EnableFrameReadCallback[] function and the FrameReadCallback callback.

The following constants are available for this function:

For frameType:

  • BrickletCAN`FRAMEUTYPEUSTANDARDUDATA = 0
  • BrickletCAN`FRAMEUTYPEUSTANDARDUREMOTE = 1
  • BrickletCAN`FRAMEUTYPEUEXTENDEDUDATA = 2
  • BrickletCAN`FRAMEUTYPEUEXTENDEDUREMOTE = 3
BrickletCAN@SetConfiguration[baudRate, transceiverMode, writeTimeout] → Null
Parameters:
  • baudRate – Type: Integer, Range: See constants, Default: 3
  • transceiverMode – Type: Integer, Range: See constants, Default: 0
  • writeTimeout – Type: Integer, Range: [-1 to 231 - 1], Default: 0

Sets the configuration for the CAN bus communication.

The baud rate can be configured in steps between 10 and 1000 kbit/s.

The CAN transceiver has three different modes:

  • Normal: Reads from and writes to the CAN bus and performs active bus error detection and acknowledgement.
  • Loopback: All reads and writes are performed internally. The transceiver is disconnected from the actual CAN bus.
  • Read-Only: Only reads from the CAN bus, but does neither active bus error detection nor acknowledgement. Only the receiving part of the transceiver is connected to the CAN bus.

The write timeout has three different modes that define how a failed frame transmission should be handled:

  • One-Shot (= -1): Only one transmission attempt will be made. If the transmission fails then the frame is discarded.
  • Infinite (= 0): Infinite transmission attempts will be made. The frame will never be discarded.
  • Milliseconds (> 0): A limited number of transmission attempts will be made. If the frame could not be transmitted successfully after the configured number of milliseconds then the frame is discarded.

The following constants are available for this function:

For baudRate:

  • BrickletCAN`BAUDURATEU10KBPS = 0
  • BrickletCAN`BAUDURATEU20KBPS = 1
  • BrickletCAN`BAUDURATEU50KBPS = 2
  • BrickletCAN`BAUDURATEU125KBPS = 3
  • BrickletCAN`BAUDURATEU250KBPS = 4
  • BrickletCAN`BAUDURATEU500KBPS = 5
  • BrickletCAN`BAUDURATEU800KBPS = 6
  • BrickletCAN`BAUDURATEU1000KBPS = 7

For transceiverMode:

  • BrickletCAN`TRANSCEIVERUMODEUNORMAL = 0
  • BrickletCAN`TRANSCEIVERUMODEULOOPBACK = 1
  • BrickletCAN`TRANSCEIVERUMODEUREADUONLY = 2
BrickletCAN@GetConfiguration[out baudRate, out transceiverMode, out writeTimeout] → Null
Output Parameters:
  • baudRate – Type: Integer, Range: See constants, Default: 3
  • transceiverMode – Type: Integer, Range: See constants, Default: 0
  • writeTimeout – Type: Integer, Range: [-1 to 231 - 1], Default: 0

Returns the configuration as set by SetConfiguration[].

The following constants are available for this function:

For baudRate:

  • BrickletCAN`BAUDURATEU10KBPS = 0
  • BrickletCAN`BAUDURATEU20KBPS = 1
  • BrickletCAN`BAUDURATEU50KBPS = 2
  • BrickletCAN`BAUDURATEU125KBPS = 3
  • BrickletCAN`BAUDURATEU250KBPS = 4
  • BrickletCAN`BAUDURATEU500KBPS = 5
  • BrickletCAN`BAUDURATEU800KBPS = 6
  • BrickletCAN`BAUDURATEU1000KBPS = 7

For transceiverMode:

  • BrickletCAN`TRANSCEIVERUMODEUNORMAL = 0
  • BrickletCAN`TRANSCEIVERUMODEULOOPBACK = 1
  • BrickletCAN`TRANSCEIVERUMODEUREADUONLY = 2

Advanced Functions

BrickletCAN@SetReadFilter[mode, mask, filter1, filter2] → Null
Parameters:
  • mode – Type: Integer, Range: See constants, Default: 1
  • mask – Type: Integer, Range: [0 to 230 - 1]
  • filter1 – Type: Integer, Range: [0 to 230 - 1]
  • filter2 – Type: Integer, Range: [0 to 230 - 1]

Set the read filter configuration. This can be used to define which frames should be received by the CAN transceiver and put into the read buffer.

The read filter has five different modes that define if and how the mask and the two filters are applied:

  • Disabled: No filtering is applied at all. All frames are received even incomplete and defective frames. This mode should be used for debugging only.
  • Accept-All: All complete and error-free frames are received.
  • Match-Standard: Only standard frames with a matching identifier are received.
  • Match-Standard-and-Data: Only standard frames with matching identifier and data bytes are received.
  • Match-Extended: Only extended frames with a matching identifier are received.

The mask and filters are used as bit masks. Their usage depends on the mode:

  • Disabled: Mask and filters are ignored.
  • Accept-All: Mask and filters are ignored.
  • Match-Standard: Bit 0 to 10 (11 bits) of mask and filters are used to match the 11-bit identifier of standard frames.
  • Match-Standard-and-Data: Bit 0 to 10 (11 bits) of mask and filters are used to match the 11-bit identifier of standard frames. Bit 11 to 18 (8 bits) and bit 19 to 26 (8 bits) of mask and filters are used to match the first and second data byte (if present) of standard frames.
  • Match-Extended: Bit 0 to 10 (11 bits) of mask and filters are used to match the standard 11-bit identifier part of extended frames. Bit 11 to 28 (18 bits) of mask and filters are used to match the extended 18-bit identifier part of extended frames.

The mask and filters are applied in this way: The mask is used to select the identifier and data bits that should be compared to the corresponding filter bits. All unselected bits are automatically accepted. All selected bits have to match one of the filters to be accepted. If all bits for the selected mode are accepted then the frame is accepted and is added to the read buffer.

Mask Bit Filter Bit Identifier/Data Bit Result
0 X X Accept
1 0 0 Accept
1 0 1 Reject
1 1 0 Reject
1 1 1 Accept

For example, to receive standard frames with identifier 0x123 only the mode can be set to Match-Standard with 0x7FF as mask and 0x123 as filter 1 and filter 2. The mask of 0x7FF selects all 11 identifier bits for matching so that the identifier has to be exactly 0x123 to be accepted.

To accept identifier 0x123 and identifier 0x456 at the same time, just set filter 2 to 0x456 and keep mask and filter 1 unchanged.

The following constants are available for this function:

For mode:

  • BrickletCAN`FILTERUMODEUDISABLED = 0
  • BrickletCAN`FILTERUMODEUACCEPTUALL = 1
  • BrickletCAN`FILTERUMODEUMATCHUSTANDARD = 2
  • BrickletCAN`FILTERUMODEUMATCHUSTANDARDUANDUDATA = 3
  • BrickletCAN`FILTERUMODEUMATCHUEXTENDED = 4
BrickletCAN@GetReadFilter[out mode, out mask, out filter1, out filter2] → Null
Output Parameters:
  • mode – Type: Integer, Range: See constants, Default: 1
  • mask – Type: Integer, Range: [0 to 230 - 1]
  • filter1 – Type: Integer, Range: [0 to 230 - 1]
  • filter2 – Type: Integer, Range: [0 to 230 - 1]

Returns the read filter as set by SetReadFilter[].

The following constants are available for this function:

For mode:

  • BrickletCAN`FILTERUMODEUDISABLED = 0
  • BrickletCAN`FILTERUMODEUACCEPTUALL = 1
  • BrickletCAN`FILTERUMODEUMATCHUSTANDARD = 2
  • BrickletCAN`FILTERUMODEUMATCHUSTANDARDUANDUDATA = 3
  • BrickletCAN`FILTERUMODEUMATCHUEXTENDED = 4
BrickletCAN@GetErrorLog[out writeErrorLevel, out readErrorLevel, out transceiverDisabled, out writeTimeoutCount, out readRegisterOverflowCount, out readBufferOverflowCount] → Null
Output Parameters:
  • writeErrorLevel – Type: Integer, Range: [0 to 255]
  • readErrorLevel – Type: Integer, Range: [0 to 255]
  • transceiverDisabled – Type: True/False
  • writeTimeoutCount – Type: Integer, Range: [0 to 232 - 1]
  • readRegisterOverflowCount – Type: Integer, Range: [0 to 232 - 1]
  • readBufferOverflowCount – Type: Integer, Range: [0 to 232 - 1]

Returns information about different kinds of errors.

The write and read error levels indicate the current level of checksum, acknowledgement, form, bit and stuffing errors during CAN bus write and read operations.

When the write error level exceeds 255 then the CAN transceiver gets disabled and no frames can be transmitted or received anymore. The CAN transceiver will automatically be activated again after the CAN bus is idle for a while.

The write and read error levels are not available in read-only transceiver mode (see SetConfiguration[]) and are reset to 0 as a side effect of changing the configuration or the read filter.

The write timeout, read register and buffer overflow counts represents the number of these errors:

  • A write timeout occurs if a frame could not be transmitted before the configured write timeout expired (see SetConfiguration[]).
  • A read register overflow occurs if the read register of the CAN transceiver still contains the last received frame when the next frame arrives. In this case the newly arrived frame is lost. This happens if the CAN transceiver receives more frames than the Bricklet can handle. Using the read filter (see SetReadFilter[]) can help to reduce the amount of received frames. This count is not exact, but a lower bound, because the Bricklet might not able detect all overflows if they occur in rapid succession.
  • A read buffer overflow occurs if the read buffer of the Bricklet is already full when the next frame should be read from the read register of the CAN transceiver. In this case the frame in the read register is lost. This happens if the CAN transceiver receives more frames to be added to the read buffer than are removed from the read buffer using the ReadFrame[] function. Using the FrameReadCallback callback ensures that the read buffer can not overflow.
BrickletCAN@GetIdentity[out uid, out connectedUid, out position, out {hardwareVersion1, hardwareVersion2, hardwareVersion3}, out {firmwareVersion1, firmwareVersion2, firmwareVersion3}, out deviceIdentifier] → Null
Output Parameters:
  • uid – Type: String, Length: up to 8
  • connectedUid – Type: String, Length: up to 8
  • position – Type: Integer, Range: [ToCharacterCode["a"][[0]] to ToCharacterCode["h"][[0]], ToCharacterCode["z"][[0]]]
  • hardwareVersioni – Type: Integer
    • 1: major – Type: Integer, Range: [0 to 255]
    • 2: minor – Type: Integer, Range: [0 to 255]
    • 3: revision – Type: Integer, Range: [0 to 255]
  • firmwareVersioni – Type: Integer
    • 1: major – Type: Integer, Range: [0 to 255]
    • 2: minor – Type: Integer, Range: [0 to 255]
    • 3: revision – Type: Integer, Range: [0 to 255]
  • deviceIdentifier – Type: Integer, Range: [0 to 216 - 1]

Returns the UID, the UID where the Bricklet is connected to, the position, the hardware and firmware version as well as the device identifier.

The position can be 'a', 'b', 'c', 'd', 'e', 'f', 'g' or 'h' (Bricklet Port). A Bricklet connected to an Isolator Bricklet is always at position 'z'.

The device identifier numbers can be found here. There is also a constant for the device identifier of this Bricklet.

Callback Configuration Functions

BrickletCAN@EnableFrameReadCallback[] → Null

Enables the FrameReadCallback callback.

By default the callback is disabled. Enabling this callback will disable the FrameReadableCallback callback.

BrickletCAN@DisableFrameReadCallback[] → Null

Disables the FrameReadCallback callback.

By default the callback is disabled.

BrickletCAN@IsFrameReadCallbackEnabled[] → enabled
Returns:
  • enabled – Type: True/False, Default: False

Returns true if the FrameReadCallback callback is enabled, false otherwise.

BrickletCAN@SetFrameReadableCallbackConfiguration[enabled] → Null
Parameters:
  • enabled – Type: True/False, Default: False

Enables/disables the FrameReadableCallback callback.

By default the callback is disabled. Enabling this callback will disable the FrameReadCallback callback.

New in version 2.0.1 (Plugin).

BrickletCAN@GetFrameReadableCallbackConfiguration[] → enabled
Returns:
  • enabled – Type: True/False, Default: False

Returns true if the FrameReadableCallback callback is enabled, false otherwise.

New in version 2.0.1 (Plugin).

Callbacks

Callbacks can be registered to receive time critical or recurring data from the device. The registration is done by assigning a function to a callback property of the device object:

MyCallback[sender_,value_]:=Print["Value: "<>ToString[value]]

AddEventHandler[can@ExampleCallback,MyCallback]

For further information about event handling using .NET/Link see the corresponding Mathematica .NET/Link documentation.

The available callback property and their type of parameters are described below.

Note

Using callbacks for recurring events is always preferred compared to using getters. It will use less USB bandwidth and the latency will be a lot better, since there is no round trip time.

event BrickletCAN@FrameReadCallback[sender, frameType, identifier, {data1, data2, ..., data8}, length]
Callback Parameters:
  • sender – Type: NETObject[BrickletCAN]
  • frameType – Type: Integer, Range: See constants
  • identifier – Type: Integer, Range: [0 to 230 - 1]
  • datai – Type: Integer, Range: [0 to 255]
  • length – Type: Integer, Range: [0 to 15]

This callback is triggered if a data or remote frame was received by the CAN transceiver.

The identifier return value follows the identifier format described for WriteFrame[].

For remote frames the data return value always contains invalid values.

A configurable read filter can be used to define which frames should be received by the CAN transceiver at all (see SetReadFilter[]).

To enable this callback, use EnableFrameReadCallback[].

The following constants are available for this function:

For frameType:

  • BrickletCAN`FRAMEUTYPEUSTANDARDUDATA = 0
  • BrickletCAN`FRAMEUTYPEUSTANDARDUREMOTE = 1
  • BrickletCAN`FRAMEUTYPEUEXTENDEDUDATA = 2
  • BrickletCAN`FRAMEUTYPEUEXTENDEDUREMOTE = 3
event BrickletCAN@FrameReadableCallback[sender]
Callback Parameters:
  • sender – Type: NETObject[BrickletCAN]

This callback is triggered if a data or remote frame was received by the CAN transceiver. The received frame can be read with ReadFrame[]. If additional frames are received, but ReadFrame[] was not called yet, the callback will not trigger again.

A configurable read filter can be used to define which frames should be received by the CAN transceiver and put into the read queue (see SetReadFilter[]).

To enable this callback, use SetFrameReadableCallbackConfiguration[].

New in version 2.0.1 (Plugin).

Virtual Functions

Virtual functions don't communicate with the device itself, but operate only on the API bindings device object. They can be called without the corresponding IP Connection object being connected.

BrickletCAN@GetAPIVersion[] → {apiVersion1, apiVersion2, apiVersion3}
Output Parameters:
  • apiVersioni – Type: Integer
    • 1: major – Type: Integer, Range: [0 to 255]
    • 2: minor – Type: Integer, Range: [0 to 255]
    • 3: revision – Type: Integer, Range: [0 to 255]

Returns the version of the API definition implemented by this API bindings. This is neither the release version of this API bindings nor does it tell you anything about the represented Brick or Bricklet.

BrickletCAN@GetResponseExpected[functionId] → responseExpected
Parameters:
  • functionId – Type: Integer, Range: See constants
Returns:
  • responseExpected – Type: True/False

Returns the response expected flag for the function specified by the function ID parameter. It is true if the function is expected to send a response, false otherwise.

For getter functions this is enabled by default and cannot be disabled, because those functions will always send a response. For callback configuration functions it is enabled by default too, but can be disabled by SetResponseExpected[]. For setter functions it is disabled by default and can be enabled.

Enabling the response expected flag for a setter function allows to detect timeouts and other error conditions calls of this setter as well. The device will then send a response for this purpose. If this flag is disabled for a setter function then no response is sent and errors are silently ignored, because they cannot be detected.

The following constants are available for this function:

For functionId:

  • BrickletCAN`FUNCTIONUENABLEUFRAMEUREADUCALLBACK = 3
  • BrickletCAN`FUNCTIONUDISABLEUFRAMEUREADUCALLBACK = 4
  • BrickletCAN`FUNCTIONUSETUCONFIGURATION = 6
  • BrickletCAN`FUNCTIONUSETUREADUFILTER = 8
  • BrickletCAN`FUNCTIONUSETUFRAMEUREADABLEUCALLBACKUCONFIGURATION = 12
BrickletCAN@SetResponseExpected[functionId, responseExpected] → Null
Parameters:
  • functionId – Type: Integer, Range: See constants
  • responseExpected – Type: True/False

Changes the response expected flag of the function specified by the function ID parameter. This flag can only be changed for setter (default value: false) and callback configuration functions (default value: true). For getter functions it is always enabled.

Enabling the response expected flag for a setter function allows to detect timeouts and other error conditions calls of this setter as well. The device will then send a response for this purpose. If this flag is disabled for a setter function then no response is sent and errors are silently ignored, because they cannot be detected.

The following constants are available for this function:

For functionId:

  • BrickletCAN`FUNCTIONUENABLEUFRAMEUREADUCALLBACK = 3
  • BrickletCAN`FUNCTIONUDISABLEUFRAMEUREADUCALLBACK = 4
  • BrickletCAN`FUNCTIONUSETUCONFIGURATION = 6
  • BrickletCAN`FUNCTIONUSETUREADUFILTER = 8
  • BrickletCAN`FUNCTIONUSETUFRAMEUREADABLEUCALLBACKUCONFIGURATION = 12
BrickletCAN@SetResponseExpectedAll[responseExpected] → Null
Parameters:
  • responseExpected – Type: True/False

Changes the response expected flag for all setter and callback configuration functions of this device at once.

Constants

BrickletCAN`DEVICEUIDENTIFIER

This constant is used to identify a CAN Bricklet.

The GetIdentity[] function and the IPConnection@EnumerateCallback callback of the IP Connection have a deviceIdentifier parameter to specify the Brick's or Bricklet's type.

BrickletCAN`DEVICEDISPLAYNAME

This constant represents the human readable name of a CAN Bricklet.