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
  • Qt source build fails (4.8.) on Pixman

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Cross compile fails with 'could not read symbols: File in wrong format'

    2
    0 Votes
    2 Posts
    4k Views
    J
    The problem was the gcc/g++ in /usr/bin were both arm target. So LD did not understand.
  • Accept user input using Spinbox

    2
    0 Votes
    2 Posts
    985 Views
    dheerendraD
    You need to connect the pushbutton clicked() signal with your slot @connect(button,SIGNAL(clicked()),&w,SLOT(myslot())); void MyWidget::myslot() { int val = spinBox->value(). }@ I suggest you read the signal and slots of pushbutton. Look at how to write slots.
  • OpenCV: highgui library not implemented

    3
    0 Votes
    3 Posts
    3k Views
    M
    OK, thanks Sgaist. Done. If I get an answer, I'll post it.
  • Qt5.3 Android: Exclude subdir project in Qt Creator

    6
    0 Votes
    6 Posts
    2k Views
    SGaistS
    Hi, Does it also still builds ? If not, then you're good. However it looks like a misbehavior from Qt Creator, you should check the "bug report system":http://bugreports.qt-project.org to see if it's something known.
  • 0 Votes
    17 Posts
    8k Views
    SGaistS
    Segfault ? Did you run your program with the debugger to see where it's crashing ?
  • App looks fine on Desktop, but not iOS emulator

    6
    0 Votes
    6 Posts
    1k Views
    A
    I've gotten the code to work, but it looks weird. How do I get the dimensions to this?!http://i.imgur.com/PkrrWEq.png()!
  • Does Bluetooth on Android correctly supported?

    4
    0 Votes
    4 Posts
    1k Views
    SGaistS
    If I'm not mistaken Qt needs at least API level 13 and 2.3.6 is 10. Does you application also crash without bluetooth ? I don't know the current state of bluetooth on iOS.
  • Problem with qt bluetooth(qml type) [Solved]

    4
    0 Votes
    4 Posts
    2k Views
    M
    Edit: [Solved] thanks to X-Krys
  • Preventing piracy

    1
    0 Votes
    1 Posts
    601 Views
    No one has replied
  • "release/AppxManifest.xml" does not exist on Windows Phone 8.1 Emulator

    2
    0 Votes
    2 Posts
    3k Views
    J
    It is recommended to use Visual Studio for WinRT-development. There you will see want is going wrong (debug output). The WinRT-plugin of QtCreator is in a beta stage and has not the functionality e.g of the Android-plugin. In Command-line, type <path-to-winrt-qt>\bin\qmake.exe -tp vc CONFIG+=windeployqt <yourproject>.pro This should work 100%!
  • Scribble on android

    1
    0 Votes
    1 Posts
    577 Views
    No one has replied
  • Qt Positioning

    6
    0 Votes
    6 Posts
    2k Views
    W
    Is there anyone that has some idea what I can try to do ? //wincc
  • [CLOSED]XAML and CX in Qt for Windows Phone

    4
    0 Votes
    4 Posts
    2k Views
    J
    Hi matdennoigi, mixing XAML with Qt on Windows Phone is currently not supported. So you can't integrate a XAML-adbanner! There were some investigations to make this possible, but I don't know the exact development progress. Hopefully, you can do it with Qt5.4 in October!
  • Tslib with dirverless usb touch module

    9
    0 Votes
    9 Posts
    5k Views
    R
    Hi DasBasti, I have same case with you, but i can modify driver of touch screen controller and compile it again. Because you said that your device is "driverless" so i think you should ask your supplier of usb touch screen. hope this help
  • Qt app on Windows phone 8

    10
    0 Votes
    10 Posts
    4k Views
    J
    I solved this problem by setting: qmake -tp vc TestQuickForWinPhone8.pro and opened the project via VS 14. The packed it. One thing that I cannot solve is that in command prompt, when I tapped those commands, the system echos that uuidgen is not a valid program, means I do not have uuidgen. How you solve this problem, does uuidgen in your computer? without uuid, the VS project is not correctly generated due to productID error. Finally I solve it by using guidgen to generate a guid and write it into WMManifest.xml. How you solve "uuidgen" problem? I noticed that we can use Qt for Windows Phone project. How about using Qt for X-Box project? I am curious about that.
  • Problems using Qt Creator for cross-compiling for ARM

    4
    0 Votes
    4 Posts
    8k Views
    H
    which is recommend cross-compiler? mingw, buildroot or openembedded?
  • I can't reply all topic...

    3
    0 Votes
    3 Posts
    845 Views
    J
    Now we can. Maybe it is bacause the forum servers are too far-away from Asian users.
  • Will Qt run on BeagleBone?

    3
    0 Votes
    3 Posts
    3k Views
    JKSHJ
    Qt 4 example: http://www.cloud-rocket.com/2013/07/building-qt-for-beaglebone/ Qt 5 example: http://armsdr.blogspot.com.au/2014/01/bare-metal-qt-52-on-beaglebone-black.html
  • QtCreator autocomplete not working (headers included elsewhere)

    3
    0 Votes
    3 Posts
    2k Views
    S
    Indeed, that works beautifully. Thanks a lot :)