- Added SicsList
- Removed group and description attributes from ObjectDescriptor SKIPPED: psi/dornier2.c psi/libpsi.a psi/make_gen psi/makefile_linux psi/pimotor.c psi/pipiezo.c psi/psi.c psi/serial.c psi/sinqhttp.c psi/sinqhttp.h psi/tcpdornier.c psi/velodornier.c
This commit is contained in:
@ -14,6 +14,7 @@
|
||||
#include <splitter.h>
|
||||
#include <outcode.c>
|
||||
#include <dynstring.h>
|
||||
#include "commandlog.h"
|
||||
#include "protocol.h"
|
||||
|
||||
#define MAXMSG 1024
|
||||
@ -342,7 +343,7 @@ int ProtocolAction(SConnection *pCon, SicsInterp *pSics, void *pData,
|
||||
{"options",0,{0,0}},
|
||||
{"set",1,{FUPATEXT}},
|
||||
{"reset",0,{0,0}},
|
||||
NULL
|
||||
{NULL}
|
||||
};
|
||||
|
||||
assert(pCon);
|
||||
@ -475,9 +476,9 @@ int SCWriteSycamore(SConnection *pCon, char *pBuffer, int iOut)
|
||||
pMsg = CreateDynString(INIT_STR_SIZE, STR_RESIZE_LENGTH);
|
||||
pBueffel[0] = '\0';
|
||||
|
||||
sprintf(pBueffel,"con%4.4d",pCon->ident); /* field 1: connID */
|
||||
sprintf(pBueffel,"con%4.4d",(int)pCon->ident); /* field 1: connID */
|
||||
DynStringConcat(pMsg,pBueffel);
|
||||
sprintf(pBueffel," t%6.6d",taskID); /* field 2: taskID */
|
||||
sprintf(pBueffel," t%6.6d",(int)taskID); /* field 2: taskID */
|
||||
DynStringConcat(pMsg,pBueffel);
|
||||
DynStringConcatChar(pMsg,' ');
|
||||
/* deviceID */
|
||||
|
Reference in New Issue
Block a user