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
  • 3 Votes
    3 Posts
    6k Views
    B
    Thanks。 you help me too much。
  • How to compile only arm64 target on iOS

    Unsolved
    5
    1 Votes
    5 Posts
    2k Views
    C
    @SGaist QT9.6. I changed a method, the library linked to the program is also compiled armv7 and arm64. First compile the armv7 and arm64 libraries separately, then merge them with the lipo tool.
  • Settings for Android development (also for PySide2)

    Unsolved
    2
    0 Votes
    2 Posts
    494 Views
    SGaistS
    Hi, Not that carefully: you installed NDK r18 while r10e is recommend. From some posts I've seen, it seems that r17 might be an option. But IIRC with r18, gcc was dropped and is now a symlink to clang. More information about Python on Android can be find here.
  • Checking compatibility of custom framebuffer with Qt application

    Unsolved
    6
    0 Votes
    6 Posts
    981 Views
    E
    I tried to export that and looked at framebuffer calls. Its seems that qt linuxfb just calls mmap and grabs a pointer to the buffer memory. It then just edits all the pixels using that pointer. Thanks for the suggestion! I was able to track that my framebuffer driver was wrong and was able to change it.
  • Windows 10 for Android Project

    Solved
    7
    0 Votes
    7 Posts
    2k Views
    R
    I have found the problem. The auto-detect kits function only works using NDK 10, while before I was using NDK 18. So after selecting the kits, the project can be built. But this problem is hard to detect because there's no useful information.
  • Missing compilers for andorid

    Unsolved
    2
    0 Votes
    2 Posts
    403 Views
    Pablo J. RoginaP
    @amanill are you sure you have followed the prerequisites?
  • This topic is deleted!

    Unsolved
    8
    0 Votes
    8 Posts
    107 Views
  • 0 Votes
    1 Posts
    456 Views
    No one has replied
  • Boot time optimization techniques

    Unsolved loader boottime optimization earlyboot static linking
    5
    0 Votes
    5 Posts
    3k Views
    S
    @JKSH Yes I did. On QT part, we followed a lot of techniques mentioned in that post. Using Loaders for lazy loading, optimizing images, using qtquickcompiler. The major challenge is on the OS boot time that we are working on.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Fresh start on an RTOS

    Unsolved
    7
    0 Votes
    7 Posts
    1k Views
    aha_1980A
    Here is the link to the corresponding thread on the mailing list.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    17 Views
    No one has replied
  • Android port problem

    Unsolved
    2
    0 Votes
    2 Posts
    2k Views
    raven-worxR
    @Bremenpl there is a known issue for the androideployqt tool to scan QML imports across all qml files and add them to the APK. Add all imports to the main qml file to let the androideployqt discover them. Maybe this is also the case here. Regarding the warnings. About what warnings are you talking? At least those: /data/app/org.qtproject.example.ntm_client_win32-1/lib/x86/libQt5Network.so: unsupported flags DT_FLAGS_1=0x81 can be ignored (QTBUG-57909)
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    23 Views
    No one has replied
  • QMediaPlayer Service on Raspberry Pi 3 (Stretch)

    Unsolved
    7
    0 Votes
    7 Posts
    3k Views
    Cleiton BuenoC
    For you to debug with just only QtMultimedia set this variable environment: export QT_LOGGING_RULES=qt.multimedia.*=true Why you not use PySide2? It practical and efficient install with virtualenv and pip3. I belive there are missing libraries as Gstreamer, in this case. Cleiton Bueno Blog | Linkedin | B2Open
  • Rotate QpushButton with text

    Unsolved
    3
    0 Votes
    3 Posts
    998 Views
    A
    Thank you for reply @jsulm :) Actually i am working on Ubuntu mate (Linux) and i have rotated the screen also but, in Ubuntu mate OS screen is rotates onlu 180 degree only (Just like mirror image). it is not getting rotate +90 degree or -90 degree. Is there any other option to rotate?????
  • F/libc : Fatal signal 11 (SIGSEGV) .... (qtMainLoopThrea)

    Solved
    3
    0 Votes
    3 Posts
    2k Views
    TuniDevT
    I solved by closing my db connexion with this instruction : dbCnx.removeDatabase (dbCnx.connectionName ());
  • Application not working in release mode on Android

    Unsolved
    7
    0 Votes
    7 Posts
    2k Views
    D
    Thanks for the tip, I will keep that in mind. @aha_1980 said in Application not working in release mode on Android: Have you changed anything on your computer? Updated Qt, Qt Creator or Android NDK or SDK? Well, yes I have reinstalled Qt on my Linux machine and installed Android Studio (for SDK and NDK). However, as I mentioned in the bug report I have tried to run the application from a fresh install of Qt on Windows and experienced the same issue.
  • error: no member named 'create' in 'QThread'

    Solved
    7
    0 Votes
    7 Posts
    3k Views
    TuniDevT
    I find the solution, hope that help some one. void Handler_Transaction::saveObject(bool modeThread) { if(modeThread == true) { //****************************************************** // it work for me QtConcurrent::run( this{ this->saveObject(false);}); ); return; } //doing script of thread here // }
  • QRadioTuner problem

    Solved
    5
    0 Votes
    5 Posts
    1k Views
    I
    Hi @SGaist , Yeah i just need to look into it a little bit better and do some research. After i get the class working i will try to integrate it, but this radio system is kinda low on my priority list, so i will come back with a solution when i have the time. I will mark this as solved and start a new thread when i have the class made for integration. Thanks, Izba