can_v2_bricklet

package
v0.0.0-...-368b749 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 27, 2024 License: CC0-1.0 Imports: 5 Imported by: 0

Documentation

Overview

Communicates with CAN bus devices.

See also the documentation here: https://www.tinkerforge.com/en/doc/Software/Bricklets/CANV2_Bricklet_Go.html.

Index

Constants

View Source
const DeviceDisplayName = "CAN Bricklet 2.0"
View Source
const DeviceIdentifier = 2107

Variables

This section is empty.

Functions

This section is empty.

Types

type BootloaderMode

type BootloaderMode = uint8
const (
	BootloaderModeBootloader                    BootloaderMode = 0
	BootloaderModeFirmware                      BootloaderMode = 1
	BootloaderModeBootloaderWaitForReboot       BootloaderMode = 2
	BootloaderModeFirmwareWaitForReboot         BootloaderMode = 3
	BootloaderModeFirmwareWaitForEraseAndReboot BootloaderMode = 4
)

type BootloaderStatus

type BootloaderStatus = uint8
const (
	BootloaderStatusOK                        BootloaderStatus = 0
	BootloaderStatusInvalidMode               BootloaderStatus = 1
	BootloaderStatusNoChange                  BootloaderStatus = 2
	BootloaderStatusEntryFunctionNotPresent   BootloaderStatus = 3
	BootloaderStatusDeviceIdentifierIncorrect BootloaderStatus = 4
	BootloaderStatusCRCMismatch               BootloaderStatus = 5
)

type CANV2Bricklet

type CANV2Bricklet struct {
	// contains filtered or unexported fields
}

func New

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

func (*CANV2Bricklet) DeregisterErrorOccurredCallback

func (device *CANV2Bricklet) DeregisterErrorOccurredCallback(registrationId uint64)

Remove a registered Error Occurred callback.

func (*CANV2Bricklet) DeregisterFrameReadCallback

func (device *CANV2Bricklet) DeregisterFrameReadCallback(registrationId uint64)

Remove a registered Frame Read Low Level callback.

func (*CANV2Bricklet) DeregisterFrameReadLowLevelCallback

func (device *CANV2Bricklet) DeregisterFrameReadLowLevelCallback(registrationId uint64)

Remove a registered Frame Read Low Level callback.

func (*CANV2Bricklet) DeregisterFrameReadableCallback

func (device *CANV2Bricklet) DeregisterFrameReadableCallback(registrationId uint64)

Remove a registered Frame Readable callback.

func (*CANV2Bricklet) GetAPIVersion

func (device *CANV2Bricklet) GetAPIVersion() [3]uint8

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.

func (*CANV2Bricklet) GetBootloaderMode

func (device *CANV2Bricklet) GetBootloaderMode() (mode BootloaderMode, err error)

Returns the current bootloader mode, see SetBootloaderMode.

Associated constants:

  • BootloaderModeBootloader
  • BootloaderModeFirmware
  • BootloaderModeBootloaderWaitForReboot
  • BootloaderModeFirmwareWaitForReboot
  • BootloaderModeFirmwareWaitForEraseAndReboot

func (*CANV2Bricklet) GetChipTemperature

func (device *CANV2Bricklet) GetChipTemperature() (temperature int16, err error)

Returns the temperature as measured inside the microcontroller. The value returned is not the ambient temperature!

The temperature is only proportional to the real temperature and it has bad accuracy. Practically it is only useful as an indicator for temperature changes.

func (*CANV2Bricklet) GetCommunicationLEDConfig

func (device *CANV2Bricklet) GetCommunicationLEDConfig() (config CommunicationLEDConfig, err error)

Returns the configuration as set by SetCommunicationLEDConfig

Associated constants:

  • CommunicationLEDConfigOff
  • CommunicationLEDConfigOn
  • CommunicationLEDConfigShowHeartbeat
  • CommunicationLEDConfigShowCommunication

func (*CANV2Bricklet) GetErrorLEDConfig

func (device *CANV2Bricklet) GetErrorLEDConfig() (config ErrorLEDConfig, err error)

Returns the configuration as set by SetErrorLEDConfig.

Associated constants:

  • ErrorLEDConfigOff
  • ErrorLEDConfigOn
  • ErrorLEDConfigShowHeartbeat
  • ErrorLEDConfigShowTransceiverState
  • ErrorLEDConfigShowError

func (*CANV2Bricklet) GetErrorLog

func (device *CANV2Bricklet) GetErrorLog() (readBufferOverflowErrorOccurred []bool, transceiverState TransceiverState, transceiverWriteErrorLevel uint8, transceiverReadErrorLevel uint8, transceiverStuffingErrorCount uint32, transceiverFormatErrorCount uint32, transceiverACKErrorCount uint32, transceiverBit1ErrorCount uint32, transceiverBit0ErrorCount uint32, transceiverCRCErrorCount uint32, writeBufferTimeoutErrorCount uint32, readBufferOverflowErrorCount uint32, readBacklogOverflowErrorCount uint32, err error)

Returns information about different kinds of errors.

The write and read error levels indicate the current level of stuffing, form, acknowledgement, bit and checksum errors during CAN bus write and read operations. For each of this error kinds there is also an individual counter.

When the write error level extends 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 buffer timeout, read buffer and backlog overflow counts represents the number of these errors:

  • A write buffer timeout occurs if a frame could not be transmitted before the configured write buffer timeout expired (see SetQueueConfiguration).
  • A read buffer overflow occurs if a read buffer of the CAN transceiver still contains the last received frame when the next frame arrives. In this case the last received frame is lost. This happens if the CAN transceiver receives more frames than the Bricklet can handle. Using the read filter (see SetReadFilterConfiguration) 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 backlog overflow occurs if the read backlog of the Bricklet is already full when the next frame should be read from a read buffer of the CAN transceiver. In this case the frame in the read buffer is lost. This happens if the CAN transceiver receives more frames to be added to the read backlog than are removed from the read backlog using the ReadFrame function. Using the RegisterFrameReadCallback callback ensures that the read backlog can not overflow.

The read buffer overflow counter counts the overflows of all configured read buffers. Which read buffer exactly suffered from an overflow can be figured out from the read buffer overflow occurrence list (“read_buffer_overflow_error_occurred“). Reading the error log clears the occurence list.

func (*CANV2Bricklet) GetErrorLogLowLevel

func (device *CANV2Bricklet) GetErrorLogLowLevel() (transceiverState TransceiverState, transceiverWriteErrorLevel uint8, transceiverReadErrorLevel uint8, transceiverStuffingErrorCount uint32, transceiverFormatErrorCount uint32, transceiverACKErrorCount uint32, transceiverBit1ErrorCount uint32, transceiverBit0ErrorCount uint32, transceiverCRCErrorCount uint32, writeBufferTimeoutErrorCount uint32, readBufferOverflowErrorCount uint32, readBufferOverflowErrorOccurredLength uint8, readBufferOverflowErrorOccurredData [32]bool, readBacklogOverflowErrorCount uint32, err error)

Returns information about different kinds of errors.

The write and read error levels indicate the current level of stuffing, form, acknowledgement, bit and checksum errors during CAN bus write and read operations. For each of this error kinds there is also an individual counter.

When the write error level extends 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 buffer timeout, read buffer and backlog overflow counts represents the number of these errors:

  • A write buffer timeout occurs if a frame could not be transmitted before the configured write buffer timeout expired (see SetQueueConfiguration).
  • A read buffer overflow occurs if a read buffer of the CAN transceiver still contains the last received frame when the next frame arrives. In this case the last received frame is lost. This happens if the CAN transceiver receives more frames than the Bricklet can handle. Using the read filter (see SetReadFilterConfiguration) 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 backlog overflow occurs if the read backlog of the Bricklet is already full when the next frame should be read from a read buffer of the CAN transceiver. In this case the frame in the read buffer is lost. This happens if the CAN transceiver receives more frames to be added to the read backlog than are removed from the read backlog using the ReadFrame function. Using the RegisterFrameReadCallback callback ensures that the read backlog can not overflow.

The read buffer overflow counter counts the overflows of all configured read buffers. Which read buffer exactly suffered from an overflow can be figured out from the read buffer overflow occurrence list (“read_buffer_overflow_error_occurred“). Reading the error log clears the occurence list.

Associated constants:

  • TransceiverStateActive
  • TransceiverStatePassive
  • TransceiverStateDisabled

func (*CANV2Bricklet) GetErrorOccurredCallbackConfiguration

func (device *CANV2Bricklet) GetErrorOccurredCallbackConfiguration() (enabled bool, err error)

Returns *true* if the RegisterErrorOccurredCallback callback is enabled, *false* otherwise.

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

func (*CANV2Bricklet) GetFrameReadCallbackConfiguration

func (device *CANV2Bricklet) GetFrameReadCallbackConfiguration() (enabled bool, err error)

Returns *true* if the RegisterFrameReadCallback callback is enabled, *false* otherwise.

func (*CANV2Bricklet) GetFrameReadableCallbackConfiguration

func (device *CANV2Bricklet) GetFrameReadableCallbackConfiguration() (enabled bool, err error)

Returns *true* if the RegisterFrameReadableCallback callback is enabled, *false* otherwise.

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

func (*CANV2Bricklet) GetIdentity

func (device *CANV2Bricklet) GetIdentity() (uid string, connectedUid string, position rune, hardwareVersion [3]uint8, firmwareVersion [3]uint8, deviceIdentifier uint16, err error)

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 <isolator_bricklet>` is always at position 'z'.

The device identifier numbers can be found `here <device_identifier>`. |device_identifier_constant|

func (*CANV2Bricklet) GetQueueConfiguration

func (device *CANV2Bricklet) GetQueueConfiguration() (readBufferSizes []int8, writeBufferSize uint8, writeBufferTimeout int32, writeBacklogSize uint16, readBacklogSize uint16, err error)

Returns the queue configuration as set by SetQueueConfiguration.

func (*CANV2Bricklet) GetQueueConfigurationLowLevel

func (device *CANV2Bricklet) GetQueueConfigurationLowLevel() (writeBufferSize uint8, writeBufferTimeout int32, writeBacklogSize uint16, readBufferSizesLength uint8, readBufferSizesData [32]int8, readBacklogSize uint16, err error)

Returns the queue configuration as set by SetQueueConfiguration.

func (*CANV2Bricklet) GetReadFilterConfiguration

func (device *CANV2Bricklet) GetReadFilterConfiguration(bufferIndex uint8) (filterMode FilterMode, filterMask uint32, filterIdentifier uint32, err error)

Returns the read filter configuration as set by SetReadFilterConfiguration.

Associated constants:

  • FilterModeAcceptAll
  • FilterModeMatchStandardOnly
  • FilterModeMatchExtendedOnly
  • FilterModeMatchStandardAndExtended

func (*CANV2Bricklet) GetResponseExpected

func (device *CANV2Bricklet) GetResponseExpected(functionID Function) (bool, error)

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.

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

func (*CANV2Bricklet) GetSPITFPErrorCount

func (device *CANV2Bricklet) GetSPITFPErrorCount() (errorCountAckChecksum uint32, errorCountMessageChecksum uint32, errorCountFrame uint32, errorCountOverflow uint32, err error)

Returns the error count for the communication between Brick and Bricklet.

The errors are divided into

* ACK checksum errors, * message checksum errors, * framing errors and * overflow errors.

The errors counts are for errors that occur on the Bricklet side. All Bricks have a similar function that returns the errors on the Brick side.

func (*CANV2Bricklet) GetStatusLEDConfig

func (device *CANV2Bricklet) GetStatusLEDConfig() (config StatusLEDConfig, err error)

Returns the configuration as set by SetStatusLEDConfig

Associated constants:

  • StatusLEDConfigOff
  • StatusLEDConfigOn
  • StatusLEDConfigShowHeartbeat
  • StatusLEDConfigShowStatus

func (*CANV2Bricklet) GetTransceiverConfiguration

func (device *CANV2Bricklet) GetTransceiverConfiguration() (baudRate uint32, samplePoint uint16, transceiverMode TransceiverMode, err error)

Returns the configuration as set by SetTransceiverConfiguration.

Associated constants:

  • TransceiverModeNormal
  • TransceiverModeLoopback
  • TransceiverModeReadOnly

func (*CANV2Bricklet) ReadFrame

func (device *CANV2Bricklet) ReadFrame() (data []uint8, success bool, frameType FrameType, identifier uint32, err error)

Tries to read the next data or remote frame from the read queue and returns 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 queue 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.

The “data“ return value can be up to 15 bytes long. For data frames up to the first 8 bytes are the actual received data. All bytes after the 8th byte are always zero and only there to indicate the length of a data or remote frame with excess length. For remote frames the length of the “data“ return value represents the requested length. The actual “data“ bytes are always zero.

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

Instead of polling with this function, you can also use callbacks. See the SetFrameReadCallbackConfiguration function and the RegisterFrameReadCallback callback.

func (*CANV2Bricklet) ReadFrameLowLevel

func (device *CANV2Bricklet) ReadFrameLowLevel() (success bool, frameType FrameType, identifier uint32, dataLength uint8, dataData [15]uint8, err error)

Tries to read the next data or remote frame from the read queue and returns 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 queue 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.

The “data“ return value can be up to 15 bytes long. For data frames up to the first 8 bytes are the actual received data. All bytes after the 8th byte are always zero and only there to indicate the length of a data or remote frame with excess length. For remote frames the length of the “data“ return value represents the requested length. The actual “data“ bytes are always zero.

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

Instead of polling with this function, you can also use callbacks. See the SetFrameReadCallbackConfiguration function and the RegisterFrameReadCallback callback.

Associated constants:

  • FrameTypeStandardData
  • FrameTypeStandardRemote
  • FrameTypeExtendedData
  • FrameTypeExtendedRemote

func (*CANV2Bricklet) ReadUID

func (device *CANV2Bricklet) ReadUID() (uid uint32, err error)

Returns the current UID as an integer. Encode as Base58 to get the usual string version.

func (*CANV2Bricklet) RegisterErrorOccurredCallback

func (device *CANV2Bricklet) RegisterErrorOccurredCallback(fn func()) uint64

This callback is triggered if any error occurred while writing, reading or transmitting CAN frames.

The callback is only triggered once until GetErrorLog is called. That function will return details abount the error(s) occurred.

To enable this callback, use SetErrorOccurredCallbackConfiguration.

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

func (*CANV2Bricklet) RegisterFrameReadCallback

func (device *CANV2Bricklet) RegisterFrameReadCallback(fn func(FrameType, uint32, []uint8)) uint64

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 details on the “data“ return value see ReadFrame.

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

To enable this callback, use SetFrameReadCallbackConfiguration.

Note

If reconstructing the value fails, the callback is triggered with nil for data.

func (*CANV2Bricklet) RegisterFrameReadLowLevelCallback

func (device *CANV2Bricklet) RegisterFrameReadLowLevelCallback(fn func(FrameType, uint32, uint8, [15]uint8)) uint64

See RegisterFrameReadCallback

func (*CANV2Bricklet) RegisterFrameReadableCallback

func (device *CANV2Bricklet) RegisterFrameReadableCallback(fn func()) uint64

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

To enable this callback, use SetFrameReadableCallbackConfiguration.

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

func (*CANV2Bricklet) Reset

func (device *CANV2Bricklet) Reset() (err error)

Calling this function will reset the Bricklet. All configurations will be lost.

After a reset you have to create new device objects, calling functions on the existing ones will result in undefined behavior!

func (*CANV2Bricklet) SetBootloaderMode

func (device *CANV2Bricklet) SetBootloaderMode(mode BootloaderMode) (status BootloaderStatus, err error)

Sets the bootloader mode and returns the status after the requested mode change was instigated.

You can change from bootloader mode to firmware mode and vice versa. A change from bootloader mode to firmware mode will only take place if the entry function, device identifier and CRC are present and correct.

This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.

Associated constants:

  • BootloaderModeBootloader
  • BootloaderModeFirmware
  • BootloaderModeBootloaderWaitForReboot
  • BootloaderModeFirmwareWaitForReboot
  • BootloaderModeFirmwareWaitForEraseAndReboot
  • BootloaderStatusOK
  • BootloaderStatusInvalidMode
  • BootloaderStatusNoChange
  • BootloaderStatusEntryFunctionNotPresent
  • BootloaderStatusDeviceIdentifierIncorrect
  • BootloaderStatusCRCMismatch

func (*CANV2Bricklet) SetCommunicationLEDConfig

func (device *CANV2Bricklet) SetCommunicationLEDConfig(config CommunicationLEDConfig) (err error)

Sets the communication LED configuration. By default the LED shows CAN-Bus traffic, it flickers once for every 40 transmitted or received frames.

You can also turn the LED permanently on/off or show a heartbeat.

If the Bricklet is in bootloader mode, the LED is off.

Associated constants:

  • CommunicationLEDConfigOff
  • CommunicationLEDConfigOn
  • CommunicationLEDConfigShowHeartbeat
  • CommunicationLEDConfigShowCommunication

func (*CANV2Bricklet) SetErrorLEDConfig

func (device *CANV2Bricklet) SetErrorLEDConfig(config ErrorLEDConfig) (err error)

Sets the error LED configuration.

By default (show-transceiver-state) the error LED turns on if the CAN transceiver is passive or disabled state (see GetErrorLog). If the CAN transceiver is in active state the LED turns off.

If the LED is configured as show-error then the error LED turns on if any error occurs. If you call this function with the show-error option again, the LED will turn off until the next error occurs.

You can also turn the LED permanently on/off or show a heartbeat.

If the Bricklet is in bootloader mode, the LED is off.

Associated constants:

  • ErrorLEDConfigOff
  • ErrorLEDConfigOn
  • ErrorLEDConfigShowHeartbeat
  • ErrorLEDConfigShowTransceiverState
  • ErrorLEDConfigShowError

func (*CANV2Bricklet) SetErrorOccurredCallbackConfiguration

func (device *CANV2Bricklet) SetErrorOccurredCallbackConfiguration(enabled bool) (err error)

Enables and disables the RegisterErrorOccurredCallback callback.

By default the callback is disabled.

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

func (*CANV2Bricklet) SetFrameReadCallbackConfiguration

func (device *CANV2Bricklet) SetFrameReadCallbackConfiguration(enabled bool) (err error)

Enables and disables the RegisterFrameReadCallback callback.

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

func (*CANV2Bricklet) SetFrameReadableCallbackConfiguration

func (device *CANV2Bricklet) SetFrameReadableCallbackConfiguration(enabled bool) (err error)

Enables and disables the RegisterFrameReadableCallback callback.

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

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

func (*CANV2Bricklet) SetQueueConfiguration

func (device *CANV2Bricklet) SetQueueConfiguration(writeBufferSize uint8, writeBufferTimeout int32, writeBacklogSize uint16, readBacklogSize uint16, readBufferSizes []int8) (err error)

Sets the write and read queue configuration.

The CAN transceiver has 32 buffers in total in hardware for transmitting and receiving frames. Additionally, the Bricklet has a backlog for 768 frames in total in software. The buffers and the backlog can be freely assigned to the write and read queues.

WriteFrame writes a frame into the write backlog. The Bricklet moves the frame from the backlog into a free write buffer. The CAN transceiver then transmits the frame from the write buffer to the CAN bus. If there are no write buffers (“write_buffer_size“ is zero) or there is no write backlog (“write_backlog_size“ is zero) then no frames can be transmitted and WriteFrame returns always *false*.

The CAN transceiver receives a frame from the CAN bus and stores it into a free read buffer. The Bricklet moves the frame from the read buffer into the read backlog. ReadFrame reads the frame from the read backlog and returns it. If there are no read buffers (“read_buffer_sizes“ is empty) or there is no read backlog (“read_backlog_size“ is zero) then no frames can be received and ReadFrame returns always *false*.

There can be multiple read buffers, because the CAN transceiver cannot receive data and remote frames into the same read buffer. A positive read buffer size represents a data frame read buffer and a negative read buffer size represents a remote frame read buffer. A read buffer size of zero is not allowed. By default the first read buffer is configured for data frames and the second read buffer is configured for remote frame. There can be up to 32 different read buffers, assuming that no write buffer is used. Each read buffer has its own filter configuration (see SetReadFilterConfiguration).

A valid queue configuration fulfills these conditions::

write_buffer_size + abs(read_buffer_size_0) + abs(read_buffer_size_1) + ... + abs(read_buffer_size_31) <= 32
write_backlog_size + read_backlog_size <= 768

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

  • Single-Shot (< 0): 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 current content of the queues is lost when this function is called.

func (*CANV2Bricklet) SetQueueConfigurationLowLevel

func (device *CANV2Bricklet) SetQueueConfigurationLowLevel(writeBufferSize uint8, writeBufferTimeout int32, writeBacklogSize uint16, readBufferSizesLength uint8, readBufferSizesData [32]int8, readBacklogSize uint16) (err error)

Sets the write and read queue configuration.

The CAN transceiver has 32 buffers in total in hardware for transmitting and receiving frames. Additionally, the Bricklet has a backlog for 768 frames in total in software. The buffers and the backlog can be freely assigned to the write and read queues.

WriteFrame writes a frame into the write backlog. The Bricklet moves the frame from the backlog into a free write buffer. The CAN transceiver then transmits the frame from the write buffer to the CAN bus. If there are no write buffers (“write_buffer_size“ is zero) or there is no write backlog (“write_backlog_size“ is zero) then no frames can be transmitted and WriteFrame returns always *false*.

The CAN transceiver receives a frame from the CAN bus and stores it into a free read buffer. The Bricklet moves the frame from the read buffer into the read backlog. ReadFrame reads the frame from the read backlog and returns it. If there are no read buffers (“read_buffer_sizes“ is empty) or there is no read backlog (“read_backlog_size“ is zero) then no frames can be received and ReadFrame returns always *false*.

There can be multiple read buffers, because the CAN transceiver cannot receive data and remote frames into the same read buffer. A positive read buffer size represents a data frame read buffer and a negative read buffer size represents a remote frame read buffer. A read buffer size of zero is not allowed. By default the first read buffer is configured for data frames and the second read buffer is configured for remote frame. There can be up to 32 different read buffers, assuming that no write buffer is used. Each read buffer has its own filter configuration (see SetReadFilterConfiguration).

A valid queue configuration fulfills these conditions::

write_buffer_size + abs(read_buffer_size_0) + abs(read_buffer_size_1) + ... + abs(read_buffer_size_31) <= 32
write_backlog_size + read_backlog_size <= 768

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

  • Single-Shot (< 0): 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 current content of the queues is lost when this function is called.

func (*CANV2Bricklet) SetReadFilterConfiguration

func (device *CANV2Bricklet) SetReadFilterConfiguration(bufferIndex uint8, filterMode FilterMode, filterMask uint32, filterIdentifier uint32) (err error)

Set the read filter configuration for the given read buffer index. 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 four different modes that define if and how the filter mask and the filter identifier are applied:

  • Accept-All: All frames are received.
  • Match-Standard-Only: Only standard frames with a matching identifier are received.
  • Match-Extended-Only: Only extended frames with a matching identifier are received.
  • Match-Standard-And-Extended: Standard and extended frames with a matching identifier are received.

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

  • Accept-All: Mask and identifier are ignored.
  • Match-Standard-Only: Bit 0 to 10 (11 bits) of filter mask and filter identifier are used to match the 11-bit identifier of standard frames.
  • Match-Extended-Only: Bit 0 to 28 (29 bits) of filter mask and filter identifier are used to match the 29-bit identifier of extended frames.
  • Match-Standard-And-Extended: Bit 18 to 28 (11 bits) of filter mask and filter identifier are used to match the 11-bit identifier of standard frames, bit 0 to 17 (18 bits) are ignored in this case. Bit 0 to 28 (29 bits) of filter mask and filter identifier are used to match the 29-bit identifier of extended frames.

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

Filter Mask Bit| Filter Identifier Bit| Frame Identifier 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-Only with 0x7FF as mask and 0x123 as identifier. 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.

There can be up to 32 different read filters configured at the same time, because there can be up to 32 read buffer (see SetQueueConfiguration).

The default mode is accept-all for all read buffers.

Associated constants:

  • FilterModeAcceptAll
  • FilterModeMatchStandardOnly
  • FilterModeMatchExtendedOnly
  • FilterModeMatchStandardAndExtended

func (*CANV2Bricklet) SetResponseExpected

func (device *CANV2Bricklet) SetResponseExpected(functionID Function, responseExpected bool) error

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.

func (*CANV2Bricklet) SetResponseExpectedAll

func (device *CANV2Bricklet) SetResponseExpectedAll(responseExpected bool)

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

func (*CANV2Bricklet) SetStatusLEDConfig

func (device *CANV2Bricklet) SetStatusLEDConfig(config StatusLEDConfig) (err error)

Sets the status LED configuration. By default the LED shows communication traffic between Brick and Bricklet, it flickers once for every 10 received data packets.

You can also turn the LED permanently on/off or show a heartbeat.

If the Bricklet is in bootloader mode, the LED is will show heartbeat by default.

Associated constants:

  • StatusLEDConfigOff
  • StatusLEDConfigOn
  • StatusLEDConfigShowHeartbeat
  • StatusLEDConfigShowStatus

func (*CANV2Bricklet) SetTransceiverConfiguration

func (device *CANV2Bricklet) SetTransceiverConfiguration(baudRate uint32, samplePoint uint16, transceiverMode TransceiverMode) (err error)

Sets the transceiver configuration for the CAN bus communication.

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.

Associated constants:

  • TransceiverModeNormal
  • TransceiverModeLoopback
  • TransceiverModeReadOnly

func (*CANV2Bricklet) SetWriteFirmwarePointer

func (device *CANV2Bricklet) SetWriteFirmwarePointer(pointer uint32) (err error)

Sets the firmware pointer for WriteFirmware. The pointer has to be increased by chunks of size 64. The data is written to flash every 4 chunks (which equals to one page of size 256).

This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.

func (*CANV2Bricklet) WriteFirmware

func (device *CANV2Bricklet) WriteFirmware(data [64]uint8) (status uint8, err error)

Writes 64 Bytes of firmware at the position as written by SetWriteFirmwarePointer before. The firmware is written to flash every 4 chunks.

You can only write firmware in bootloader mode.

This function is used by Brick Viewer during flashing. It should not be necessary to call it in a normal user program.

func (*CANV2Bricklet) WriteFrame

func (device *CANV2Bricklet) WriteFrame(frameType FrameType, identifier uint32, data []uint8) (success bool, err error)

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

The Bricklet supports the standard 11-bit (CAN 2.0A) and the additional extended 29-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 uses bit 0 to 28 from the “identifier“ parameter as extended 29-bit identifier.

The “data“ parameter can be up to 15 bytes long. For data frames up to 8 bytes will be used as the actual data. The length (DLC) field in the data or remote frame will be set to the actual length of the “data“ parameter. This allows to transmit data and remote frames with excess length. For remote frames only the length of the “data“ parameter is used. The actual “data“ bytes are ignored.

Returns *true* if the frame was successfully added to the write queue. Returns *false* if the frame could not be added because write queue is already full or because the write buffer or the write backlog are configured with a size of zero (see SetQueueConfiguration).

The write queue 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 SetTransceiverConfiguration). 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).

func (*CANV2Bricklet) WriteFrameLowLevel

func (device *CANV2Bricklet) WriteFrameLowLevel(frameType FrameType, identifier uint32, dataLength uint8, dataData [15]uint8) (success bool, err error)

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

The Bricklet supports the standard 11-bit (CAN 2.0A) and the additional extended 29-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 uses bit 0 to 28 from the “identifier“ parameter as extended 29-bit identifier.

The “data“ parameter can be up to 15 bytes long. For data frames up to 8 bytes will be used as the actual data. The length (DLC) field in the data or remote frame will be set to the actual length of the “data“ parameter. This allows to transmit data and remote frames with excess length. For remote frames only the length of the “data“ parameter is used. The actual “data“ bytes are ignored.

Returns *true* if the frame was successfully added to the write queue. Returns *false* if the frame could not be added because write queue is already full or because the write buffer or the write backlog are configured with a size of zero (see SetQueueConfiguration).

The write queue 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 SetTransceiverConfiguration). 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).

Associated constants:

  • FrameTypeStandardData
  • FrameTypeStandardRemote
  • FrameTypeExtendedData
  • FrameTypeExtendedRemote

func (*CANV2Bricklet) WriteUID

func (device *CANV2Bricklet) WriteUID(uid uint32) (err error)

Writes a new UID into flash. If you want to set a new UID you have to decode the Base58 encoded UID string into an integer first.

We recommend that you use Brick Viewer to change the UID.

type CommunicationLEDConfig

type CommunicationLEDConfig = uint8
const (
	CommunicationLEDConfigOff               CommunicationLEDConfig = 0
	CommunicationLEDConfigOn                CommunicationLEDConfig = 1
	CommunicationLEDConfigShowHeartbeat     CommunicationLEDConfig = 2
	CommunicationLEDConfigShowCommunication CommunicationLEDConfig = 3
)

type ErrorLEDConfig

type ErrorLEDConfig = uint8
const (
	ErrorLEDConfigOff                  ErrorLEDConfig = 0
	ErrorLEDConfigOn                   ErrorLEDConfig = 1
	ErrorLEDConfigShowHeartbeat        ErrorLEDConfig = 2
	ErrorLEDConfigShowTransceiverState ErrorLEDConfig = 3
	ErrorLEDConfigShowError            ErrorLEDConfig = 4
)

type FilterMode

type FilterMode = uint8
const (
	FilterModeAcceptAll                FilterMode = 0
	FilterModeMatchStandardOnly        FilterMode = 1
	FilterModeMatchExtendedOnly        FilterMode = 2
	FilterModeMatchStandardAndExtended FilterMode = 3
)

type FrameType

type FrameType = uint8
const (
	FrameTypeStandardData   FrameType = 0
	FrameTypeStandardRemote FrameType = 1
	FrameTypeExtendedData   FrameType = 2
	FrameTypeExtendedRemote FrameType = 3
)

type Function

type Function = uint8
const (
	FunctionWriteFrameLowLevel                    Function = 1
	FunctionReadFrameLowLevel                     Function = 2
	FunctionSetFrameReadCallbackConfiguration     Function = 3
	FunctionGetFrameReadCallbackConfiguration     Function = 4
	FunctionSetTransceiverConfiguration           Function = 5
	FunctionGetTransceiverConfiguration           Function = 6
	FunctionSetQueueConfigurationLowLevel         Function = 7
	FunctionGetQueueConfigurationLowLevel         Function = 8
	FunctionSetReadFilterConfiguration            Function = 9
	FunctionGetReadFilterConfiguration            Function = 10
	FunctionGetErrorLogLowLevel                   Function = 11
	FunctionSetCommunicationLEDConfig             Function = 12
	FunctionGetCommunicationLEDConfig             Function = 13
	FunctionSetErrorLEDConfig                     Function = 14
	FunctionGetErrorLEDConfig                     Function = 15
	FunctionSetFrameReadableCallbackConfiguration Function = 17
	FunctionGetFrameReadableCallbackConfiguration Function = 18
	FunctionSetErrorOccurredCallbackConfiguration Function = 20
	FunctionGetErrorOccurredCallbackConfiguration Function = 21
	FunctionGetSPITFPErrorCount                   Function = 234
	FunctionSetBootloaderMode                     Function = 235
	FunctionGetBootloaderMode                     Function = 236
	FunctionSetWriteFirmwarePointer               Function = 237
	FunctionWriteFirmware                         Function = 238
	FunctionSetStatusLEDConfig                    Function = 239
	FunctionGetStatusLEDConfig                    Function = 240
	FunctionGetChipTemperature                    Function = 242
	FunctionReset                                 Function = 243
	FunctionWriteUID                              Function = 248
	FunctionReadUID                               Function = 249
	FunctionGetIdentity                           Function = 255
	FunctionCallbackFrameReadLowLevel             Function = 16
	FunctionCallbackFrameReadable                 Function = 19
	FunctionCallbackErrorOccurred                 Function = 22
)

type StatusLEDConfig

type StatusLEDConfig = uint8
const (
	StatusLEDConfigOff           StatusLEDConfig = 0
	StatusLEDConfigOn            StatusLEDConfig = 1
	StatusLEDConfigShowHeartbeat StatusLEDConfig = 2
	StatusLEDConfigShowStatus    StatusLEDConfig = 3
)

type TransceiverMode

type TransceiverMode = uint8
const (
	TransceiverModeNormal   TransceiverMode = 0
	TransceiverModeLoopback TransceiverMode = 1
	TransceiverModeReadOnly TransceiverMode = 2
)

type TransceiverState

type TransceiverState = uint8
const (
	TransceiverStateActive   TransceiverState = 0
	TransceiverStatePassive  TransceiverState = 1
	TransceiverStateDisabled TransceiverState = 2
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL