Qt CAN Bus

A Controller Area Network (CAN) is a vehicle bus standard designed to allow microcontrollers and devices to communicate with each other in applications without a host computer.

Overview

It is a message-based protocol, designed originally for multiplex electrical wiring within automobiles, but is also used in many other contexts.

The CAN Bus API provides some common API to access the CAN devices:

CAN Bus Plugins

Multiple vendors provide CAN devices with varying APIs for access. The QtSerialBus module supports the following sets of CAN bus plugins:

VendorPlugin (key)Brief description
CAN over Linux socketsSocketCAN (socketcan)CAN bus plugin using Linux sockets and open source drivers.
CAN via SAE J2534 Pass-ThruPassThruCAN (passthrucan)CAN bus plugin using the SAE J2534 Pass-Thru interface.
SYS TEC electronicSystecCAN (systeccan)CAN bus backend using the SYS TEC CAN adapters.
PEAK-SystemPeakCAN (peakcan)CAN bus plugin using the PEAK CAN adapters.
MHS ElektronikTinyCAN (tinycan)CAN bus plugin using the MHS CAN adapters.
Vector InformatikVectorCAN (vectorcan)CAN bus plugin using the Vector CAN adapters.
Virtual CAN interfaceVirtualCAN (virtualcan)CAN bus plugin using a virtual TCP/IP connection.

Implementing a Custom CAN Plugin

If the plugins provided by Qt are not suitable for the required target platform, a custom CAN bus plugin can be implemented. The implementation follows the standard way of implementing Qt plug-ins. The custom plugin must be deployed to $QTDIR/plugins/canbus.

Each plugin must define a key, which is used to load the plugin. This is done via a small json file. For example, the socketcan plugin uses the following plugin.json:

{
    "Key": "socketcan"
}

This key must be passed to QCanBus::createDevice() together with the interface name of the CAN bus adapter. QCanBus loads and instantiates the plugin using the QCanBusFactoryV2 interface which each plugin must implement as central entry point. The interface acts as a factory and its sole purpose is to return a QCanBusDevice instance. The above mentioned interface name is passed on via the factory's QCanBusFactory::createDevice() method. The following is the factory implementation of the socketcan plugin:

class SocketCanBusPlugin : public QObject, public QCanBusFactoryV2
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QCanBusFactory" FILE "plugin.json")
    Q_INTERFACES(QCanBusFactoryV2)

public:
    QList<QCanBusDeviceInfo> availableDevices(QString *errorMessage) const override
    {
        Q_UNUSED(errorMessage);
        return SocketCanBackend::interfaces();
    }

    QCanBusDevice *createDevice(const QString &interfaceName, QString *errorMessage) const override
    {
        Q_UNUSED(errorMessage);
        auto device = new SocketCanBackend(interfaceName);
        return device;
    }
};

The next step is to provide an implementation of QCanBusDevice. At the very least, the following pure virtual functions must be implemented:

The open() and close() methods are used in conjunction with QCanBusDevice::connectDevice() and QCanBusDevice::disconnectDevice() respectively. Check the function documentation for implementation details.

QCanBusDevice::writeFrame() is responsible for sanity checks such as the validity of the QCanBusFrame and that the device is still connected. Provided that the checks passed, it writes the frame to the CAN bus. Upon success it emits the QCanBusDevice::framesWritten() signal; otherwise QCanBusDevice::setError() is called with an appropriate error message. This function may also be used to implement an asynchronous write operation. It is the plugin implementors responsibility to emit the appropriate signals at the appropriate time.

Last but not least, QCanBusDevice::interpretErrorFrame provides a convenient way to translate the content of an CAN bus error frame to a human-readable error string.

© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.