summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update dependencies on '6.7.1' in qt/qtserialbus6.7.1Qt Submodule Update Bot10 days1-2/+2
| | | | | Change-Id: I6839d9fea224222ae052fa3f921669045d9881bb Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7.1' in qt/qtserialbusQt Submodule Update Bot14 days1-2/+2
| | | | | Change-Id: I9d8ab0387c51c3413613239850a8aa75783a18cc Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7.1' in qt/qtserialbusQt Submodule Update Bot2024-04-281-2/+2
| | | | | Change-Id: I02dc34c4e6ca2ff9307c7cb6ccbe927df99b0868 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7.1' in qt/qtserialbusQt Submodule Update Bot2024-04-251-2/+2
| | | | | Change-Id: If4ad6792cbae54e17c5a61c2f7876e1a77c0b871 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-04-171-2/+2
| | | | | Change-Id: I0739f98a67709643f8411eede4c234fb2aae912c Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-04-151-2/+2
| | | | | Change-Id: Ife27b70272b7e36fd166d639cc41750ea15549ed Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-04-091-2/+2
| | | | | Change-Id: I8ba082b8e5ec8c9a0674026e3ab2742a2e6c67ba Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-04-081-2/+2
| | | | | Change-Id: I7d4936188c7a3d935f7f8655a13e2a7283d73965 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Add a licenseRule.json file for checking of SPDX license identifiersLucie Gérard2024-04-041-0/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The license test in qtqa reads this file in order to check the validity of the license used. This file reproduce the QUIP-18 [1] rules, with some exceptions. Each entry in the file corresponds to a set of licensing rules. A set of licensing rules can depend on the file ending, registered in "file_pattern_ending". The last entry in the file has no "file_pattern_ending", it sets the rules for the files whose licensing does not depend on their ending. The license to be used depends on the location of the file within the Qt module repository. Let's call this "<true_location>". The "<true_location>" can also correspond to a file name, offering flexibility for exceptions to the rule. The "<true_location>" are registered in "location". For each "<true_location>" there is a "file type" entry and a "spdx" entry. The "spdx" entry gives the rule: the expected license tag(s) in SPDX format for the file ending (if applicable) and "<true_location>". The "file type" informs on the QUIP-18 type the tested file corresponds to. It is purely informational for the reader. The set of rules are tested in order of appearance in the json file. For this reason, a more constraining ending (like "special.txt") needs to appear in a "file_pattern_ending" located before the "file_pattern_ending" of a less constraining ending (like ".txt"). Also, a file ending cannot be present in two "file_pattern_ending". "file_pattern_ending" and "spdx" should list strings. "<true_location>" can be regular expressions. During the test the deeper "<true_location>" are checked first. The order is which they appear in the json file does not matter. To test this file, run QT_MODULE_TO_TEST=../qtserialbus perl tests/prebuild/license/tst_licenses.pl [1]: https://contribute.qt-project.org/quips/18 Task-number: QTBUG-121039 Change-Id: Ia901d91a540836ca117bf6f7e36969f280633e64 Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit f2fee56f9147041beaf89ede455fe042b80fa6ec) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Correct license for build system filesLucie Gérard2024-04-042-2/+2
| | | | | | | | | | | | | | | | Assuming files in config.tests are build system files. According to QUIP-18 [1], all build system files should be BSD-3-Clause [1]: https://contribute.qt-project.org/quips/18 Pick-to: 6.7.0 Task-number: QTBUG-121787 Change-Id: I1aae319f1e9c12cb54f18119c59081d6d3a559fd Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit 8a45cbdc5be63c0c84cff377003b37eada089384) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Change license for test filesLucie Gérard2024-04-0431-31/+31
| | | | | | | | | | | | | According to QUIP-18 [1], all test files should be LicenseRef-Qt-Commercial OR GPL-3.0-only [1]: https://contribute.qt-project.org/quips/18 Task-number: QTBUG-121787 Change-Id: I3f7ff53fb3447bdf9f701a7126ccffc6319136dd Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit 22b153acaea963a7f4c2ce544d8300a505938bff) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Correct license for examples filesLucie Gérard2024-04-047-7/+7
| | | | | | | | | | | | | | Example takes precedence over build system file type. According to QUIP-18 [1], all examples file should be LicenseRef-Qt-Commercial OR BSD-3-Clause [1]: https://contribute.qt-project.org/quips/18 Task-number: QTBUG-121787 Change-Id: I35c54034ec0357f8b5d62b3e2705ddefe54063a6 Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit dd81b67785f8e8d9e67fca345b6170c7a209caac) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-04-041-2/+2
| | | | | Change-Id: I1469e7bee316b3be141a93376aeaefeae7f46fde Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-04-031-2/+2
| | | | | Change-Id: I8271b24b240f9bf479a8d2805b0593e2eb460db8 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-281-2/+2
| | | | | Change-Id: I3b4163365c4398ad2284c0e222dd95955b0abef4 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* CAN-Example: Fix crash when open connect dialog after closing itStefan Steinwasser2024-03-271-1/+2
| | | | | | | | | | | When the connect dialog is closed or the plugin has an error and no new canDevice gets initialized, an additional click on connect crashes the application. Change-Id: I48632766c180bddb2c07a88f662578318ced6d7e Reviewed-by: André Hartmann <aha_1980@gmx.de> (cherry picked from commit 7ae921cb5e1c0629427ed2f1843871558432da79) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* CAN-Example: Only set data bitrate when CAN-FD is usedStefan Steinwasser2024-03-271-1/+1
| | | | | | | | | | When CAN-FD flag is not set, do not set data bitrate as this could produce error messages in the can plugin. Change-Id: Id26d92e5c595c596d2d744f1a34088b653d09f0c Reviewed-by: André Hartmann <aha_1980@gmx.de> (cherry picked from commit 03ce22e29c05cbe139d480f8616b7ea0c25b2870) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* VectorCAN: Set CAN-FD configuration only for uninitialized channelsStefan Steinwasser2024-03-271-15/+20
| | | | | | | | | | | | | | | | | | The Vector plugin allows multi application access to single CAN channels, but only the first application gets init access and is allowed to set the configuration parameters. On hardware devices you get an invalid access error, but the virtual channels return an XL_ERROR and the connection fails. [ChangeLog][CAN][Vector] Fixed XL_ERROR when try to set CAN-FD configuration for a virtual channel which was already opened by another application. Fixes: QTBUG-123012 Change-Id: Iafb770940025b5c71fd5db83e61edbb0f49254e2 Reviewed-by: André Hartmann <aha_1980@gmx.de> (cherry picked from commit 9d8501e9e996dd87020208e4b07673cb62bcf10e) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-251-2/+2
| | | | | Change-Id: I0bfe18503c4e5897bdbc5e41fa2ab4e800c6d2d2 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-211-2/+2
| | | | | Change-Id: I385188dc5df1a5f8d017f4917d9ab38171fc6cad Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-201-2/+2
| | | | | Change-Id: I8cf0593d6a92fc05468c4d2d56879186397e70e4 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-171-2/+2
| | | | | Change-Id: I4a24f32e1a3f660556354dc5ecc1e7c802e3e601 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-151-2/+2
| | | | | Change-Id: If8a1757dfe41ca6d8f7c594ef3e992386106538d Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Bump version to 6.7.1Jani Heikkinen2024-03-131-1/+1
| | | | | Change-Id: I0215c29a50fa40cda7d81d67d70726537afebf57 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-131-2/+2
| | | | | Change-Id: I152a031bfddfe6eaca79c213241be0ac2e4d6799 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-061-2/+2
| | | | | Change-Id: If6b9d30b9a4a904378731e4d5dee722dd7e80581 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-051-2/+2
| | | | | Change-Id: I0e4052dc4131b4a1d5117d116fc5da1e11f04aa0 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-031-2/+2
| | | | | Change-Id: Id9c290d5dff4f6585270770a5d7e0a4bb1ee3c49 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-03-011-2/+2
| | | | | Change-Id: I639f023e9ed304e5d03da39d9ffc6b962fcf863f Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-02-291-2/+2
| | | | | Change-Id: I9500a4bbcbecbdfdc0818b05541524c50a559c25 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-02-271-2/+2
| | | | | Change-Id: Ieb96d4811bac4c78e9c56d53af7f7c32c81a2899 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-02-231-2/+2
| | | | | Change-Id: I96b7ac3c8563cd2f76f9172a6f61ba22c6ca3312 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-02-211-2/+2
| | | | | Change-Id: I8097a2b2fdb5f448b82ba0ac6f08672e827971ef Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-02-191-2/+2
| | | | | Change-Id: Ifd5489efa3d11293754bd095d23542b0d06bdf62 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-02-151-2/+2
| | | | | Change-Id: Ie7e102578d51e038f6a9e2a4d3ddcdecf813cbdb Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-02-131-2/+2
| | | | | Change-Id: Ieb0ce06f4d312526eb529b84b9f2019787f47898 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusv6.7.0-beta3Qt Submodule Update Bot2024-02-091-2/+2
| | | | | Change-Id: Ib9f72a9eaa4d9cac9ca7e13b38f02a755dc16827 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-02-061-2/+2
| | | | | Change-Id: Id543721b78cd0d8dde65315177ecfffea5c088b6 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-02-051-2/+2
| | | | | Change-Id: If651dc63614d27a401629a6f54aed7c5400160d6 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-02-011-2/+2
| | | | | Change-Id: I01539c262690df9866385fb0cbfd57cb9a8a4909 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-01-301-2/+2
| | | | | Change-Id: I207880d89bdc77bf1c88f02c3c8bb07eaa68eec0 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-01-261-2/+2
| | | | | Change-Id: Ibc3ece47a1f84f153170931f93f4ff53f1951180 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusv6.7.0-beta2Qt Submodule Update Bot2024-01-221-2/+2
| | | | | Change-Id: I2e533d0e5ca7eaf37bcb5c45f70aa0e2ae4b3192 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-01-201-2/+2
| | | | | Change-Id: I24f3c485638b4a289d100c6616be8be55fa24b68 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-01-191-2/+2
| | | | | Change-Id: Ie087237b8aace2a435c6ce78ee999f8ddb898899 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-01-181-2/+2
| | | | | Change-Id: I340dae8214954b79fb097fc9ee5e487c5df33bfa Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-01-161-2/+2
| | | | | Change-Id: I937ed3832b21cbd4640cdb83a14f6ec8ef54e0a7 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-01-121-2/+2
| | | | | Change-Id: I96c2aaea028bdcb1bad6db8bd964de842b752dae Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtserialbusQt Submodule Update Bot2024-01-071-2/+2
| | | | | Change-Id: Id8928048be366b66303f1a098d10562139bf7b4f Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* QCanBusFrame: Extend documentationAndre Hartmann2024-01-071-11/+26
| | | | | | | | | | | | * Add missing description * Add missing enum value * Add more cross-references Pick-to: 6.6 6.5 6.2 Change-Id: I60e540c9d7a7de1d4ff35d1ff7db324d6efc0ef0 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit 81fc30498ed1bc9f96853926fdac211a8f180ec1) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>