- added command to change timeout of a scriptcontext controller

- created syncedprot
This commit is contained in:
zolliker
2012-08-21 06:44:29 +00:00
parent d70dffa00b
commit caf31b36cc
8 changed files with 99 additions and 50 deletions

View File

@ -23,7 +23,9 @@ struct DevSer {
DevAction *toKill; /* list of actions to be killed */
int steps;
AsconStatus status;
double startTime; /* fields for statistics */
/* fields for statistics: */
double startTime;
double comCount;
long nComCount;
int comMaxState;
@ -595,3 +597,7 @@ char *DevStatus(DevSer *devser) {
}
return str;
}
double DevGetSetTimeout(DevSer *devser, double timeout, int setmode) {
return AsconGetSetTimeout(devser->ascon, timeout, setmode);
}