Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.5k Posts
  • QWidget Modal

    10
    0 Votes
    10 Posts
    4k Views
    SGaistS
    Wasn't the call to exec enough ?
  • QProcess with External script that kills the main process.

    3
    0 Votes
    3 Posts
    1k Views
    SGaistS
    Hi, Depending on the application connecting to QApplication::quit will ensure that the application is closing. The quitOnLastWindowClosed flag might be unset so closing windows might not be enough
  • [Solved] Qt 5.4 Webkit or Webengine support

    7
    0 Votes
    7 Posts
    3k Views
    O
    Hey, sorry, i didn't find any alternatives yet.
  • [Resolved]Broadcast problem in embedded system

    2
    0 Votes
    2 Posts
    740 Views
    I
    Hi guys: I add a code and everything is ok. Hope this can help other people. But i still don't know why this can work. @system("ip route add 255.255.255.255 dev eth0");@
  • Error to run and debug on iOS phone

    2
    0 Votes
    2 Posts
    817 Views
    SGaistS
    Hi, Are you member of the iOS developer program from Apple ? It's mandatory if you want to run code on your device
  • QDesktopServices::openUrl on Android

    2
    0 Votes
    2 Posts
    2k Views
    SGaistS
    Hi, Just a quick idea but it seams to you accessing some special storage device so are you sure your application has the necessary permissions for that ? Hope it helps
  • Problem with intent communication calling Zxing scanner app

    2
    0 Votes
    2 Posts
    1k Views
    M
    I need help! Did anyone find a solution to get the scan result? After calling this command: "QAndroidJniObject result = intent.getObjectField<jstring>("SCAN_RESULT")" the result variable is not valid and I don't know why.
  • Qt 5.4 Photo Surface example 100% CPU

    1
    0 Votes
    1 Posts
    433 Views
    No one has replied
  • Qmlscene.exe missing?

    2
    0 Votes
    2 Posts
    3k Views
    A
    What version of Qt do you have installed? Usually qmlscene is located in @ Qt<Version>/<Version>/<compiler>/bin/qmlscene @ I don't have windows with Qt. On Linux qmlscene is located in @ $HOME/Qt5.4.0/5.4/gcc_64/bin/qmlscene @
  • Qt - Android PositionSource

    1
    0 Votes
    1 Posts
    557 Views
    No one has replied
  • Qt Contacts 5.0 - PIM - Ministro?

    3
    0 Votes
    3 Posts
    1k Views
    JKSHJ
    Hi, Unfortunately, Qt Contacts is not actively maintained, and has not been polished enough to be released. I do not recommend trying to use it for production. However, if you are feeling adventurous, download the latest "source code":https://qt.gitorious.org/qt/qtpim/, open src/contacts/contacts.pro in Qt Creator, and build it with both your Windows kit and Android kit (Warning: This might be a tedious process and it might not even work) [quote author="zlutor" date="1418305052"]An other question: how to replace default android caller/dialer with an app made with qt?[/quote]You'll need to check the Android documentation.
  • Automotive Infotainment System

    Moved
    12
    0 Votes
    12 Posts
    5k Views
    A
    Ok, I just wanted to make sure. I'm not sure where to check the messages on this group... I'll look for your e-mail, take your time. Thanks again!
  • Qt on iOS: Status Bar Color

    8
    0 Votes
    8 Posts
    5k Views
    SGaistS
    Hi, About this @ [[UINavigationBar appearance] setBarTintColor:[UIColor yellowColor]];@ You can mix C++ and Objective-C code so it's probably working (haven't checked though)
  • Launch embedded QT from iOS native UIViewController

    1
    0 Votes
    1 Posts
    540 Views
    No one has replied
  • [iOS] QFile from qrc file

    5
    0 Votes
    5 Posts
    2k Views
    M
    This looks like the issue I'm having. I'm running Qt5.3.2 though
  • QtSerialPort with no libudev

    3
    0 Votes
    3 Posts
    3k Views
    K
    Checking of libudev existence (libudev-dev) does automatically when you try to open the qtserialport.pro file from the root directory of the QtSerialPort sources. In this case triggered the packagesExist script in "serialport-lib.pri" file: @ unix { packagesExist(libudev) { CONFIG += link_pkgconfig DEFINES += LINK_LIBUDEV PKGCONFIG += libudev } } @ If your target's rootfs has libudev, then the LINK_LIBUDEV macro will be defined. In this case your QtSerialPort will be explicitly linked with the libudev library. Otherwise, your QtSerialPort will be trying to search and resolve the libudev in runtime. So, in any case if your target contains the libusev.so, then QtSerialPort always will use libudev (has no matter, is triggered the LINK_LIBUDEV macro or not in compile time). So, if the libudev doesn't contains physically on your target and QtSerialPort was compiled without LINK_LIBUDEV macro, then will be used SysFs in runtime. Otherwise your application even does not startup, if the LINK_LIBUDEV macro was defined in compile time. Thus, it is enough to comments out the code "/* unix {...} */" (see above snippet) in the serialport-lib.pri file and to rebuild QtSerialPort. In this case QtSerialPort always will try to resolve libudev in runtime and if no libudev present then SysFs will be used. In case if you want even do not resolve libudev in runtime, then in addition you should to comments out the availablePortsByUdev() function in "qserialportinfo_unix.cpp" file: @ QList<QSerialPortInfo> QSerialPortInfo::availablePorts() { bool ok; QList<QSerialPortInfo> serialPortInfoList; /// << COMMENTS OUT THIS #ifdef Q_OS_LINUX /// if (!ok) <<< AND COMMENTS OUT THIS serialPortInfoList = availablePortsBySysfs(ok); #endif if (!ok) serialPortInfoList = availablePortsByFiltersOfDevices(ok); return serialPortInfoList; } @ and to rebuild QtSerialPort.
  • Qt for WinCe 6.0

    4
    0 Votes
    4 Posts
    2k Views
    M
    If there isn't one you have to write it yourself. There aren't many hardware outside with MIPS cpus. And in the link of my previous mail you can find the official supported platforms. You have to do it your self. Sorry.
  • Fast video display on embedded linux

    6
    0 Votes
    6 Posts
    2k Views
    M
    Dear Kbari I have talked with my colleague about this topic. And we are know the meaning that this is not the fastest of all possibilities. It is the fastest of all mentioned but there is maybe a faster one. In which format are the images RGB, YUV, ... Try to avoid conversions. Try to use hardware acceleration. Use the Imaging processing unit of the i.mx6 I'm quite sure that you can access this unit directly. http://hands.com/~lkcl/eoma/iMX6/VPU_API_RM_L3.0.35_1.1.0.pdf http://cache.freescale.com/files/32bit/doc/app_note/AN4629.pdf
  • 0 Votes
    4 Posts
    30k Views
    M
    Thank you for your answer ! I got it work!!! Basically it was a problem with the @XCB .................. yes (system library) EGL on X ........... no@ that is supposed to be "yes". Some libraries were missing. Here my steps in case someone needs it: install libdbus-1-dev on my target => dbus seems to be needed so I removed the -no-dbus from my ./configure Copy the libdbus-1.so.3.7.6 on my host and create the links of libdbus-1.so Check the configure results to find out which libraries are missing. In my case, I needed to copy from the target to the host the following libraries: libX11-xcb.so.1.0.0 ; libXrender.so.1.3.0 ; libXext.so.6.4.0 and libxcb-render-util.so.0.0.0 I got the cube example working after that! Thank you !
  • How to use qxmpp in Qt5.1 for Android

    3
    0 Votes
    3 Posts
    1k Views
    R
    Can you solve this problem. I want to develop an instant message application for both of windows and android platforms, and my problem is "how to include the QXMPP in qt5.4 for using it. I am a (dot)Net developer and I have no idea what should i do in QT. I need EMERGENCY help.... Thanks in advance.