Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QSerialPort flush
Qt 6.11 is out! See what's new in the release blog

QSerialPort flush

Scheduled Pinned Locked Moved General and Desktop
1 Posts 1 Posters 1.0k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • ? Offline
    ? Offline
    A Former User
    wrote on last edited by
    #1

    Hello, I see the flush method of QSerialPort takes a long time (about 1 ms) before executing the next instruction. Perhaps it pools the event loop. Is there a way to avoid this? I mean to execute the following instructions atomically:

    @
    port->putChar(ch1);
    port->flush();
    port->setBaudRate(newbaud);
    port->putChar(ch2);
    @

    This is because I need to change the baudrate on-the-fly. Without the flush() instruction both char are written with the same baudrate (i.e. newbaud is ignored).
    Adding the flush() function leads to the correct baudrate of the second chat, but it's delayed of 1 ms.

    Thanks
    Mark

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved