Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.2k Posts
QtWS25 Last Chance
  • How to link OpenSSL libraries in CMake Qt Android app?

    Solved
    5
    0 Votes
    5 Posts
    3k Views
    advmA
    @piervalli thank you so much for the provided links, this worked for me
  • Qtusb for Bulk Transfer

    Unsolved
    1
    0 Votes
    1 Posts
    332 Views
    No one has replied
  • Serial Communication(Android)

    Unsolved
    3
    0 Votes
    3 Posts
    347 Views
    H
    thank you but i dont find anything useful
  • "No rule to make target ..." error when compiling in release mode

    Unsolved
    1
    0 Votes
    1 Posts
    162 Views
    No one has replied
  • Custom Hardware KeyBoard Driver for QT5

    Unsolved
    2
    0 Votes
    2 Posts
    278 Views
    SGaistS
    Hi, @piyushverma said in Custom Hardware KeyBoard Driver for QT5: Which qt code handle capslock and numlock on linux ? None, that happens at a lower level. For capslock, your application will receive the key events with the key and modifier as if your were pressing both for each entry. For numlock, you'll have to use native APIs. How is your custom keyboard seen by your system ?
  • Multimedia module requires CAMERA and RECORD_AUDIO permissions on Android

    Unsolved multimedia android
    1
    0 Votes
    1 Posts
    301 Views
    No one has replied
  • Android SDK 30 WebView requires setAllowFileAccess(true) to view local files

    Unsolved
    3
    0 Votes
    3 Posts
    930 Views
    M
    @Augustas HI any success with that ? Best Regards Marek
  • CAN communication

    Unsolved
    2
    0 Votes
    2 Posts
    271 Views
    aha_1980A
    Hi @sraavya, what do you mean with "challenges"? In principle, Qt CAN bus should work with Qt 5.9.6, but upgrading to latest Qt 5.15.x or Qt 6.2.x is recommended. Regards
  • QAudioDecoder on Android

    Unsolved
    1
    0 Votes
    1 Posts
    141 Views
    No one has replied
  • Qt + Android + Opencv linking libs

    Solved
    3
    0 Votes
    3 Posts
    853 Views
    Ramon_SR
    I don't think you need to copy them to libs folder but rather into src/main/jniLibs/ABI. See https://developer.android.com/studio/projects/gradle-external-native-builds#jniLibs for more details.
  • Design strategy for qt mqtt networking

    Unsolved
    4
    0 Votes
    4 Posts
    319 Views
    JoeCFDJ
    It does not matter how robot is connected. Qt mqtt goes with your qt app. You may have to use mqtt + C++(or whatever, java, or c) inside robot since you do not use qt in the robot. You can do it, but it is not necessary.
  • QCanBusDevice writeFrame fails with error "Cannot write invalid QCanBusFrame"

    Solved
    4
    0 Votes
    4 Posts
    680 Views
    Pablo J. RoginaP
    @Sachin_Sanghani said in QCanBusDevice writeFrame fails with error "Cannot write invalid QCanBusFrame": I found what was the wrong with code. Great. So could it be possible you share with the community some explanation about the wrong code (or a code snippet perhaps). Thanks.
  • IconImage: Error decoding: qrc:/Icons/rotate-left.svg: Unsupported image format

    Solved cmake
    3
    0 Votes
    3 Posts
    1k Views
    D
    @SGaist Yes, I forgot it. Fixed this by adding Svg: find_package(Qt6 COMPONENTS Core Gui Quick Qml Multimedia LinguistTools Svg REQUIRED) target_link_libraries(${PROJECT_NAME} PRIVATE Qt6::Core Qt6::Gui Qt6::Quick Qt6::Qml Qt6::Multimedia Qt6::Svg)
  • QDialog in Wayland works incomplete

    Unsolved
    1
    0 Votes
    1 Posts
    500 Views
    No one has replied
  • QT Creator does not connect to Android app being debugged

    Unsolved qtcreator 5.0 debug android
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • I can't connect to cloud services using MQTT

    Unsolved
    2
    0 Votes
    2 Posts
    175 Views
    Pablo J. RoginaP
    @XinMouRen said in I can't connect to cloud services using MQTT: but cannot connect to the cloud service Please show some code snippet. Assuming you're using a QMqttClient object as MQTT client, have you connected the errorChanged() signal to some slot to check what could be going on? In addition, have you captured network traffic to see exactly what your application is sending to/receiving from the "cloud"?
  • What is android_rcc_bundle.rcc ? Is there a way to reduce its size?

    Solved android gradle apk
    5
    0 Votes
    5 Posts
    1k Views
    D
    @Dmitriano Probably I had some wrong build configuration, after some experimentation and switching to Java11 it become about 1MB.
  • What does QWidget.setMask() exactly do?

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    F
    hello,QWidget. Setmask() can you use it now in eglfs backend?
  • how to run a console app on command line?

    Unsolved
    1
    0 Votes
    1 Posts
    159 Views
    No one has replied
  • QT keyboard with repeat option

    Unsolved
    2
    0 Votes
    2 Posts
    233 Views
    N
    Which is the even generated when we press the "1/2" key in virtual keyboard ? [image: 26003391-1bb6-492c-8ea9-67b1fe349a8d.JPG] I see the signal for all others keys but when I click this it generates no event. I use below code in qml to check : TextInput{ .... Keys.onPressed: { console.log("Current KEY pressed :",event.key) } }