From 0681639dd30a78e173955cff4fcb66efdfbf5c97 Mon Sep 17 00:00:00 2001 From: zolliker Date: Tue, 12 Sep 2006 15:42:30 +0000 Subject: [PATCH] . --- tecs/tecs.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tecs/tecs.c b/tecs/tecs.c index 05a24bc..4ef3501 100644 --- a/tecs/tecs.c +++ b/tecs/tecs.c @@ -3147,6 +3147,8 @@ int LocalHdl(int mode, void *base, int fd) { } else if (mode==COC_WR) { remoteMode = 1 + (local == 0); return RemoteHdl(mode, base, fd); + } else if (mode==COC_DWR) { + return RemoteHdl(mode, base, fd); } return 0; } @@ -3289,6 +3291,7 @@ int main(int argc, char *argv[]) { CocStrFld(SensorT, type, RD); CocDefStr(maxPower, RW); CocHdl(MaxPowerHdl); + CocDefFlt(maxPowerFlt, RD); CocDefFlt(slope, RW); CocHdl(MaxPowerHdl); CocDefFlt(prop, RW); CocHdl(PidHdl); CocDefFlt(integ, RW); CocHdl(PidHdl);