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
  • locating sysroot

    Unsolved
    17
    0 Votes
    17 Posts
    10k Views
    embdevE
    I see. ok so what if I've compiled the C source codes on my embedded target board into exe. files, and then use Qt Creator to develop my GUI, what are the things that I link from my GUI to my target board source codes? e.g. if I create a GUI with a button, that button when clicked will run the executable file I've created on my embedded target board?
  • How do I scan for specific BLE service UUIDs

    Unsolved bluetooth low e ble btle bluetooth uuid
    3
    1 Votes
    3 Posts
    2k Views
    SGaistS
    Hi, There might just be not much people on this forum that use the QtBluetooth module. In that case, there's always the interest mailing list where you can find Qt's developers/maintainers.
  • QFontDatabase: Cannot find font directory { PATH} - is Qt installed correctly?

    Unsolved
    4
    0 Votes
    4 Posts
    3k Views
    SGaistS
    I fail to see the relation with QFontDatabase. Can you explain ?
  • Delete all data from current application in device in QT/QML

    Unsolved
    2
    0 Votes
    2 Posts
    583 Views
    jsulmJ
    @halil-sogut68 It's not clear what you want to do: do you want to uninstall your app or do you want to delete some data your app created? If you want to delete the data your app created you can use QDir and QFile. For example use http://doc.qt.io/qt-5.7/qdir.html#removeRecursively do delete a directory.
  • Compile error while building a windows project for android

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    N
    @gen1izh Thank you
  • Point Cloud qt-creator with PCL library, Linux

    Unsolved
    10
    0 Votes
    10 Posts
    5k Views
    Andrey VolodinA
    thx, qt vizualizer which is pcl_vizualizer works fine with the Jetson JTK1 after the last Tegra release installed. It hardly helps get 3d reconstruction using RGB camera though. Andrey
  • This topic is deleted!

    Unsolved
    7
    0 Votes
    7 Posts
    29 Views
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Basic Example of Qt CANBUS for Yocto

    Unsolved
    1
    0 Votes
    1 Posts
    555 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Port windows qt 4.8.6 (with VS2010 ) to ubuntu 12.04

    Unsolved
    2
    0 Votes
    2 Posts
    603 Views
    raven-worxR
    @Sravanthi said in Port windows qt 4.8.6 (with VS2010 ) to ubuntu 12.04: 1.I want to install qt 4.8.6 in ubuntu 12.04 , what are the steps to compile ? See this 2.I have developed a windows application in qt 4.8.6 with VS2010 ,is there a way to port it to ubuntu ? Basically yes, since it's one of the main intentions of Qt to be platform independent. If you just use Qt classes of course.
  • Adding Qt stack to embedded linux kerenel

    Unsolved
    32
    0 Votes
    32 Posts
    12k Views
    embdevE
    Thanks for your advice! I guess i'll have to note down the portion of the vendor's framebuffer initialization code that I need next time!
  • Reduce Qt libraries size

    Unsolved size embedded reduce library
    9
    1 Votes
    9 Posts
    7k Views
    R
    @Schluchti I don't recall ever having an issue with the -Os flag in specific but then again it really depends on what you are doing and how you are coding it. :P
  • How to add a font to the QFontDatabase

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    joaopagottoJ
    #include <QFontDatabase> QFontDatabase::addApplicationFont(":/fonts/OpenSans-Bold.ttf"); Add font in Qt Resource, to build in executable. http://doc.qt.io/qt-5/resources.html
  • Qt 5.7 on Android problem - minimum version required is 16.

    Solved
    3
    0 Votes
    3 Posts
    2k Views
    M
    Thanks for your reply. Best Regards Marek
  • How use gps module?

    Unsolved
    4
    0 Votes
    4 Posts
    916 Views
    Pablo J. RoginaP
    @gen1izh what if you try a little example with Qt 5.5.1 to see if it works for you?
  • 0 Votes
    27 Posts
    11k Views
    S
    @SGaist i am not sure about this...for temporary solution i have to reboot my device after 3 hour.. ..
  • How to develop the Bluetooth file transfer app for SABRESD i.MX6 board?

    Unsolved
    3
    0 Votes
    3 Posts
    695 Views
    S
    Yeah manually using command line I am able to transfer the files to mobile. I am using Bluez5 bluetooth stack. Do I need to modify something in the code for that?
  • HowTo upload APP to APP Store ?

    Solved
    16
    0 Votes
    16 Posts
    4k Views
    SPlattenS
    Thank you, I will look into this further,
  • Call C++ function from android BroadcastReceiver

    Unsolved
    5
    0 Votes
    5 Posts
    4k Views
    joaopagottoJ
    Hello. See example: Qt\Examples\Qt-5.7\androidextras\notification Qt\Examples\Qt-5.7\androidextras\notification\android-sources\src\org\qtproject\example\notification\NotificationClient.java This class extends public class NotificationClient extends org.qtproject.qt5.android.bindings.QtActivity In other words this is your activity , add BroadcastReceiver there. Check that there is a change in AndroidManifest.xml android:name="org.qtproject.example.notification.NotificationClient" Where this class becomes its main activity. I have helped .