EPICS Controls Argonne National Laboratory

Experimental Physics and
Industrial Control System

1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  2019  2020  2021  2022  <20232024  Index 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  2019  2020  2021  2022  <20232024 
<== Date ==> <== Thread ==>

Subject: RE: Issues with epics module and ISEG HAL service libraries
From: Yann Mandza via Tech-talk <tech-talk at aps.anl.gov>
To: "tech-talk at aps.anl.gov" <tech-talk at aps.anl.gov>
Cc: Jens Römer <j.roemer at iseg-hv.de>
Date: Mon, 29 May 2023 08:39:41 +0000

Hey Florian, thanks for your quick feedback,

“as for the AO record: The initialization failes, because the "Quality" of the iseg items returns 000 (=ISEG_ITEM_QUALITY_INVALID)
Maybe the module you are using does not support setting the RampSpeed and thus the isegHal return INVALID qualtiy for it.
That would explain, why it is the only record producing this error.“

I believe the issues is with my hardware config, but I only show the output of one AO record, many of those AO shows this error, I will first get the config right and see if this  “INVALID quality” is clear and the initialization works.

When it comes to Qt, I only tied to follow the source of the problem. There is an issue of epics thread (reading/writing) to the socket as once since that socket is creating as shared resource statically should it not be protected?

I was asking if the device support could handle this? Is there a way to know which epics thread make the call to the driver methods? At init all records call the devIsegHalInitRecord method which call the driver method iseg_getItem which internally make read and write call to the socket.

Does the DB record initialization process handle each record in its own thread? Who can help me understand this init process?

Perhaps having a thread that solely access the socket working as a server for those epics thread would make it safe?

Regards,

Yann

 

 

From: Florian Feldbauer <florian at ep1.ruhr-uni-bochum.de>
Sent: Monday, May 29, 2023 10:11 AM
To: Yann Mandza <yann.mandza at ess.eu>; tech-talk at aps.anl.gov
Cc: software.entwicklung at iseg-hv.de
Subject: Re: Issues with epics module and ISEG HAL service libraries

 

Hey Yann,

as for the AO record: The initialization failes, because the "Quality" of the iseg items returns 000 (=ISEG_ITEM_QUALITY_INVALID)
Maybe the module you are using does not support setting the RampSpeed and thus the isegHal return INVALID qualtiy for it.
That would explain, why it is the only record producing this error.

As for the output recrods being monitored via the polling thread:
The isegHAL offers multiple interfaces to the outside world, like the EPICS interface (devIsegHal), the browser-based frontend from ISEG,
and some others. So Voltages/Currents and all other configurations can be changed outside of EPICS and we wanted to have a way,
that our EPICS records stay "synced" with the settings of the module.

It can be quite confusing, when the measured voltage is 0 although the set voltage is 1.2kV and the setOn bit is set in EPICS (but not in the module).
Or why the set voltage shows 1.2kV but the HV only goes up to 1.0kV (because someone set Vset to 1.0kV via another interface).

Unfortunately I cannot answer your question about Qt.
Personally I do not use Qt in any of my own projects and we usually use the IOCs running on the crate controllers for our isegHV modules.
With them we never had this issue.

Best regards,
Florian

 

Am 28.05.2023 um 23:13 schrieb Yann Mandza via Tech-talk:

Hello all,

I have a ICSMINI 2 box from iseg am trying to interface to via the HAL services utilities using HAL service libraries from iseg, I was able to recompiled for my system.

So far I tried to connect to the box using the provided example and it worked.

However I tried the epics module from florian  https://github.com/ffeldbauer/devIsegHal, so i could disable the embedded IOC and run mine outside.

I was able to compiled the module and get the IOC connected to the box. However I’m having two main issues.

 

1 -  error at record initialization for AO record

ISEG:7200081:0:32:VoltageRampSpeed: Error while reading item property '0.32.VoltageRampSpeed' (Q: 000)

recGblRecordError: ao: init_record Error (514,11) PV: ISEG:7200081:0:32:VoltageRampSpeed ( is this a result from the above? Then sorting out the above should clear this error)

it’s strange because only AO return this error.

 

I read on the deviseghal GitHub page that AO record were added to the polling thread that also handle I/O interrupt.

I wonder why that would be? 

 

This excerpt is from the page

“It is possible that control parameters change during operation. For example, if a trip occurs the corresponding setON bit in the channel control register will be set to 0.

These changes are monitored by devIsegHal through a polling thread. Each output record (except for stringout records) is automatically registered to this thread and their values are checked for updates on the isegHAL.

If a value has changed the VAL field and timestamp of the record will be set to the new values”

I’m a bit confused why output record would need that.

 

2- Qt Socket Library return this warning “QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread", it seems the IOC starts several threads to read/write information to the iseg system.

One can trace this issues till the writeReadSynchronous method within the isegHal-service library. I used QT5 to compile the library.

Can the device support protect against this or should iseg update their code to handle multi thread access to the socket?

 

Regards,

 

Yann

 


Replies:
Re: Issues with epics module and ISEG HAL service libraries Florian Feldbauer via Tech-talk
References:
Issues with epics module and ISEG HAL service libraries Yann Mandza via Tech-talk
Re: Issues with epics module and ISEG HAL service libraries Florian Feldbauer via Tech-talk

Navigate by Date:
Prev: Re: Issues with epics module and ISEG HAL service libraries Florian Feldbauer via Tech-talk
Next: Re: Issues with epics module and ISEG HAL service libraries Florian Feldbauer via Tech-talk
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  2019  2020  2021  2022  <20232024 
Navigate by Thread:
Prev: Re: Issues with epics module and ISEG HAL service libraries Florian Feldbauer via Tech-talk
Next: Re: Issues with epics module and ISEG HAL service libraries Florian Feldbauer via Tech-talk
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  2019  2020  2021  2022  <20232024 
ANJ, 29 May 2023 Valid HTML 4.01! · Home · News · About · Base · Modules · Extensions · Distributions · Download ·
· Search · EPICS V4 · IRMIS · Talk · Bugs · Documents · Links · Licensing ·