pub struct CanBricklet { /* private fields */ }
Expand description

Communicates with CAN bus devices

Implementations§

source§

impl CanBricklet

source

pub const DEVICE_IDENTIFIER: u16 = 270u16

source

pub const DEVICE_DISPLAY_NAME: &'static str = "CAN Bricklet"

source

pub fn new<T: GetRequestSender>(uid: &str, req_sender: T) -> CanBricklet

Creates an object with the unique device ID uid. This object can then be used after the IP Connection ip_connection is connected.

source

pub fn get_response_expected( &mut self, fun: CanBrickletFunction ) -> Result<bool, GetResponseExpectedError>

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 set_response_expected. 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.

See set_response_expected for the list of function ID constants available for this function.

source

pub fn set_response_expected( &mut self, fun: CanBrickletFunction, response_expected: bool ) -> Result<(), SetResponseExpectedError>

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.

source

pub fn set_response_expected_all(&mut self, response_expected: bool)

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

source

pub fn get_api_version(&self) -> [u8; 3]

Returns the version of the API definition (major, minor, revision) 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.

source

pub fn get_frame_read_callback_receiver( &self ) -> ConvertingCallbackReceiver<FrameReadEvent>

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

The identifier return value follows the identifier format described for write_frame.

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 set_read_filter).

To enable this receiver, use enable_frame_read_callback.

source

pub fn get_frame_readable_callback_receiver( &self ) -> ConvertingCallbackReceiver<()>

This receiver is triggered if a data or remote frame was received by the CAN transceiver. The received frame can be read with [read_frame]. If additional frames are received, but [read_frame] was not called yet, the receiver 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 [set_read_filter]).

To enable this receiver, use [set_frame_readable_callback_configuration].

.. versionadded:: 2.0.1$nbsp;(Plugin)

source

pub fn write_frame( &self, frame_type: u8, identifier: u32, data: [u8; 8], length: u8 ) -> ConvertingReceiver<bool>

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 [set_configuration]). 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 [get_error_log]).

Associated constants:

  • CAN_BRICKLET_FRAME_TYPE_STANDARD_DATA
  • CAN_BRICKLET_FRAME_TYPE_STANDARD_REMOTE
  • CAN_BRICKLET_FRAME_TYPE_EXTENDED_DATA
  • CAN_BRICKLET_FRAME_TYPE_EXTENDED_REMOTE
source

pub fn read_frame(&self) -> ConvertingReceiver<ReadFrame>

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 [write_frame].

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 [set_read_filter]).

Instead of polling with this function, you can also use receivers. See the [enable_frame_read_callback] function and the [get_frame_read_callback_receiver] receiver.

Associated constants:

  • CAN_BRICKLET_FRAME_TYPE_STANDARD_DATA
  • CAN_BRICKLET_FRAME_TYPE_STANDARD_REMOTE
  • CAN_BRICKLET_FRAME_TYPE_EXTENDED_DATA
  • CAN_BRICKLET_FRAME_TYPE_EXTENDED_REMOTE
source

pub fn enable_frame_read_callback(&self) -> ConvertingReceiver<()>

Enables the [get_frame_read_callback_receiver] receiver.

By default the receiver is disabled. Enabling this receiver will disable the [get_frame_readable_callback_receiver] receiver.

source

pub fn disable_frame_read_callback(&self) -> ConvertingReceiver<()>

Disables the [get_frame_read_callback_receiver] receiver.

By default the receiver is disabled.

source

pub fn is_frame_read_callback_enabled(&self) -> ConvertingReceiver<bool>

Returns true if the [get_frame_read_callback_receiver] receiver is enabled, false otherwise.

source

pub fn set_configuration( &self, baud_rate: u8, transceiver_mode: u8, write_timeout: i32 ) -> ConvertingReceiver<()>

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.

Associated constants:

  • CAN_BRICKLET_BAUD_RATE_10KBPS
  • CAN_BRICKLET_BAUD_RATE_20KBPS
  • CAN_BRICKLET_BAUD_RATE_50KBPS
  • CAN_BRICKLET_BAUD_RATE_125KBPS
  • CAN_BRICKLET_BAUD_RATE_250KBPS
  • CAN_BRICKLET_BAUD_RATE_500KBPS
  • CAN_BRICKLET_BAUD_RATE_800KBPS
  • CAN_BRICKLET_BAUD_RATE_1000KBPS
  • CAN_BRICKLET_TRANSCEIVER_MODE_NORMAL
  • CAN_BRICKLET_TRANSCEIVER_MODE_LOOPBACK
  • CAN_BRICKLET_TRANSCEIVER_MODE_READ_ONLY
source

pub fn get_configuration(&self) -> ConvertingReceiver<Configuration>

Returns the configuration as set by [set_configuration].

Associated constants:

  • CAN_BRICKLET_BAUD_RATE_10KBPS
  • CAN_BRICKLET_BAUD_RATE_20KBPS
  • CAN_BRICKLET_BAUD_RATE_50KBPS
  • CAN_BRICKLET_BAUD_RATE_125KBPS
  • CAN_BRICKLET_BAUD_RATE_250KBPS
  • CAN_BRICKLET_BAUD_RATE_500KBPS
  • CAN_BRICKLET_BAUD_RATE_800KBPS
  • CAN_BRICKLET_BAUD_RATE_1000KBPS
  • CAN_BRICKLET_TRANSCEIVER_MODE_NORMAL
  • CAN_BRICKLET_TRANSCEIVER_MODE_LOOPBACK
  • CAN_BRICKLET_TRANSCEIVER_MODE_READ_ONLY
source

pub fn set_read_filter( &self, mode: u8, mask: u32, filter1: u32, filter2: u32 ) -> ConvertingReceiver<()>

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 BitFilter BitIdentifier/Data BitResult
0XXAccept
100Accept
101Reject
110Reject
111Accept

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.

Associated constants:

  • CAN_BRICKLET_FILTER_MODE_DISABLED
  • CAN_BRICKLET_FILTER_MODE_ACCEPT_ALL
  • CAN_BRICKLET_FILTER_MODE_MATCH_STANDARD
  • CAN_BRICKLET_FILTER_MODE_MATCH_STANDARD_AND_DATA
  • CAN_BRICKLET_FILTER_MODE_MATCH_EXTENDED
source

pub fn get_read_filter(&self) -> ConvertingReceiver<ReadFilter>

Returns the read filter as set by [set_read_filter].

Associated constants:

  • CAN_BRICKLET_FILTER_MODE_DISABLED
  • CAN_BRICKLET_FILTER_MODE_ACCEPT_ALL
  • CAN_BRICKLET_FILTER_MODE_MATCH_STANDARD
  • CAN_BRICKLET_FILTER_MODE_MATCH_STANDARD_AND_DATA
  • CAN_BRICKLET_FILTER_MODE_MATCH_EXTENDED
source

pub fn get_error_log(&self) -> ConvertingReceiver<ErrorLog>

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 [set_configuration]) 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 [set_configuration]).
  • 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 [set_read_filter]) 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 [read_frame] function. Using the [get_frame_read_callback_receiver] receiver ensures that the read buffer can not overflow.
source

pub fn set_frame_readable_callback_configuration( &self, enabled: bool ) -> ConvertingReceiver<()>

Enables/disables the [get_frame_readable_callback_receiver] receiver.

By default the receiver is disabled. Enabling this receiver will disable the [get_frame_read_callback_receiver] receiver.

.. versionadded:: 2.0.1$nbsp;(Plugin)

source

pub fn get_frame_readable_callback_configuration( &self ) -> ConvertingReceiver<bool>

Returns true if the [get_frame_readable_callback_receiver] receiver is enabled, false otherwise.

.. versionadded:: 2.0.1$nbsp;(Plugin)

source

pub fn get_identity(&self) -> ConvertingReceiver<Identity>

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. |device_identifier_constant|

Trait Implementations§

source§

impl Clone for CanBricklet

source§

fn clone(&self) -> CanBricklet

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V