Skip to content

Qt for MCUs

Discussions and questions about Qt Quick Ultralite and using Qt on microcontrollers in general

151 Topics 463 Posts
  • QML support on ESP32-S3

    Moved Unsolved
    2
    0 Votes
    2 Posts
    979 Views
    JKSHJ
    @Mahesh-Babu said in QML support on ESP32-S3: Can you please let me know whether QML is supported in ESP32-S3 MCU. Same answer as https://forum.qt.io/topic/141879/qt-support-for-esp32-s3 MCUs use Qt Quick Ultralite, not regular Qt Quick: https://doc.qt.io/QtForMCUs-2.3/qtul-overview.html
  • QSerialPort.write() integrity

    Locked Unsolved
    2
    0 Votes
    2 Posts
    450 Views
    SGaistS
    Hi, Please don't post the same question in multiple sub-forum, one is enough. Duplicate Closing this one.
  • Old 2018 Qt blog archived; Qt for MCU

    Unsolved
    1
    0 Votes
    1 Posts
    308 Views
    No one has replied
  • STM32MP153C/F

    Unsolved
    1
    0 Votes
    1 Posts
    386 Views
    No one has replied
  • How to enable FPS in QTforMCU?

    Unsolved
    4
    0 Votes
    4 Posts
    788 Views
    JKSHJ
    @srai20 said in How to enable FPS in QTforMCU?: Where to open this support ticket? Can you please provide the link? https://account.qt.io/
  • Variable QMAKE_CXX.COMPILER_MACROS is not defined.

    Unsolved
    1
    0 Votes
    1 Posts
    456 Views
    No one has replied
  • Tumbler Object: How to disable the editing through touch

    Solved qml tumbler
    2
    0 Votes
    2 Posts
    660 Views
    P
    Problem Fixed: Tumbler inherits a property called "enabled" from "Item". This property holds whether the item receives mouse and keyboard events. By default this is true. Changing "enabled" to false solved the issue.
  • Qt for MCUs can be used under license (L)GPL

    Solved
    2
    0 Votes
    2 Posts
    641 Views
    kkoehneK
    There's Qt, and there's Qt for MCUs. They don't share the same code base. Qt is available under commercial licenses from The Qt Company, and LGPL (some modules under GPL). Qt or MCUs is only available under commercial licenses from The Qt Company.
  • Not able to build Qt Open Source for IMX6

    Unsolved
    1
    0 Votes
    1 Posts
    408 Views
    No one has replied
  • shapes vs images

    Unsolved
    1
    0 Votes
    1 Posts
    424 Views
    No one has replied
  • Alignment issue when displaying Multi Line Text

    Unsolved multiline text qml text component textarea
    3
    0 Votes
    3 Posts
    924 Views
    JoeCFDJ
    Also try to add in Text: horizontalAlignment: Text.AlignJustify
  • Does Qt Lite work work well with Cortex M4 MCUs e.g. Infineon TRAVEO™ T2G CYT2CL

    Unsolved
    1
    0 Votes
    1 Posts
    421 Views
    No one has replied
  • How can I change the Qtreeview directory(folder) icon for different folders?

    Unsolved
    15
    0 Votes
    15 Posts
    3k Views
    JonBJ
    @sandip-nandwana You are trying to use setNameFilters() to filter the directories/folders shown, is that right? I would not expect that to work in any situation, whether you set it initially or change it? The name filters are intended to be like *.txt to filter the files being shown within each directory, but not for the directory names themselves (else e.g. *.txt would never be useful). Is that your situation? If so, I think you need to find another approach, writing your own filter for directory names. You might interpose a QSortFilterProxyModel for this. There is an example in the accepted solutuon at e.g. https://stackoverflow.com/a/56627595/489865. It's a bit old but looks OK, use setFilterRegularExpression() instead of setFilterRegExp(). I am not sure whether that example will mean that your your whole tree will only display the (filtered) directories now, and nothing else. If you have to be smarter I think you will need to: subclass QSortFilterProxyModel, override QSortFilterProxyModel::filterAcceptsRow(), implement your logic there. Use that instead of setting a regular expression filter on the proxy so that you can implement logic to test for the item type to see whether it is a directory or a file, since you want these to behave differently.
  • Assembly file generation

    Unsolved
    2
    0 Votes
    2 Posts
    714 Views
    jsulmJ
    @sathishgkg This has nothing to do with Qt. With GCC you pass -S parameter to the compiler, so it stops after generating Assembler files.
  • Qt for MCU is not installed!

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    S
    @Farid_86 Tatiana's response is the right way to install Qt for MCU package. If you want to get access please ask for an evaluation package from Qt website. https://www.qt.io/product/develop-software-microcontrollers-mcu#getstarted
  • Problem creating project in QT for MCUs

    Unsolved
    3
    1 Votes
    3 Posts
    1k Views
    S
    If this problem still persists it means your environment is not correct. We have seen this issue when the Qul build system can not locate the required desktop packages in QtMCU installation directory. Please refer to the documentation https://doc.qt.io/QtForMCUs-2.2/qtul-setup-development-host.html.
  • 0 Votes
    6 Posts
    1k Views
    P
    The Root cause for this issue: "Cache" is a property of Image Object and its default value is true. So the image was not taken from the path given in the "source". When the value of "Cache" is changed to false, the issue is solved. Thank you
  • This topic is deleted!

    Locked Unsolved
    2
    0 Votes
    2 Posts
    23 Views
  • Problem with standards c and c++ include

    Unsolved
    3
    0 Votes
    3 Posts
    754 Views
    S
    this problem is happen when your visual studio version is not suitable. https://doc.qt.io/QtForMCUs-2.1/qtul-msvc-compiler.html
  • STM32H750B-DK demo

    Unsolved
    3
    0 Votes
    3 Posts
    918 Views
    F
    Hi, Did you find any solution for this issue? I have same issue.