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
  • How to: Tokenization (Splitting) QBytearray data?

    Unsolved
    8
    0 Votes
    8 Posts
    1k Views
    ahsan737A
    @JonB codes are the same, I just have removed while loop because it wasn't making any difference, the error is being caused at readLine.
  • Qt 5.6 Qt labs controls porting to QtQuick2 controls in Qt 5.15

    Unsolved
    1
    0 Votes
    1 Posts
    149 Views
    No one has replied
  • Writing to frame buffer that appears as a v4L2 device in embedded linux

    Unsolved
    2
    0 Votes
    2 Posts
    311 Views
    SGaistS
    Hi and welcome to devnet, Just learned that v4l2 also has the output concept. If I where to go from scratch I would take a look at the LinuxFB backend for the structure.
  • EGL Error : Could not create the egl surface: error = 0x3003

    Unsolved
    8
    0 Votes
    8 Posts
    12k Views
    N
    HTH in some cases: I've faced the same issue once decreased the reserved memory size for gpu in my raspberry pi zero (from 64 to 32, but in your case it could vary from your board and display). So I thing the other option to solve 0x3003 is to try increase gpu memory buffer.
  • QT5 setup for STM32MP1

    Unsolved
    1
    0 Votes
    1 Posts
    672 Views
    No one has replied
  • Working with multiple java activities on Android

    Unsolved
    5
    0 Votes
    5 Posts
    582 Views
    M
    Obviously, programmers who use Qt try to avoid Java and other platform specifics or other-language things as much as possible. When they need to use Java once every couple of years, they do it by copying a short function from somewhere and then try to forget what they needed to do to make it work.
  • Code as text

    Unsolved
    2
    0 Votes
    2 Posts
    225 Views
    SGaistS
    Hi, Please use coding tags when posting code. You can use the </> button from the post editor tool for that. I guess you posted that in relation to your other thread. You should edit your original post there with this code and please do not forget to put it in coding tags.
  • Boot2QT & poppler

    Unsolved
    1
    0 Votes
    1 Posts
    218 Views
    No one has replied
  • Android NDK sysroot variable in QMake. How?

    Solved
    2
    0 Votes
    2 Posts
    371 Views
    B
    Issue closed. Solution found. This lines of code in *pro file printing Android NDK root path if it is in your project settings settings: android { message(Android NDK $$(ANDROID_NDK_ROOT)) } Project settings: [image: 3ebe0fe8-56cf-4646-813c-c202e0ca5ef4.png]
  • QserialPort can not find any port on Android

    Unsolved
    2
    0 Votes
    2 Posts
    300 Views
    jsulmJ
    @SerdarAhmet USB is not the same as Serialport and Putty is simply a SSH/Telnet client for Windows. Why do you want to use serial port on mobile phones (which do not have any)?
  • adding qtimer with wiringPiISR

    Solved raspberry cross-compiling wiringpi threads timer
    12
    0 Votes
    12 Posts
    2k Views
    aminaA
    @amina I posted this in an other forum because it has been a while that I am stuck and it has to be fixed .. I am going to share the solution it may help someone https://stackoverflow.com/questions/66869600/timer-couldnt-work-with-wiringpiisr-qtquick-application/66873812?noredirect=1#comment118230663_66873812 static instances of QObject are also not supported so the instance vitesse should be created after QApplication. this will fix the problem : static void isrInput_vitesse(); static Capteur_Input *vitesse = nullptr; static void isrInput_vitesse() { if(!vitesse) //not initialized yet return; QMetaObject::invokeMethod( vitesse, "isrCallback", Qt::QueuedConnection ); //or blockingQueue if you need to handle it directly in Qt way. } and in the main fucntion int main(int argc, char *argv[]) { QApplication a(argc, argv); //..... your main application body vitesse = new Capteur_Input(Pin_vitesse,PUD_OFF,INT_EDGE_RISING,isrInput_vitesse); ctx->setContextProperty("vitesse", vitesse); //... } the function isrCallback should be a slot
  • PkgConfig cannot find directfb

    Solved pkgconfig directfb cmake 5.5.1 ubuntu
    8
    0 Votes
    8 Posts
    2k Views
    raven-worxR
    @JoeA-B said in PkgConfig cannot find directfb: Why not link? I am adding a module to a full operating system and cannot control the rest of the configuration still a simple -ldirectfb parameter should work on all systems, when the plugin is in a default lib directory (which /usr/lib/x86_64-linux-gnu is btw for example on Debian/Ubuntu)
  • Java issue android Qt

    Unsolved
    2
    0 Votes
    2 Posts
    351 Views
    E
    Please, any suggestion for this case?
  • Downgrading to previous Android version

    Solved
    2
    0 Votes
    2 Posts
    237 Views
    K
    I solved my problem through recompilation against Qt5.15.2 which does not have the particular problem I had encountered with Qt5.15.0.
  • QProperty Animation with Mousemove events inQtWidgets

    Unsolved @qpropertyanima @qtwidgets mousemove
    1
    0 Votes
    1 Posts
    341 Views
    No one has replied
  • Deploy wiringpi libraries while cross compiling

    Unsolved
    4
    0 Votes
    4 Posts
    865 Views
    jsulmJ
    @sukoon Install libwiringpi2 and libwiringpi-dev on your RPi using apt and then sync your sysroot.
  • Video Player at Android 6.0.2

    Unsolved c++ qt6.0.2 android android 11 video player
    4
    0 Votes
    4 Posts
    880 Views
    SGaistS
    It has been clearly announced that the 6.0 release would not contain all modules.
  • how convert qcombox drop down listview to grid view

    Unsolved
    4
    0 Votes
    4 Posts
    421 Views
    JonBJ
    @swansorter The code shows you are using a QComboBox. Is there any other relevance we are supposed to see? What did you do about following @SGaist's advice?
  • How to change position of icon in the qcombox

    Unsolved
    1
    0 Votes
    1 Posts
    146 Views
    No one has replied
  • ListView scroll and flick speed

    Unsolved listview scroll speed flick speed android widgets
    1
    0 Votes
    1 Posts
    510 Views
    No one has replied