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  <20172018  2019  2020  2021  2022  2023  2024  Index 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  <20172018  2019  2020  2021  2022  2023  2024 
<== Date ==> <== Thread ==>

Subject: RE: Asyn and devices with changing register map
From: Mark Rivers <[email protected]>
To: "'Konrad, Martin'" <[email protected]>, EPICS Tech Talk <[email protected]>
Date: Fri, 6 Jan 2017 22:58:18 +0000
One way to do this would be to use the asyn "addr" parameter

In this implementation you might only have a few parameters:

INT8_REGISTER
INT16_REGISTER
INT32_REGISTER
FLOAT32_REGISTER
FLOAT64_REGISTER

The $(ADDR) macro in the link can specify the register address as in the following example records.

# Register address 6, int8
record(longout, "$(P)$(R)Gain")
{
   field(DTYP, "asynInt32")
   field(OUT,  "@asyn($(PORT),6,$(TIMEOUT))INT8_REGISTER")
}

# Register address 10, int32
record(longout, "$(P)$(R)Offset")
{
   field(DTYP, "asynInt32")
   field(OUT,  "@asyn($(PORT),10,$(TIMEOUT))INT32_REGISTER")
}

# Register address 22, float64
record(longout, "$(P)$(R)Frequency")
{
   field(DTYP, "asynFloat64")
   field(OUT,  "@asyn($(PORT),22,$(TIMEOUT))FLOAT64_REGISTER")
}

You would set the flag ASYN_MULTIDEVICE and specify the maximum register address in the call to the asynPortDriver constructor.

It's not super-efficient in terms of memory, because you will have 5 parameters for each address, and only 1 being used.  But we are probably only talking a few kilobytes at most.

Mark

-----Original Message-----
From: Konrad, Martin [mailto:[email protected]] 
Sent: Friday, January 06, 2017 4:31 PM
To: EPICS Tech Talk; Mark Rivers
Subject: Asyn and devices with changing register map

Hi Mark,
I am intending to implement a driver for an FPGA-based device based on
asynPortDriver. I am wondering how to deal with devices which are under
heavy development resulting in frequent changes to their register map.
In this context I am looking for a simple and clean way to tie records
to a certain address.

In a world without Asyn I would implement a driver that simply reads the
address and the type of a register from the INP/OUT fields of my
records. This could be changed easily (even by an FPGA engineer) without
recompiling the driver and all configuration data is in the record
definition. Note that I'm fine with this slightly harder to read data in
the INP/OUT field. Usually the record's name, the description field, and
if necessary additional comments provide sufficient information about
what the address stands for.

Using Asyn it seems like I need to populate Asyn's paramList which in
the case of most drivers seems to be a hard-coded mapping between names
and addresses. Are there any drivers that populate this dynamically on
IOC start from a configuration file or even from the EPICS database file?

Thanks a lot,

Martin

-- 
Martin Konrad
Control System Engineer
Facility for Rare Isotope Beams
Michigan State University
640 South Shaw Lane
East Lansing, MI 48824-1321, USA
Tel. 517-908-7253
Email: [email protected]


Replies:
RE: Asyn and devices with changing register map Mooney, Tim M.
References:
Asyn and devices with changing register map Konrad, Martin

Navigate by Date:
Prev: RE: Asyn: example driver for slow device? Mark Rivers
Next: The limit of height property of Grouping Container of CSS widget 吴煊
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  <20172018  2019  2020  2021  2022  2023  2024 
Navigate by Thread:
Prev: RE: Asyn and devices with changing register map tom.cobb
Next: RE: Asyn and devices with changing register map Mooney, Tim M.
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  <20172018  2019  2020  2021  2022  2023  2024 
ANJ, 21 Dec 2017 Valid HTML 4.01! · Home · News · About · Base · Modules · Extensions · Distributions · Download ·
· Search · EPICS V4 · IRMIS · Talk · Bugs · Documents · Links · Licensing ·