├── .cmake.conf ├── .gitreview ├── .tag ├── CMakeLists.txt ├── LICENSES ├── BSD-3-Clause.txt ├── GFDL-1.3-no-invariants-only.txt ├── GPL-2.0-only.txt ├── GPL-3.0-only.txt ├── LGPL-3.0-only.txt ├── LicenseRef-Qt-Commercial.txt └── Qt-GPL-exception-1.0.txt ├── REUSE.toml ├── coin ├── axivion │ └── ci_config_linux.json └── module_config.yaml ├── config.tests ├── socketcan │ ├── CMakeLists.txt │ └── main.cpp └── socketcan_fd │ ├── CMakeLists.txt │ └── main.cpp ├── configure.cmake ├── dependencies.yaml ├── dist ├── REUSE.toml ├── changes-5.10.0 ├── changes-5.10.1 ├── changes-5.11.0 ├── changes-5.11.1 ├── changes-5.11.2 ├── changes-5.11.3 ├── changes-5.12.0 ├── changes-5.12.1 ├── changes-5.12.10 ├── changes-5.12.2 ├── changes-5.12.3 ├── changes-5.12.4 ├── changes-5.12.5 ├── changes-5.13.0 ├── changes-5.13.1 ├── changes-5.13.2 ├── changes-5.14.0 ├── changes-5.14.1 ├── changes-5.14.2 ├── changes-5.15.0 ├── changes-5.15.1 ├── changes-5.6.1 ├── changes-5.6.2 ├── changes-5.6.3 ├── changes-5.7.0 ├── changes-5.7.1 ├── changes-5.8.0 ├── changes-5.9.0 ├── changes-5.9.1 ├── changes-5.9.2 ├── changes-5.9.3 ├── changes-5.9.4 ├── changes-5.9.5 └── changes-5.9.6 ├── examples ├── CMakeLists.txt ├── examples.pro └── serialbus │ ├── CMakeLists.txt │ ├── can │ ├── CMakeLists.txt │ ├── bitratebox.cpp │ ├── bitratebox.h │ ├── can.pro │ ├── can.qrc │ ├── canbusdeviceinfobox.cpp │ ├── canbusdeviceinfobox.h │ ├── canbusdeviceinfobox.ui │ ├── canbusdeviceinfodialog.cpp │ ├── canbusdeviceinfodialog.h │ ├── canbusdeviceinfodialog.ui │ ├── common.h │ ├── connectdialog.cpp │ ├── connectdialog.h │ ├── connectdialog.ui │ ├── images │ │ ├── application-exit.png │ │ ├── clear.png │ │ ├── connect.png │ │ └── disconnect.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── receivedframesmodel.cpp │ ├── receivedframesmodel.h │ ├── receivedframesview.cpp │ ├── receivedframesview.h │ ├── sendframebox.cpp │ ├── sendframebox.h │ └── sendframebox.ui │ ├── modbus │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ ├── client.pro │ │ ├── client.qrc │ │ ├── doc │ │ │ ├── images │ │ │ │ └── modbusclient.png │ │ │ └── src │ │ │ │ └── modbusclient.qdoc │ │ ├── images │ │ │ ├── application-exit.png │ │ │ ├── connect.png │ │ │ ├── disconnect.png │ │ │ └── settings.png │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── settingsdialog.cpp │ │ ├── settingsdialog.h │ │ ├── settingsdialog.ui │ │ ├── writeregistermodel.cpp │ │ └── writeregistermodel.h │ ├── custom │ │ ├── CMakeLists.txt │ │ ├── custom.pro │ │ ├── doc │ │ │ ├── images │ │ │ │ └── custom.png │ │ │ └── src │ │ │ │ └── custom.qdoc │ │ ├── images.qrc │ │ ├── images │ │ │ ├── application-exit.png │ │ │ ├── connect.png │ │ │ ├── disconnect.png │ │ │ └── settings.png │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── modbusclient.cpp │ │ ├── modbusclient.h │ │ ├── modbusserver.cpp │ │ ├── modbusserver.h │ │ ├── registermodel.cpp │ │ └── registermodel.h │ ├── modbus.pro │ └── server │ │ ├── CMakeLists.txt │ │ ├── doc │ │ ├── images │ │ │ └── modbusserver.png │ │ └── src │ │ │ └── modbusserver.qdoc │ │ ├── images │ │ ├── application-exit.png │ │ ├── connect.png │ │ ├── disconnect.png │ │ └── settings.png │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── server.pro │ │ ├── server.qrc │ │ ├── settingsdialog.cpp │ │ ├── settingsdialog.h │ │ └── settingsdialog.ui │ └── serialbus.pro ├── licenseRule.json ├── qt_cmdline.cmake ├── src ├── CMakeLists.txt ├── plugins │ ├── CMakeLists.txt │ └── canbus │ │ ├── CMakeLists.txt │ │ ├── passthrucan │ │ ├── CMakeLists.txt │ │ ├── j2534passthru.cpp │ │ ├── j2534passthru.h │ │ ├── main.cpp │ │ ├── passthrucanbackend.cpp │ │ ├── passthrucanbackend.h │ │ ├── passthrucanio.cpp │ │ ├── passthrucanio.h │ │ └── plugin.json │ │ ├── peakcan │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── peakcan_symbols_p.h │ │ ├── peakcanbackend.cpp │ │ ├── peakcanbackend.h │ │ ├── peakcanbackend_p.h │ │ └── plugin.json │ │ ├── socketcan │ │ ├── CMakeLists.txt │ │ ├── libsocketcan.cpp │ │ ├── libsocketcan.h │ │ ├── main.cpp │ │ ├── plugin.json │ │ ├── socketcanbackend.cpp │ │ └── socketcanbackend.h │ │ ├── systeccan │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── plugin.json │ │ ├── systeccan_symbols_p.h │ │ ├── systeccanbackend.cpp │ │ ├── systeccanbackend.h │ │ └── systeccanbackend_p.h │ │ ├── tinycan │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── plugin.json │ │ ├── tinycan_symbols_p.h │ │ ├── tinycanbackend.cpp │ │ ├── tinycanbackend.h │ │ └── tinycanbackend_p.h │ │ ├── vectorcan │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── plugin.json │ │ ├── vectorcan_symbols_p.h │ │ ├── vectorcanbackend.cpp │ │ ├── vectorcanbackend.h │ │ └── vectorcanbackend_p.h │ │ └── virtualcan │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── plugin.json │ │ ├── virtualcanbackend.cpp │ │ └── virtualcanbackend.h ├── serialbus │ ├── CMakeLists.txt │ ├── configure.cmake │ ├── doc │ │ ├── images │ │ │ ├── can-example.png │ │ │ ├── canbus_signals_be.png │ │ │ └── canbus_signals_le.png │ │ ├── qtserialbus.qdocconf │ │ ├── snippets │ │ │ └── snippetmain.cpp │ │ └── src │ │ │ ├── examples │ │ │ ├── can.qdoc │ │ │ └── qtserialbus-examples.qdoc │ │ │ ├── external-resources.qdoc │ │ │ ├── passthrucan.qdoc │ │ │ ├── peakcan.qdoc │ │ │ ├── qt6-changes.qdoc │ │ │ ├── qtcanbus-backends.qdoc │ │ │ ├── qtmodbus-backends.qdoc │ │ │ ├── qtserialbus-index.qdoc │ │ │ ├── qtserialbus-module-cpp.qdoc │ │ │ ├── qtserialbus-module-use.qdocinc │ │ │ ├── qtserialbus-toc.qdoc │ │ │ ├── socketcan.qdoc │ │ │ ├── systeccan.qdoc │ │ │ ├── tinycan.qdoc │ │ │ ├── vectorcan.qdoc │ │ │ └── virtualcan.qdoc │ ├── qcanbus.cpp │ ├── qcanbus.h │ ├── qcanbusdevice.cpp │ ├── qcanbusdevice.h │ ├── qcanbusdevice_p.h │ ├── qcanbusdeviceinfo.cpp │ ├── qcanbusdeviceinfo.h │ ├── qcanbusdeviceinfo_p.h │ ├── qcanbusfactory.cpp │ ├── qcanbusfactory.h │ ├── qcanbusframe.cpp │ ├── qcanbusframe.h │ ├── qcancommondefinitions.cpp │ ├── qcancommondefinitions.h │ ├── qcandbcfileparser.cpp │ ├── qcandbcfileparser.h │ ├── qcandbcfileparser_p.h │ ├── qcanframeprocessor.cpp │ ├── qcanframeprocessor.h │ ├── qcanframeprocessor_p.h │ ├── qcanmessagedescription.cpp │ ├── qcanmessagedescription.h │ ├── qcanmessagedescription_p.h │ ├── qcansignaldescription.cpp │ ├── qcansignaldescription.h │ ├── qcansignaldescription_p.h │ ├── qcanuniqueiddescription.cpp │ ├── qcanuniqueiddescription.h │ ├── qcanuniqueiddescription_p.h │ ├── qmodbus_symbols_p.h │ ├── qmodbusadu_p.h │ ├── qmodbusclient.cpp │ ├── qmodbusclient.h │ ├── qmodbusclient_p.h │ ├── qmodbuscommevent_p.h │ ├── qmodbusdataunit.cpp │ ├── qmodbusdataunit.h │ ├── qmodbusdevice.cpp │ ├── qmodbusdevice.h │ ├── qmodbusdevice_p.h │ ├── qmodbusdeviceidentification.cpp │ ├── qmodbusdeviceidentification.h │ ├── qmodbuspdu.cpp │ ├── qmodbuspdu.h │ ├── qmodbusreply.cpp │ ├── qmodbusreply.h │ ├── qmodbusrtuserialclient.cpp │ ├── qmodbusrtuserialclient.h │ ├── qmodbusrtuserialclient_p.h │ ├── qmodbusrtuserialserver.cpp │ ├── qmodbusrtuserialserver.h │ ├── qmodbusrtuserialserver_p.h │ ├── qmodbusserver.cpp │ ├── qmodbusserver.h │ ├── qmodbusserver_p.h │ ├── qmodbustcpclient.cpp │ ├── qmodbustcpclient.h │ ├── qmodbustcpclient_p.h │ ├── qmodbustcpserver.cpp │ ├── qmodbustcpserver.h │ ├── qmodbustcpserver_p.h │ ├── qt_cmdline.cmake │ └── qtserialbusglobal.h └── tools │ ├── CMakeLists.txt │ └── canbusutil │ ├── CMakeLists.txt │ ├── canbusutil.cpp │ ├── canbusutil.h │ ├── main.cpp │ ├── readtask.cpp │ ├── readtask.h │ ├── sigtermhandler.cpp │ └── sigtermhandler.h └── tests ├── CMakeLists.txt ├── auto ├── CMakeLists.txt ├── bic │ └── data │ │ ├── QtSerialBus.5.10.0.linux-gcc-amd64.txt │ │ ├── QtSerialBus.5.11.0.linux-gcc-amd64.txt │ │ ├── QtSerialBus.5.12.0.linux-gcc-amd64.txt │ │ ├── QtSerialBus.5.13.0.linux-gcc-amd64.txt │ │ ├── QtSerialBus.5.14.0.linux-gcc-amd64.txt │ │ └── QtSerialBus.5.8.0.linux-gcc-amd64.txt ├── cmake │ └── CMakeLists.txt ├── plugins │ ├── CMakeLists.txt │ └── testcanbus │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── plugin.json │ │ ├── testcanbackend.cpp │ │ └── testcanbackend.h ├── qcanbus │ ├── CMakeLists.txt │ └── tst_qcanbus.cpp ├── qcanbusdevice │ ├── CMakeLists.txt │ └── tst_qcanbusdevice.cpp ├── qcanbusframe │ ├── CMakeLists.txt │ └── tst_qcanbusframe.cpp ├── qcandbcfileparser │ ├── CMakeLists.txt │ ├── data │ │ ├── char_string_test.dbc │ │ ├── different_data_types.dbc │ │ ├── different_endian.dbc │ │ ├── different_factor_offset.dbc │ │ ├── different_ranges.dbc │ │ ├── extended_multiplexing.dbc │ │ ├── invalid_message_pos.dbc │ │ ├── invalid_messages.dbc │ │ ├── invalid_signal_pos.dbc │ │ ├── invalid_signals.dbc │ │ ├── message_signals_in_one_line.dbc │ │ ├── messages_with_comments.dbc │ │ ├── multiple_files_1.dbc │ │ ├── multiple_files_2.dbc │ │ ├── multiple_receivers.dbc │ │ ├── random_whitespaces.dbc │ │ ├── signal_names.dbc │ │ ├── simple_multiplexing.dbc │ │ ├── valid_message_and_signals.dbc │ │ └── value_descriptions.dbc │ └── tst_qcandbcfileparser.cpp ├── qcanframeprocessor │ ├── CMakeLists.txt │ └── tst_qcanframeprocessor.cpp ├── qcanmessagedescription │ ├── CMakeLists.txt │ └── tst_qcanmessagedescription.cpp ├── qcansignaldescription │ ├── CMakeLists.txt │ └── tst_qcansignaldescription.cpp ├── qcanuniqueiddescription │ ├── CMakeLists.txt │ └── tst_qcanuniqueiddescription.cpp ├── qmodbusadu │ ├── CMakeLists.txt │ └── tst_qmodbusadu.cpp ├── qmodbusclient │ ├── CMakeLists.txt │ └── tst_qmodbusclient.cpp ├── qmodbuscommevent │ ├── CMakeLists.txt │ └── tst_qmodbuscommevent.cpp ├── qmodbusdataunit │ ├── CMakeLists.txt │ └── tst_qmodbusdataunit.cpp ├── qmodbusdevice │ ├── CMakeLists.txt │ └── tst_qmodbusdevice.cpp ├── qmodbusdeviceidentification │ ├── CMakeLists.txt │ └── tst_qmodbusdeviceidentification.cpp ├── qmodbuspdu │ ├── CMakeLists.txt │ └── tst_qmodbuspdu.cpp ├── qmodbusreply │ ├── CMakeLists.txt │ └── tst_qmodbusreply.cpp ├── qmodbusrtuserialclient │ ├── CMakeLists.txt │ └── tst_qmodbusrtuserialclient.cpp ├── qmodbusserver │ ├── CMakeLists.txt │ └── tst_qmodbusserver.cpp └── shared │ ├── qcanmessagedescription_helpers.h │ ├── qcansignaldescription_helpers.h │ └── qcanuniqueiddescription_helpers.h ├── global └── global.cfg └── manual ├── CMakeLists.txt └── modbus ├── CMakeLists.txt └── adueditor ├── CMakeLists.txt ├── interface.ui ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── modbustcpclient.cpp ├── modbustcpclient.h ├── modbustcpclient_p.h └── plaintextedit.h /.cmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/.cmake.conf -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/.gitreview -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | c5d1600f1270a8e4953d1c074b9faed7d99fdd2d 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/GFDL-1.3-no-invariants-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/LICENSES/GFDL-1.3-no-invariants-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Qt-Commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/LICENSES/LicenseRef-Qt-Commercial.txt -------------------------------------------------------------------------------- /LICENSES/Qt-GPL-exception-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/LICENSES/Qt-GPL-exception-1.0.txt -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/REUSE.toml -------------------------------------------------------------------------------- /coin/axivion/ci_config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/coin/axivion/ci_config_linux.json -------------------------------------------------------------------------------- /coin/module_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/coin/module_config.yaml -------------------------------------------------------------------------------- /config.tests/socketcan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/config.tests/socketcan/CMakeLists.txt -------------------------------------------------------------------------------- /config.tests/socketcan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/config.tests/socketcan/main.cpp -------------------------------------------------------------------------------- /config.tests/socketcan_fd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/config.tests/socketcan_fd/CMakeLists.txt -------------------------------------------------------------------------------- /config.tests/socketcan_fd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/config.tests/socketcan_fd/main.cpp -------------------------------------------------------------------------------- /configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/configure.cmake -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /dist/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/REUSE.toml -------------------------------------------------------------------------------- /dist/changes-5.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.10.0 -------------------------------------------------------------------------------- /dist/changes-5.10.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.10.1 -------------------------------------------------------------------------------- /dist/changes-5.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.11.0 -------------------------------------------------------------------------------- /dist/changes-5.11.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.11.1 -------------------------------------------------------------------------------- /dist/changes-5.11.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.11.2 -------------------------------------------------------------------------------- /dist/changes-5.11.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.11.3 -------------------------------------------------------------------------------- /dist/changes-5.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.12.0 -------------------------------------------------------------------------------- /dist/changes-5.12.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.12.1 -------------------------------------------------------------------------------- /dist/changes-5.12.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.12.10 -------------------------------------------------------------------------------- /dist/changes-5.12.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.12.2 -------------------------------------------------------------------------------- /dist/changes-5.12.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.12.3 -------------------------------------------------------------------------------- /dist/changes-5.12.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.12.4 -------------------------------------------------------------------------------- /dist/changes-5.12.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.12.5 -------------------------------------------------------------------------------- /dist/changes-5.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.13.0 -------------------------------------------------------------------------------- /dist/changes-5.13.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.13.1 -------------------------------------------------------------------------------- /dist/changes-5.13.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.13.2 -------------------------------------------------------------------------------- /dist/changes-5.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.14.0 -------------------------------------------------------------------------------- /dist/changes-5.14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.14.1 -------------------------------------------------------------------------------- /dist/changes-5.14.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.14.2 -------------------------------------------------------------------------------- /dist/changes-5.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.15.0 -------------------------------------------------------------------------------- /dist/changes-5.15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.15.1 -------------------------------------------------------------------------------- /dist/changes-5.6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.6.1 -------------------------------------------------------------------------------- /dist/changes-5.6.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.6.2 -------------------------------------------------------------------------------- /dist/changes-5.6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.6.3 -------------------------------------------------------------------------------- /dist/changes-5.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.7.0 -------------------------------------------------------------------------------- /dist/changes-5.7.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.7.1 -------------------------------------------------------------------------------- /dist/changes-5.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.8.0 -------------------------------------------------------------------------------- /dist/changes-5.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.9.0 -------------------------------------------------------------------------------- /dist/changes-5.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.9.1 -------------------------------------------------------------------------------- /dist/changes-5.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.9.2 -------------------------------------------------------------------------------- /dist/changes-5.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.9.3 -------------------------------------------------------------------------------- /dist/changes-5.9.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.9.4 -------------------------------------------------------------------------------- /dist/changes-5.9.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.9.5 -------------------------------------------------------------------------------- /dist/changes-5.9.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/dist/changes-5.9.6 -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/examples.pro -------------------------------------------------------------------------------- /examples/serialbus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/CMakeLists.txt -------------------------------------------------------------------------------- /examples/serialbus/can/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/CMakeLists.txt -------------------------------------------------------------------------------- /examples/serialbus/can/bitratebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/bitratebox.cpp -------------------------------------------------------------------------------- /examples/serialbus/can/bitratebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/bitratebox.h -------------------------------------------------------------------------------- /examples/serialbus/can/can.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/can.pro -------------------------------------------------------------------------------- /examples/serialbus/can/can.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/can.qrc -------------------------------------------------------------------------------- /examples/serialbus/can/canbusdeviceinfobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/canbusdeviceinfobox.cpp -------------------------------------------------------------------------------- /examples/serialbus/can/canbusdeviceinfobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/canbusdeviceinfobox.h -------------------------------------------------------------------------------- /examples/serialbus/can/canbusdeviceinfobox.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/canbusdeviceinfobox.ui -------------------------------------------------------------------------------- /examples/serialbus/can/canbusdeviceinfodialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/canbusdeviceinfodialog.cpp -------------------------------------------------------------------------------- /examples/serialbus/can/canbusdeviceinfodialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/canbusdeviceinfodialog.h -------------------------------------------------------------------------------- /examples/serialbus/can/canbusdeviceinfodialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/canbusdeviceinfodialog.ui -------------------------------------------------------------------------------- /examples/serialbus/can/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/common.h -------------------------------------------------------------------------------- /examples/serialbus/can/connectdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/connectdialog.cpp -------------------------------------------------------------------------------- /examples/serialbus/can/connectdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/connectdialog.h -------------------------------------------------------------------------------- /examples/serialbus/can/connectdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/connectdialog.ui -------------------------------------------------------------------------------- /examples/serialbus/can/images/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/images/application-exit.png -------------------------------------------------------------------------------- /examples/serialbus/can/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/images/clear.png -------------------------------------------------------------------------------- /examples/serialbus/can/images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/images/connect.png -------------------------------------------------------------------------------- /examples/serialbus/can/images/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/images/disconnect.png -------------------------------------------------------------------------------- /examples/serialbus/can/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/main.cpp -------------------------------------------------------------------------------- /examples/serialbus/can/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/mainwindow.cpp -------------------------------------------------------------------------------- /examples/serialbus/can/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/mainwindow.h -------------------------------------------------------------------------------- /examples/serialbus/can/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/mainwindow.ui -------------------------------------------------------------------------------- /examples/serialbus/can/receivedframesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/receivedframesmodel.cpp -------------------------------------------------------------------------------- /examples/serialbus/can/receivedframesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/receivedframesmodel.h -------------------------------------------------------------------------------- /examples/serialbus/can/receivedframesview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/receivedframesview.cpp -------------------------------------------------------------------------------- /examples/serialbus/can/receivedframesview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/receivedframesview.h -------------------------------------------------------------------------------- /examples/serialbus/can/sendframebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/sendframebox.cpp -------------------------------------------------------------------------------- /examples/serialbus/can/sendframebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/sendframebox.h -------------------------------------------------------------------------------- /examples/serialbus/can/sendframebox.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/can/sendframebox.ui -------------------------------------------------------------------------------- /examples/serialbus/modbus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/CMakeLists.txt -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/client.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/client.pro -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/client.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/client.qrc -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/doc/images/modbusclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/doc/images/modbusclient.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/doc/src/modbusclient.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/doc/src/modbusclient.qdoc -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/images/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/images/application-exit.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/images/connect.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/images/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/images/disconnect.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/images/settings.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/main.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/mainwindow.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/mainwindow.h -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/mainwindow.ui -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/settingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/settingsdialog.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/settingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/settingsdialog.h -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/settingsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/settingsdialog.ui -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/writeregistermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/writeregistermodel.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/client/writeregistermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/client/writeregistermodel.h -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/CMakeLists.txt -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/custom.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/custom.pro -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/doc/images/custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/doc/images/custom.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/doc/src/custom.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/doc/src/custom.qdoc -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/images.qrc -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/images/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/images/application-exit.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/images/connect.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/images/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/images/disconnect.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/images/settings.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/main.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/mainwindow.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/mainwindow.h -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/mainwindow.ui -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/modbusclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/modbusclient.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/modbusclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/modbusclient.h -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/modbusserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/modbusserver.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/modbusserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/modbusserver.h -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/registermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/registermodel.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/custom/registermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/custom/registermodel.h -------------------------------------------------------------------------------- /examples/serialbus/modbus/modbus.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/modbus.pro -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/CMakeLists.txt -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/doc/images/modbusserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/doc/images/modbusserver.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/doc/src/modbusserver.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/doc/src/modbusserver.qdoc -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/images/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/images/application-exit.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/images/connect.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/images/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/images/disconnect.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/images/settings.png -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/main.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/mainwindow.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/mainwindow.h -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/mainwindow.ui -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/server.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/server.pro -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/server.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/server.qrc -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/settingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/settingsdialog.cpp -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/settingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/settingsdialog.h -------------------------------------------------------------------------------- /examples/serialbus/modbus/server/settingsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/modbus/server/settingsdialog.ui -------------------------------------------------------------------------------- /examples/serialbus/serialbus.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/examples/serialbus/serialbus.pro -------------------------------------------------------------------------------- /licenseRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/licenseRule.json -------------------------------------------------------------------------------- /qt_cmdline.cmake: -------------------------------------------------------------------------------- 1 | qt_commandline_subconfig(src/serialbus) 2 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(canbus) 2 | -------------------------------------------------------------------------------- /src/plugins/canbus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/canbus/passthrucan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/passthrucan/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/canbus/passthrucan/j2534passthru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/passthrucan/j2534passthru.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/passthrucan/j2534passthru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/passthrucan/j2534passthru.h -------------------------------------------------------------------------------- /src/plugins/canbus/passthrucan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/passthrucan/main.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/passthrucan/passthrucanbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/passthrucan/passthrucanbackend.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/passthrucan/passthrucanbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/passthrucan/passthrucanbackend.h -------------------------------------------------------------------------------- /src/plugins/canbus/passthrucan/passthrucanio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/passthrucan/passthrucanio.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/passthrucan/passthrucanio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/passthrucan/passthrucanio.h -------------------------------------------------------------------------------- /src/plugins/canbus/passthrucan/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Key": "passthrucan" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/canbus/peakcan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/peakcan/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/canbus/peakcan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/peakcan/main.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/peakcan/peakcan_symbols_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/peakcan/peakcan_symbols_p.h -------------------------------------------------------------------------------- /src/plugins/canbus/peakcan/peakcanbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/peakcan/peakcanbackend.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/peakcan/peakcanbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/peakcan/peakcanbackend.h -------------------------------------------------------------------------------- /src/plugins/canbus/peakcan/peakcanbackend_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/peakcan/peakcanbackend_p.h -------------------------------------------------------------------------------- /src/plugins/canbus/peakcan/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Key": "peakcan" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/canbus/socketcan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/socketcan/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/canbus/socketcan/libsocketcan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/socketcan/libsocketcan.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/socketcan/libsocketcan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/socketcan/libsocketcan.h -------------------------------------------------------------------------------- /src/plugins/canbus/socketcan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/socketcan/main.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/socketcan/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Key": "socketcan" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/canbus/socketcan/socketcanbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/socketcan/socketcanbackend.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/socketcan/socketcanbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/socketcan/socketcanbackend.h -------------------------------------------------------------------------------- /src/plugins/canbus/systeccan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/systeccan/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/canbus/systeccan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/systeccan/main.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/systeccan/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Key": "systeccan" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/canbus/systeccan/systeccan_symbols_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/systeccan/systeccan_symbols_p.h -------------------------------------------------------------------------------- /src/plugins/canbus/systeccan/systeccanbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/systeccan/systeccanbackend.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/systeccan/systeccanbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/systeccan/systeccanbackend.h -------------------------------------------------------------------------------- /src/plugins/canbus/systeccan/systeccanbackend_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/systeccan/systeccanbackend_p.h -------------------------------------------------------------------------------- /src/plugins/canbus/tinycan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/tinycan/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/canbus/tinycan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/tinycan/main.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/tinycan/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Key": "tinycan" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/canbus/tinycan/tinycan_symbols_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/tinycan/tinycan_symbols_p.h -------------------------------------------------------------------------------- /src/plugins/canbus/tinycan/tinycanbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/tinycan/tinycanbackend.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/tinycan/tinycanbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/tinycan/tinycanbackend.h -------------------------------------------------------------------------------- /src/plugins/canbus/tinycan/tinycanbackend_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/tinycan/tinycanbackend_p.h -------------------------------------------------------------------------------- /src/plugins/canbus/vectorcan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/vectorcan/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/canbus/vectorcan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/vectorcan/main.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/vectorcan/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Key": "vectorcan" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/canbus/vectorcan/vectorcan_symbols_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/vectorcan/vectorcan_symbols_p.h -------------------------------------------------------------------------------- /src/plugins/canbus/vectorcan/vectorcanbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/vectorcan/vectorcanbackend.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/vectorcan/vectorcanbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/vectorcan/vectorcanbackend.h -------------------------------------------------------------------------------- /src/plugins/canbus/vectorcan/vectorcanbackend_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/vectorcan/vectorcanbackend_p.h -------------------------------------------------------------------------------- /src/plugins/canbus/virtualcan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/virtualcan/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/canbus/virtualcan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/virtualcan/main.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/virtualcan/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Key": "virtualcan" 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/canbus/virtualcan/virtualcanbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/virtualcan/virtualcanbackend.cpp -------------------------------------------------------------------------------- /src/plugins/canbus/virtualcan/virtualcanbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/plugins/canbus/virtualcan/virtualcanbackend.h -------------------------------------------------------------------------------- /src/serialbus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/CMakeLists.txt -------------------------------------------------------------------------------- /src/serialbus/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/configure.cmake -------------------------------------------------------------------------------- /src/serialbus/doc/images/can-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/images/can-example.png -------------------------------------------------------------------------------- /src/serialbus/doc/images/canbus_signals_be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/images/canbus_signals_be.png -------------------------------------------------------------------------------- /src/serialbus/doc/images/canbus_signals_le.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/images/canbus_signals_le.png -------------------------------------------------------------------------------- /src/serialbus/doc/qtserialbus.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/qtserialbus.qdocconf -------------------------------------------------------------------------------- /src/serialbus/doc/snippets/snippetmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/snippets/snippetmain.cpp -------------------------------------------------------------------------------- /src/serialbus/doc/src/examples/can.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/examples/can.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/examples/qtserialbus-examples.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/examples/qtserialbus-examples.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/external-resources.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/external-resources.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/passthrucan.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/passthrucan.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/peakcan.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/peakcan.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/qt6-changes.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/qt6-changes.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/qtcanbus-backends.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/qtcanbus-backends.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/qtmodbus-backends.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/qtmodbus-backends.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/qtserialbus-index.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/qtserialbus-index.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/qtserialbus-module-cpp.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/qtserialbus-module-cpp.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/qtserialbus-module-use.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/qtserialbus-module-use.qdocinc -------------------------------------------------------------------------------- /src/serialbus/doc/src/qtserialbus-toc.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/qtserialbus-toc.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/socketcan.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/socketcan.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/systeccan.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/systeccan.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/tinycan.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/tinycan.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/vectorcan.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/vectorcan.qdoc -------------------------------------------------------------------------------- /src/serialbus/doc/src/virtualcan.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/doc/src/virtualcan.qdoc -------------------------------------------------------------------------------- /src/serialbus/qcanbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbus.cpp -------------------------------------------------------------------------------- /src/serialbus/qcanbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbus.h -------------------------------------------------------------------------------- /src/serialbus/qcanbusdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbusdevice.cpp -------------------------------------------------------------------------------- /src/serialbus/qcanbusdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbusdevice.h -------------------------------------------------------------------------------- /src/serialbus/qcanbusdevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbusdevice_p.h -------------------------------------------------------------------------------- /src/serialbus/qcanbusdeviceinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbusdeviceinfo.cpp -------------------------------------------------------------------------------- /src/serialbus/qcanbusdeviceinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbusdeviceinfo.h -------------------------------------------------------------------------------- /src/serialbus/qcanbusdeviceinfo_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbusdeviceinfo_p.h -------------------------------------------------------------------------------- /src/serialbus/qcanbusfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbusfactory.cpp -------------------------------------------------------------------------------- /src/serialbus/qcanbusfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbusfactory.h -------------------------------------------------------------------------------- /src/serialbus/qcanbusframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbusframe.cpp -------------------------------------------------------------------------------- /src/serialbus/qcanbusframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanbusframe.h -------------------------------------------------------------------------------- /src/serialbus/qcancommondefinitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcancommondefinitions.cpp -------------------------------------------------------------------------------- /src/serialbus/qcancommondefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcancommondefinitions.h -------------------------------------------------------------------------------- /src/serialbus/qcandbcfileparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcandbcfileparser.cpp -------------------------------------------------------------------------------- /src/serialbus/qcandbcfileparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcandbcfileparser.h -------------------------------------------------------------------------------- /src/serialbus/qcandbcfileparser_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcandbcfileparser_p.h -------------------------------------------------------------------------------- /src/serialbus/qcanframeprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanframeprocessor.cpp -------------------------------------------------------------------------------- /src/serialbus/qcanframeprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanframeprocessor.h -------------------------------------------------------------------------------- /src/serialbus/qcanframeprocessor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanframeprocessor_p.h -------------------------------------------------------------------------------- /src/serialbus/qcanmessagedescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanmessagedescription.cpp -------------------------------------------------------------------------------- /src/serialbus/qcanmessagedescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanmessagedescription.h -------------------------------------------------------------------------------- /src/serialbus/qcanmessagedescription_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanmessagedescription_p.h -------------------------------------------------------------------------------- /src/serialbus/qcansignaldescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcansignaldescription.cpp -------------------------------------------------------------------------------- /src/serialbus/qcansignaldescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcansignaldescription.h -------------------------------------------------------------------------------- /src/serialbus/qcansignaldescription_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcansignaldescription_p.h -------------------------------------------------------------------------------- /src/serialbus/qcanuniqueiddescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanuniqueiddescription.cpp -------------------------------------------------------------------------------- /src/serialbus/qcanuniqueiddescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanuniqueiddescription.h -------------------------------------------------------------------------------- /src/serialbus/qcanuniqueiddescription_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qcanuniqueiddescription_p.h -------------------------------------------------------------------------------- /src/serialbus/qmodbus_symbols_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbus_symbols_p.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusadu_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusadu_p.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusclient.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbusclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusclient.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusclient_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusclient_p.h -------------------------------------------------------------------------------- /src/serialbus/qmodbuscommevent_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbuscommevent_p.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusdataunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusdataunit.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbusdataunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusdataunit.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusdevice.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbusdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusdevice.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusdevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusdevice_p.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusdeviceidentification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusdeviceidentification.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbusdeviceidentification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusdeviceidentification.h -------------------------------------------------------------------------------- /src/serialbus/qmodbuspdu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbuspdu.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbuspdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbuspdu.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusreply.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbusreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusreply.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusrtuserialclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusrtuserialclient.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbusrtuserialclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusrtuserialclient.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusrtuserialclient_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusrtuserialclient_p.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusrtuserialserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusrtuserialserver.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbusrtuserialserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusrtuserialserver.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusrtuserialserver_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusrtuserialserver_p.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusserver.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbusserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusserver.h -------------------------------------------------------------------------------- /src/serialbus/qmodbusserver_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbusserver_p.h -------------------------------------------------------------------------------- /src/serialbus/qmodbustcpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbustcpclient.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbustcpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbustcpclient.h -------------------------------------------------------------------------------- /src/serialbus/qmodbustcpclient_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbustcpclient_p.h -------------------------------------------------------------------------------- /src/serialbus/qmodbustcpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbustcpserver.cpp -------------------------------------------------------------------------------- /src/serialbus/qmodbustcpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbustcpserver.h -------------------------------------------------------------------------------- /src/serialbus/qmodbustcpserver_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qmodbustcpserver_p.h -------------------------------------------------------------------------------- /src/serialbus/qt_cmdline.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/serialbus/qtserialbusglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/serialbus/qtserialbusglobal.h -------------------------------------------------------------------------------- /src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/canbusutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/tools/canbusutil/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/canbusutil/canbusutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/tools/canbusutil/canbusutil.cpp -------------------------------------------------------------------------------- /src/tools/canbusutil/canbusutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/tools/canbusutil/canbusutil.h -------------------------------------------------------------------------------- /src/tools/canbusutil/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/tools/canbusutil/main.cpp -------------------------------------------------------------------------------- /src/tools/canbusutil/readtask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/tools/canbusutil/readtask.cpp -------------------------------------------------------------------------------- /src/tools/canbusutil/readtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/tools/canbusutil/readtask.h -------------------------------------------------------------------------------- /src/tools/canbusutil/sigtermhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/tools/canbusutil/sigtermhandler.cpp -------------------------------------------------------------------------------- /src/tools/canbusutil/sigtermhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/src/tools/canbusutil/sigtermhandler.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSerialBus.5.10.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/bic/data/QtSerialBus.5.10.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSerialBus.5.11.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/bic/data/QtSerialBus.5.11.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSerialBus.5.12.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/bic/data/QtSerialBus.5.12.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSerialBus.5.13.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/bic/data/QtSerialBus.5.13.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSerialBus.5.14.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/bic/data/QtSerialBus.5.14.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/bic/data/QtSerialBus.5.8.0.linux-gcc-amd64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/bic/data/QtSerialBus.5.8.0.linux-gcc-amd64.txt -------------------------------------------------------------------------------- /tests/auto/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(testcanbus) 2 | -------------------------------------------------------------------------------- /tests/auto/plugins/testcanbus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/plugins/testcanbus/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/plugins/testcanbus/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/plugins/testcanbus/main.cpp -------------------------------------------------------------------------------- /tests/auto/plugins/testcanbus/plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Key": "testcan" 3 | } 4 | -------------------------------------------------------------------------------- /tests/auto/plugins/testcanbus/testcanbackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/plugins/testcanbus/testcanbackend.cpp -------------------------------------------------------------------------------- /tests/auto/plugins/testcanbus/testcanbackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/plugins/testcanbus/testcanbackend.h -------------------------------------------------------------------------------- /tests/auto/qcanbus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanbus/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qcanbus/tst_qcanbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanbus/tst_qcanbus.cpp -------------------------------------------------------------------------------- /tests/auto/qcanbusdevice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanbusdevice/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qcanbusdevice/tst_qcanbusdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanbusdevice/tst_qcanbusdevice.cpp -------------------------------------------------------------------------------- /tests/auto/qcanbusframe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanbusframe/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qcanbusframe/tst_qcanbusframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanbusframe/tst_qcanbusframe.cpp -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/char_string_test.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/char_string_test.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/different_data_types.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/different_data_types.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/different_endian.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/different_endian.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/different_factor_offset.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/different_factor_offset.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/different_ranges.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/different_ranges.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/extended_multiplexing.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/extended_multiplexing.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/invalid_message_pos.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/invalid_message_pos.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/invalid_messages.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/invalid_messages.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/invalid_signal_pos.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/invalid_signal_pos.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/invalid_signals.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/invalid_signals.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/message_signals_in_one_line.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/message_signals_in_one_line.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/messages_with_comments.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/messages_with_comments.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/multiple_files_1.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/multiple_files_1.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/multiple_files_2.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/multiple_files_2.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/multiple_receivers.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/multiple_receivers.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/random_whitespaces.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/random_whitespaces.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/signal_names.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/signal_names.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/simple_multiplexing.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/simple_multiplexing.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/valid_message_and_signals.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/valid_message_and_signals.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/data/value_descriptions.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/data/value_descriptions.dbc -------------------------------------------------------------------------------- /tests/auto/qcandbcfileparser/tst_qcandbcfileparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcandbcfileparser/tst_qcandbcfileparser.cpp -------------------------------------------------------------------------------- /tests/auto/qcanframeprocessor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanframeprocessor/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qcanframeprocessor/tst_qcanframeprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanframeprocessor/tst_qcanframeprocessor.cpp -------------------------------------------------------------------------------- /tests/auto/qcanmessagedescription/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanmessagedescription/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qcanmessagedescription/tst_qcanmessagedescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanmessagedescription/tst_qcanmessagedescription.cpp -------------------------------------------------------------------------------- /tests/auto/qcansignaldescription/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcansignaldescription/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qcansignaldescription/tst_qcansignaldescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcansignaldescription/tst_qcansignaldescription.cpp -------------------------------------------------------------------------------- /tests/auto/qcanuniqueiddescription/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanuniqueiddescription/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qcanuniqueiddescription/tst_qcanuniqueiddescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qcanuniqueiddescription/tst_qcanuniqueiddescription.cpp -------------------------------------------------------------------------------- /tests/auto/qmodbusadu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusadu/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmodbusadu/tst_qmodbusadu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusadu/tst_qmodbusadu.cpp -------------------------------------------------------------------------------- /tests/auto/qmodbusclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusclient/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmodbusclient/tst_qmodbusclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusclient/tst_qmodbusclient.cpp -------------------------------------------------------------------------------- /tests/auto/qmodbuscommevent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbuscommevent/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmodbuscommevent/tst_qmodbuscommevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbuscommevent/tst_qmodbuscommevent.cpp -------------------------------------------------------------------------------- /tests/auto/qmodbusdataunit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusdataunit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmodbusdataunit/tst_qmodbusdataunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusdataunit/tst_qmodbusdataunit.cpp -------------------------------------------------------------------------------- /tests/auto/qmodbusdevice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusdevice/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmodbusdevice/tst_qmodbusdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusdevice/tst_qmodbusdevice.cpp -------------------------------------------------------------------------------- /tests/auto/qmodbusdeviceidentification/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusdeviceidentification/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmodbusdeviceidentification/tst_qmodbusdeviceidentification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusdeviceidentification/tst_qmodbusdeviceidentification.cpp -------------------------------------------------------------------------------- /tests/auto/qmodbuspdu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbuspdu/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmodbuspdu/tst_qmodbuspdu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbuspdu/tst_qmodbuspdu.cpp -------------------------------------------------------------------------------- /tests/auto/qmodbusreply/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusreply/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmodbusreply/tst_qmodbusreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusreply/tst_qmodbusreply.cpp -------------------------------------------------------------------------------- /tests/auto/qmodbusrtuserialclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusrtuserialclient/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmodbusrtuserialclient/tst_qmodbusrtuserialclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusrtuserialclient/tst_qmodbusrtuserialclient.cpp -------------------------------------------------------------------------------- /tests/auto/qmodbusserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusserver/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qmodbusserver/tst_qmodbusserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/qmodbusserver/tst_qmodbusserver.cpp -------------------------------------------------------------------------------- /tests/auto/shared/qcanmessagedescription_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/shared/qcanmessagedescription_helpers.h -------------------------------------------------------------------------------- /tests/auto/shared/qcansignaldescription_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/shared/qcansignaldescription_helpers.h -------------------------------------------------------------------------------- /tests/auto/shared/qcanuniqueiddescription_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/auto/shared/qcanuniqueiddescription_helpers.h -------------------------------------------------------------------------------- /tests/global/global.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/global/global.cfg -------------------------------------------------------------------------------- /tests/manual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/modbus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/modbus/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/modbus/adueditor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/modbus/adueditor/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/modbus/adueditor/interface.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/modbus/adueditor/interface.ui -------------------------------------------------------------------------------- /tests/manual/modbus/adueditor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/modbus/adueditor/main.cpp -------------------------------------------------------------------------------- /tests/manual/modbus/adueditor/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/modbus/adueditor/mainwindow.cpp -------------------------------------------------------------------------------- /tests/manual/modbus/adueditor/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/modbus/adueditor/mainwindow.h -------------------------------------------------------------------------------- /tests/manual/modbus/adueditor/modbustcpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/modbus/adueditor/modbustcpclient.cpp -------------------------------------------------------------------------------- /tests/manual/modbus/adueditor/modbustcpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/modbus/adueditor/modbustcpclient.h -------------------------------------------------------------------------------- /tests/manual/modbus/adueditor/modbustcpclient_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/modbus/adueditor/modbustcpclient_p.h -------------------------------------------------------------------------------- /tests/manual/modbus/adueditor/plaintextedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtserialbus/HEAD/tests/manual/modbus/adueditor/plaintextedit.h --------------------------------------------------------------------------------