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
  • 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.
  • Cannot build Qt 5.4 for Windows Embedded Compact 7

    3
    0 Votes
    3 Posts
    2k Views
    M
    Hi Gerhard when I successfully compiled Qt.5.4 for WEC7 under Win7 with VS2008 platform builder, I used the following command: configure.exe -platform win32-msvc2008 -xplatform wince70embedded-armv4i-msvc2008 -developer-build -qt-style-fusion -opensource -nomake examples -nomake tests -rtti -qt-crt -opengl es2 -no-accessibility -confirm-license Maybe this info can help you. I built it for the beagleboard xm and against the suiteable SDK. Cheers J
  • 0 Votes
    2 Posts
    2k Views
    M
    Hi mdoser when I successfully compiled Qt.5.4 for WEC7 under Win7 with VS2008 platform builder, I used the following command: configure.exe -platform win32-msvc2008 -xplatform wince70embedded-armv4i-msvc2008 -developer-build -qt-style-fusion -opensource -nomake examples -nomake tests -rtti -qt-crt -opengl es2 -no-accessibility -confirm-license Maybe this info can help you. I built it for the beagleboard xm and against the suiteable SDK. Cheers J
  • Equivalent of java activity in qt android

    4
    0 Votes
    4 Posts
    1k Views
    benlauB
    Hi Pragmatik, You may take a look on this project. The library has supported to handle the "back button". You may check the example project. https://github.com/benlau/quickandroid
  • [Solved] ERROR QOpenGLWidget example - Undefined symbol

    22
    0 Votes
    22 Posts
    10k Views
    M
    I will use XCB as people are recommending this one for my device. I created a new thread for my XCB-related-errors as it is not related to this one anymore. Thank you for your help!!
  • Bluetooth on iOS 8 & Qt C++

    8
    0 Votes
    8 Posts
    2k Views
    SGaistS
    So serial printers ?
  • [SOLVED] Play ios default ringtone

    7
    0 Votes
    7 Posts
    5k Views
    SGaistS
    That I don't know, you should read their documentation and try submitting. Worst case you have to do some rewrites and try again.
  • Setting QV4_NO_SSA to prevent crashes on older Android phones

    1
    0 Votes
    1 Posts
    578 Views
    No one has replied
  • [Windows Phone] Missing makefile.Debug and makefile.Release

    1
    0 Votes
    1 Posts
    521 Views
    No one has replied
  • [SOLVED]Compass not active

    4
    0 Votes
    4 Posts
    1k Views
    S
    With Qt 5.4, the new release, I could get it. I could see the QCompass as one of the available sensors on the device and with the help of the QCompassReading, I could get the azimuth.
  • Beginner's guide to WiFi (for Android)?

    4
    0 Votes
    4 Posts
    1k Views
    A
    You can always use the Java APIs: http://developer.android.com/reference/android/net/wifi/package-summary.html and hook them up to your Qt app via JNI: https://www.qtdeveloperdays.com/sites/default/files/BogdanVatra_Extending_Qt_Android_Apps_with_JNI.pdf
  • Strange logs during building app for Android target

    1
    1 Votes
    1 Posts
    832 Views
    No one has replied