Subject: |
PV names |
From: |
[email protected] (Deb Kerstiens) |
Date: |
Fri, 27 May 94 15:44:52 MDT |
Bill writes :
<What characters are allowable in PV names? If there is a document that
<spells out the restrictions, could some kind soul pas me a pointer?
and the failing example is
BL09.0%PLC%BM00%EPS
The character "." is a special one in EPICS because it is used to
separate the record name and field name.
When dbFindRecord is called it does:
while (*precordName && (*precordName != '.') && (lenName < PVNAME_SZ)){
*pconvName++ = *precordName++;
lenName++;
}
i.e. it's looking for the "." as the end of the record name, so that pretty much
makes "." a character to avoid in pv names. ":" and "_" work in names--could you
possibly substitute one of those. It doesn't look like anything else is illegal,
but I wouldn't put money on it just yet. And don't forget the limitation on length.
Deb
- Navigate by Date:
- Prev:
Re: Reflections on a Reflective Memory Device Interface Bill Brown
- Next:
Re: PV names Bill Brown
- 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
2023
2024
2025
- Navigate by Thread:
- Prev:
PV names Bill Brown
- Next:
Re: PV names Bill Brown
- 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
2023
2024
2025
|