Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.2k Topics 62.7k Posts
  • WI-FI Scan

    Unsolved
    4
    0 Votes
    4 Posts
    997 Views
    SGaistS
    Nmap comes to mind.
  • 0 Votes
    2 Posts
    613 Views
    SGaistS
    Hi, For highly specific platform API, you will have to write some platform specific code. Qt can't cover absolutely everything and it's not its goal. Android is a bit of a special case because of its use of Java. You should take a look at the QtAndroidExtras module and its examples. Note that this is really specific to Android and how it works. There are other extras modules for some often used platform specific stuff that you can take a look at in terms of how things can be done. Note that these modules have been deprecated for Qt 6 in favor of a different approach and integration in a more centralized way.
  • Qt for Android runs statements incorrectly

    Solved
    8
    0 Votes
    8 Posts
    820 Views
    JonBJ
    @LorenDB In practice, uninitialized variables can often have a different value in Debug vs Release builds, and be the cause of misbehaviour in one versus the other. They can be difficult to track down. I believe there are specialized tools to analyze code or do runtime detection for them, don't know if there is anything FOSS.
  • Using CMake in QML apps and how to master it

    Unsolved
    1
    1 Votes
    1 Posts
    194 Views
    No one has replied
  • QT REAL TIME graph for large pixel data

    Unsolved
    2
    0 Votes
    2 Posts
    252 Views
    S
    I want it in line series format,is it possible to plot 2048 pixel plot in line series graph and update with the new values?
  • Qt 5.15.2 and RaspberryPi4: Problems with OPC-UA Client

    Solved
    3
    0 Votes
    3 Posts
    433 Views
    M
    Dear jsulm, thank you for your reply and your help with description link. That helped to solve the problem by my own. I replaced m_client->connectToEndpoint(QUrl(url)); by QOpcUaEndpointDescription d; d.setSecurityMode(QOpcUaEndpointDescription::None); d.setSecurityPolicy("http://opcfoundation.org/UA/SecurityPolicy#None"); d.setEndpointUrl("ServerAdress"); //Add your server adress m_client->connectToEndpoint(d);
  • How do you know if it is connected?

    Solved
    5
    0 Votes
    5 Posts
    429 Views
    F
    I think I have a better idea of using threads to monitor network state. The way to do this is to use the above method in the thread and use QTimer.
  • Why Qt is so underrated among developers

    Unsolved qtableview
    2
    0 Votes
    2 Posts
    1k Views
    JKSHJ
    Post copied from https://www.reddit.com/r/QtFramework/comments/fx6jfu/why_qt_is_so_underrated_among_developers/
  • 0 Votes
    2 Posts
    919 Views
    mbruelM
    alright, just needed to add this in the CMakeLists.txt: include(<path/to/android_openssl/CMakeLists.txt) (cf here) and re-run cmake
  • How do I ensure a QDialog's widgets fit on the screen on iOS?

    Solved
    9
    0 Votes
    9 Posts
    1k Views
    M
    @SGaist Yes thanks I can give that a go. I guess it's only on iOS that the dialogs are always going to be fullscreen. I see that word-wrapping is not possible on QRadioButton and QCheckBox https://bugreports.qt.io/browse/QTBUG-5370 so it looks like I'll have to use a custom widget to do that.
  • Empty Application Output

    Unsolved
    5
    0 Votes
    5 Posts
    775 Views
    ekkescornerE
    @kingsta from time to time this happens for specific android devices. in most cases it helps to restart QtC and also Android device. what's your device and android OS on device ? have you tried to run on a different device ?
  • Building QtXlsxWriter with Qt using android kit

    Solved
    4
    0 Votes
    4 Posts
    580 Views
    ahsan737A
    the issue gets resolved, I was mistakenly adding the QT += xlsx to qmake project file but it is not required.
  • Gralloc3: mapper 3.x is not supported error with ChartView

    Solved
    2
    0 Votes
    2 Posts
    5k Views
    O
    I was using QGuiApplication app(argc, argv) instead of QApplication app(argc, argv). That was the problem about chartview. Now i switched to QApplication and i can draw charts on my phone. i learned it from: https://stackoverflow.com/questions/46471805/chartview-crash-when-launching-on-mobile-qt-qml-error I don't get "F libc : Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0 in tid 8306 (qtMainLoopThrea), pid 8277 (org.my_usb)" error anymore. But "W Gralloc3: mapper 3.x is not supported" error remains. Even i built official examples from Qt. But i will ignore it for now.
  • QT multimedia

    Unsolved qtmultimedia
    6
    0 Votes
    6 Posts
    977 Views
    SGaistS
    No warning or error message on the console ?
  • Android - Poor Qml Text fields & emojis alignment

    Unsolved
    1
    0 Votes
    1 Posts
    289 Views
    No one has replied
  • how to add down counter into thread which called from main thread per 2 ms?

    Solved
    4
    0 Votes
    4 Posts
    516 Views
    jsulmJ
    @Qt-embedded-developer And what is the problem? If your counter is 500ms and you can't change that then trigger the action on every second timeout...
  • Qt Creator + IAR

    baremetal qtcreator iar
    9
    0 Votes
    9 Posts
    5k Views
    K
    Right now it is possible in QtCreator or VSCode using the Qbs build system. Sorry for this delay. ;)
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • How to know ioctl not detected chip address ?

    Unsolved
    3
    0 Votes
    3 Posts
    443 Views
    Q
    @JonB this is related to embedded if know then let me know