Author Topic: Priority tag/address  (Read 1073 times)

joko markono

  • Full Member
  • ***
  • Posts: 142
    • View Profile
Priority tag/address
« on: March 09, 2025, 01:23:07 AM »
Hi,

First of all, sorry if this topic has been discussed before.
Is there a way to prioritise the plc address that i want to read because i have about 100 addresses to read and display. Some of them need to have faster update. I'm using OmronSerialHostlink.
« Last Edit: March 09, 2025, 01:34:58 AM by joko markono »

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5356
    • View Profile
    • AdvancedHMI
Re: Priority tag/address
« Reply #1 on: March 09, 2025, 01:47:10 AM »
Add a second driver instance to the form, set the PollRateOverride to how fast you want it to update.
For the controls that display the faster data, set ComComponent property to the driver instance that with the faster PollRateOverride

joko markono

  • Full Member
  • ***
  • Posts: 142
    • View Profile
Re: Priority tag/address
« Reply #2 on: March 09, 2025, 11:12:06 PM »
Add a second driver instance to the form, set the PollRateOverride to how fast you want it to update.
For the controls that display the faster data, set ComComponent property to the driver instance that with the faster PollRateOverride

it works! Thanks Archie.
How many driver instance I can add for the same PLC unit and serial port?
« Last Edit: March 09, 2025, 11:45:40 PM by joko markono »

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5356
    • View Profile
    • AdvancedHMI
Re: Priority tag/address
« Reply #3 on: March 10, 2025, 06:08:50 AM »
There is no limit. They all route through one common data link layer so it does not create port sharing issues.

joko markono

  • Full Member
  • ***
  • Posts: 142
    • View Profile
Re: Priority tag/address
« Reply #4 on: March 10, 2025, 06:38:22 AM »
Will give a try.