In some cases the license-identification header was missing, so I added that as well. Replaced the remaining headers that specifically identified "Versions 3.13.7 and higher". Makefiles and the build system were deliberately excluded.
57 lines
1.4 KiB
C
57 lines
1.4 KiB
C
/*************************************************************************\
|
|
* Copyright (c) 2012 UChicago Argonne LLC, as Operator of Argonne
|
|
* National Laboratory.
|
|
* SPDX-License-Identifier: EPICS
|
|
* EPICS BASE is distributed subject to a Software License Agreement found
|
|
* in file LICENSE that is included with this distribution.
|
|
\*************************************************************************/
|
|
|
|
/* Long String Input soft device support
|
|
*
|
|
* Author: Andrew Johnson
|
|
* Date: 2012-11-28
|
|
*/
|
|
|
|
#include "dbAccess.h"
|
|
#include "epicsTime.h"
|
|
#include "link.h"
|
|
#include "lsiRecord.h"
|
|
#include "epicsExport.h"
|
|
|
|
static long init_record(dbCommon *common)
|
|
{
|
|
lsiRecord *prec = (lsiRecord *)common;
|
|
dbLoadLinkLS(&prec->inp, prec->val, prec->sizv, &prec->len);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static long readLocked(struct link *pinp, void *dummy)
|
|
{
|
|
lsiRecord *prec = (lsiRecord *) pinp->precord;
|
|
long status = dbGetLinkLS(pinp, prec->val, prec->sizv, &prec->len);
|
|
|
|
if (status) return status;
|
|
|
|
if (dbLinkIsConstant(&prec->tsel) &&
|
|
prec->tse == epicsTimeEventDeviceTime)
|
|
dbGetTimeStamp(pinp, &prec->time);
|
|
|
|
return status;
|
|
}
|
|
|
|
static long read_string(lsiRecord *prec)
|
|
{
|
|
long status = dbLinkDoLocked(&prec->inp, readLocked, NULL);
|
|
|
|
if (status == S_db_noLSET)
|
|
status = readLocked(&prec->inp, NULL);
|
|
|
|
return status;
|
|
}
|
|
|
|
lsidset devLsiSoft = {
|
|
{ 5, NULL, NULL, init_record, NULL }, read_string
|
|
};
|
|
epicsExportAddress(dset, devLsiSoft);
|