Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.4k Posts
  • how to use virtual keyboard for stm32mp157d-dk1

    Unsolved
    2
    0 Votes
    2 Posts
    248 Views
    jsulmJ
    @sharan16k said in how to use virtual keyboard for stm32mp157d-dk1: when i try toimplement as given in the below page So, does it work or not?
  • Android Build in QT Creator will not install on phone

    Solved
    4
    0 Votes
    4 Posts
    340 Views
    JonBJ
    @scottm1982 That's good. Then to help other readers you can Mark as Correct your own final post.
  • Unknown CMake command _qt_internal_create_global_android_targets

    Unsolved
    4
    0 Votes
    4 Posts
    601 Views
    J
    The problem is CMake tries find in /qtbase/lib/cmake/Qt6Core/Qt6AndroidMacros.cmake, but Qt6AndroidMacros in /qtbase/src/corelib. Very stupid solution is change path in qtbase/src/corelib/Qt6CoreConfigExtras.cmake.in line 33 to absolute
  • Issues with Building OpenCV for Android using Qt 6.4.2 on Windows 10

    Unsolved
    13
    0 Votes
    13 Posts
    938 Views
    jsulmJ
    @Kaguro Please post whole build log.
  • Qt5.15.2 for Android: How to make tcp connection keepalived

    Unsolved
    2
    0 Votes
    2 Posts
    223 Views
    jsulmJ
    @iamnotsad said in Qt5.15.2 for Android: How to make tcp connection keepalived: Is there any solutions for this issue? https://developer.android.com/training/run-background-service/create-service
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • 0 Votes
    16 Posts
    1k Views
    V
    @J-Hilk It all looks fine to me as well, this is why it's even more difficult to find the issue. Oh well, guess I have to spend more time on this than I had planned to. Thanks for all your help tho, I highly appreciate it! :)
  • Application hangs after using up/down arrows in scrollbar of scrollarea widget

    Unsolved
    14
    0 Votes
    14 Posts
    937 Views
    V
    Thank you for the support. I will use this tool for further analysis.
  • Using 485 for QmodbusServer library

    Unsolved qmodbusdevice modbus rs485
    7
    0 Votes
    7 Posts
    1k Views
    A
    Hi @Chai18 Did you find any solution ? I have a similar issue but in the client side (QModbusClient) , this is my function to write data to the holding registers , but I'm all the time getting the response timeout, and master is actually handling incoming requests and send appropriate responses automatically. void Serial::writeData(int start, const QList<quint16> &holdingRegisters) { if (!modbusDevice) return; startAddress = start; numberOfEntries = holdingRegisters.size(); // Switch to Transmit Mode switchGPIO->setValue(true); // enables TX QModbusDataUnit writeUnit = writeRequest(); QModbusDataUnit::RegisterType table = writeUnit.registerType(); for (qsizetype i = 0, total = writeUnit.valueCount(); i < total; ++i) { const auto addr = i + writeUnit.startAddress(); if (table == QModbusDataUnit::Coils) writeUnit.setValue(i, m_coils[addr]); else writeUnit.setValue(i, holdingRegisters[addr]); } if (auto *reply = modbusDevice->sendWriteRequest(writeUnit, serverAddress)) { if (!reply->isFinished()) { QModbusDevice::connect( reply, &QModbusReply::finished, this, [this, reply]() { // Switch back to Receive Mode usleep(1000); // Small delay before switching switchGPIO->setValue(false); // Enable RX mode const auto error = reply->error(); if (error == QModbusDevice::ProtocolError) { qDebug() << "Write response error:" << reply->errorString() << "(Modbus exception:" << reply->rawResult().exceptionCode() << ")"; } else if (error != QModbusDevice::NoError) { qDebug() << "Write response error:" << reply->errorString() << "(code: 0x" << QString::number(error, 16) << ")"; } reply->deleteLater(); }); } else { qDebug() << "Write error: " << reply->errorString(); reply->deleteLater(); } } else { qDebug() << "Write error: " << modbusDevice->errorString(); switchGPIO->setValue(false); // Ensure RX mode is enabled on failure } } Thanks in advance
  • QScroller Grab Gesture causes Rendering issues on Android

    Unsolved android 6.8 tearing qscrollbar c++
    3
    0 Votes
    3 Posts
    403 Views
    E
    https://bugreports.qt.io/browse/QTBUG-135011 for anyone else encountering this, I have opened a bug with the upstream https://bugreports.qt.io/browse/QTBUG-135011
  • QtQuick stuck at 24FPS (wearable example)

    Unsolved
    1
    0 Votes
    1 Posts
    134 Views
    No one has replied
  • AndroidExtras, import error

    Unsolved
    4
    1 Votes
    4 Posts
    538 Views
    V
    @J-Hilk Sorry, I would say I have a similar* issue. I posted the issue I have yesterday and got no response yet. This looked similar to what I am facing. I cannot import anything from androidx. Here is the link to my post: androidx package does not exist error . I would appreciate some help. Thanks in advance :)
  • Qt6 Android - SQLite Driver Not Found

    Unsolved
    2
    0 Votes
    2 Posts
    271 Views
    SGaistS
    Hi and welcome to devnet, From the looks of it, you try to load an x86 plugin with an arm64 version of Qt. That's not possible.
  • Qt Qml Android studio plugin is crashing

    Unsolved
    3
    0 Votes
    3 Posts
    351 Views
    S
    @Scott-Izi the StackOverflow is here
  • QCombobox stop working after back navigation on android in Qt 6.4.2 C++

    Unsolved
    4
    0 Votes
    4 Posts
    599 Views
    KaguroK
    @samuel898 Hi! Finally the Qt Team started working on my ticket! So you can follow the process on this ticket if you want: https://bugreports.qt.io/browse/QTBUG-127495
  • building android apk arm64-v8a error

    Unsolved
    1
    0 Votes
    1 Posts
    165 Views
    No one has replied
  • Issue with Gradle when building Qt app for Android

    Unsolved andriod gradle qtcreator
    1
    1 Votes
    1 Posts
    242 Views
    No one has replied
  • gstreamer gst_parse_element_make: no element "video"

    Unsolved
    4
    0 Votes
    4 Posts
    521 Views
    JoeCFDJ
    @petero3 I guess you are using Qt5 and this feature of running pipelines within multimedia module is not supported any more in Qt6. Therefore, it may be a good idea to use raw gstreamer code directly and you have much better controls over your pipelines.
  • Using Java in my Qt/Android project

    Solved
    6
    0 Votes
    6 Posts
    2k Views
    G
    I found a working way to solve the problem. https://scythe-studio.com/en/blog/how-to-interface-qt-with-android-java-code-2023 And also check. https://doc.qt.io/qt-6/qtcore-platform-androidnotifier-example.html
  • AbstractButton without icon may crash on Android

    Unsolved
    4
    0 Votes
    4 Posts
    350 Views
    SGaistS
    Thanks ! You might want to provide a minimal compilable example that reproduces this to the report.