We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://epics.anl.gov/tech-talk/2022/msg01741.php
...
record(mbbi, "$(P)FOO") { info(Q:group, { "$(N):Array":{ "attribute[0].value":{+type:"any", +channel:"VAL"}, "attribute[0].timeStamp":{+type:"meta", +channel:"TIME"}
The "meta" mapping attaches a sub-structure at the referenced position. So as specified, this creates "attribute[0].timeStamp.timeStamp" and friends.
What you intend should be possible with:
"attribute[0]":{+type:"meta", +channel:"TIME"}
However, at the moment this results in an error:
TST:image1:Array: Error Group not created: leaf field may not have sub-script : attribute[0]
The text was updated successfully, but these errors were encountered:
Maybe this error check is being done in the wrong place, during member parsing, where the mapping type is not available.
pva2pva/pdbApp/pdb.cpp
Line 748 in 5c75fd7
Sorry, something went wrong.
No branches or pull requests
https://epics.anl.gov/tech-talk/2022/msg01741.php
...
The "meta" mapping attaches a sub-structure at the referenced position.
So as specified, this creates "attribute[0].timeStamp.timeStamp" and friends.
What you intend should be possible with:
However, at the moment this results in an error:
The text was updated successfully, but these errors were encountered: