Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.6k Posts
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    19 Views
    No one has replied
  • Why Qt Creator 4.12.1 installs an old NDK 21.1.6352462?

    Unsolved
    5
    0 Votes
    5 Posts
    1k Views
    adaitabeheraA
    There is a bug reported for this issue and you can find the workaround in the first comment: https://bugreports.qt.io/browse/QTCREATORBUG-24248
  • Unable to make BLE connect with iOS device

    Unsolved
    1
    0 Votes
    1 Posts
    498 Views
    No one has replied
  • How to use the OS back button on QML Loader component change and on SwipeView move?

    Solved
    3
    0 Votes
    3 Posts
    373 Views
    mbruelM
    @J-Hilk I don't use an ApplicationWindow, just a simple Window. my onReleased code is there. it is not triggered by the swipe action to do an Android back event. the onClosing is working :) I guess I can implement a state machine to remember the previous view (either due to a change of source of my main Loader or the index of the active SwipeView) Cool, thanks ;)
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    16 Views
    No one has replied
  • Problem to connect serial port on android platform

    Unsolved android serial port qt 5.14.0
    1
    0 Votes
    1 Posts
    846 Views
    No one has replied
  • Configuration tests failed to determine host architecture

    Unsolved
    12
    0 Votes
    12 Posts
    2k Views
    D
    So we have a patch to change the QMAKE_CFLAGS_OPTIMIZE and QMAKE_CFLAGS_OPTIMIZE_FULL flags based on the product we are building it for. I am passing in a value using 'device-option' to the configure script in qtbase. However, for some reason, that value is not getting passed to qtbase/mkspecs/common/gcc-base.conf
  • Button gets latched at times

    Unsolved 4.8 embedded qt am335x pushbutton
    4
    0 Votes
    4 Posts
    1k Views
    mrjjM
    Hi One reason can be the touch setup -- Can you please explain a little more on this? Well since it only happens sometimes, i guess its not that. I have seen something like it when touch was setup for gestures and you kinda moved the finger when you "clicked" it would then start the gesture and sort of eat the click. Could also be a bug in Qt4.8 that the later fixed with Grabmouse -- Is there any defect ID that you remember? That will add more waitage for the understanding. Sorry nope. it was a duck. It was due to calling a message box that would run event loop and button would not redraw before after. One of the other thought that I have is, if this is really a UI issue or this is being a side effect due to any other -problems such as CPU load, Memory full, etc. Do you think it is possible? Yes that is really possible if the target is low powered board and it's low on say ram then the same task might suddenly take much longer and the button will appear down. Have you tested with a button that does nothing and see if that can get stuck?
  • Error adding openssl support to Android project

    Solved
    3
    1 Votes
    3 Posts
    916 Views
    M
    @MrCrackPotBuilder Thanks a lot for your investigation. It probably saved me a week. Thanks!
  • imx6dl - Could not find eglfs plugin

    Solved
    2
    0 Votes
    2 Posts
    201 Views
    M
    Solved, in fact I don't know the exact reason. I just checked some static libs in my project and changed a little bit.
  • QtCreator doesn't find standard headers

    Solved
    3
    0 Votes
    3 Posts
    376 Views
    D
    I found solution. My CmakeLists.txt contained: SET(CMAKE_CXX_FLAGS "<something>") QtCreator creates its own CMAKE_CXX_FLAGS, so we just need to change it to: SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS } <something>")
  • App cannot be built using Qt 5.13 (Android)

    Solved
    5
    0 Votes
    5 Posts
    451 Views
    D
    I couldn't fix it for hours ... I downgraded the version of QtCreator TO 4.10 and errors were shown... Solution here: https://forum.qt.io/topic/117303/qtcreator-doesn-t-find-standard-headers/3
  • why QLowEnergyService::UnknownError

    Solved
    2
    0 Votes
    2 Posts
    662 Views
    T
    I had the exact same problem today. Fixed it eventually by making the connection to QLowEnergyController::serviceDiscovered queued (Qt::QueuedConnection). I don't really understand why this helps, but apparently the QLowEnergyController cannot create a QLowEnergyService object in an unqueued callback from the serviceDiscovered event. Maybe the internal administration of QlowEnergyController is not completely done yet at the time of the event and creating a service object at that point results in an unknown error (error string is empty, so that also doesn't help). I looked at the code of the Low Energy Scanner example and there they also don't use a queued connection (although the Qt::autoconnection type can result in a queued connection). Looks like a sloppy implementation on QT side: code only works if called from a certain thread and error message is completely uninformative.
  • 0 Votes
    7 Posts
    4k Views
    C
    Thanks @J-Hilk. Did you consider that OEM shipped samsung keyboard can launch number keypad without combining ". and -" Launched from QT/QML [image: 1ee42f36-59b6-4634-8921-e61dc82a6d21.png] VS Launched from Android native app [image: 6fc07a82-9c3d-495b-8fe3-222dee4d74eb.png] SO i guess QT is launching number keypad with some setting. One more finding here is if any keyboard has such combined key, such issue could appear. Thanks for your suggestion, we thought of implementing the 1st suggestion and custom component which looks like [ ].[ ].[ ].[ ]. Second would be not very good solution as we would like to stick with Keyboard's provided number keypad rather than creating self.
  • App freeze when gallery is opening on iPhone

    Unsolved iphone ios gallery
    1
    0 Votes
    1 Posts
    475 Views
    No one has replied
  • QProgressDialog does not show as correct size in iOS

    Unsolved
    1
    0 Votes
    1 Posts
    145 Views
    No one has replied
  • 0 Votes
    24 Posts
    22k Views
    S
    @mrjj Likely Google removed them. If you delete that package from the SDK Manager and also delete its folder from the disk it might also be not available for you. The issue would go away if I install an older version of the NDK which makes me think it would be related to NDK version not being supported than SDK Tools.
  • What's the future for Qt development for iOS, iPad OS and Android?

    Unsolved
    4
    0 Votes
    4 Posts
    599 Views
    mohaboujemaouiM
    @sierdzio awesome! Thank you for your quick answer! For an initial version, I'm not planning to use any fancy API, so I hope that with the mechanism that Qt provides and a minimum set of binding stuff work as expected. This can be a good opportunity to update the look of the Application with modern QML components!
  • Cross compiling qt for arm

    Unsolved
    6
    0 Votes
    6 Posts
    1k Views
    V
    I am corss compiling it for Ti J6+ @KroMignon
  • Qt5.6.3 examples not being run with LinuxFB and evdev

    Solved
    5
    0 Votes
    5 Posts
    708 Views
    R
    @jsulm After resolving the configure options and patches to use the same build on host VM and target, Qt examples could be run on target. Thanks.