Skip to content
  • RTU Serial port isn't opening

    Unsolved General and Desktop qserialport rtu client
    5
    0 Votes
    5 Posts
    729 Views
    J.HilkJ
    @Tague-Carlyon the event loop of QCoreApplications needs to be running, otherwise this won't work at all.
  • modbus slow write

    Solved QML and Qt Quick modbus rtu client delay
    2
    0 Votes
    2 Posts
    735 Views
    I
    @imhs I figured it out! The problem was in the read function function where I call it every time toggling the run switch. Inside that function there is a timer which aims to read the registers and update the UI. Every time I call that function a new timer was generated. Therefore after sometime many timers was running in parallel which caused the problem. Take care about timers!