From 9b2d79a5c8f1fe349ed1c1ff78ac9c87fb56ad57 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 23 Jul 2003 22:00:19 +0000 Subject: [PATCH] Added double support to variable keywords. --- documentation/RELEASE_NOTES.html | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/documentation/RELEASE_NOTES.html b/documentation/RELEASE_NOTES.html index 3dd73de02..1416b7b3e 100644 --- a/documentation/RELEASE_NOTES.html +++ b/documentation/RELEASE_NOTES.html @@ -55,12 +55,13 @@ of this.

Database definition (.dbd) files can now contain declarations of simple static variables, a facility intended for driver debugging purposes. These -variable(name) declarations are preserved by dbExpand, and will -be converted by registerRecordDeviceDriver.pl into code that registers them -with iocsh. The variables themselves must be defined in some existing C or -C++ code and marked using the macro epicsExportAddress(type, -name). The initial implementation only supports integers, but other -types will be added soon.

+variable(name) or variable(name,type) declarations +are preserved by dbExpand (type is int if omitted), +and will be converted by registerRecordDeviceDriver.pl into code that +registers them with iocsh. The variables themselves must be defined in some +existing C or C++ code and marked using the macro +epicsExportAddress(type,name). Only plain int and +double types are supported.

macEnvExpand