- Record updates:

. histogramRecord
  . eventRecord
  . aaiRecord
  . aaoRecord

- Device support updates:
  . devHistogramSoft (histogramRecord)
  . devEventSoft (eventRecord)
  . devAaiSoft (aaiRecord)
  . devAaoSoft (aaoRecord)

- Fixes in already-migrated records
  . lsiRecord: replaced 'struct lsidset' with typedef(ed) 'lsidset'
  . int64inRecord (similar as above)
  . int64outRecord (similar as above)
  . calcRecord: minor fix in init_record() prototype declaration

- Note: the comments about return values in dset structs were outright copied from .c to .pod/.dbd files without confirmation if they are indeed correct!
This commit is contained in:
gabadinho
2020-02-14 11:07:11 +01:00
parent 754eb73334
commit c54237e34a
18 changed files with 113 additions and 142 deletions
+4
View File
@@ -13,7 +13,9 @@ SRC_DIRS += $(STDDIR)/dev
DBD += devSoft.dbd
devAaiSoft_CFLAGS += -DUSE_TYPED_DSET
dbRecStd_SRCS += devAaiSoft.c
devAaoSoft_CFLAGS += -DUSE_TYPED_DSET
dbRecStd_SRCS += devAaoSoft.c
devAiSoft_CFLAGS += -DUSE_TYPED_DSET
dbRecStd_SRCS += devAiSoft.c
@@ -35,7 +37,9 @@ dbRecStd_SRCS += devBoSoftRaw.c
dbRecStd_SRCS += devBoDbState.c
devCalcoutSoft_CFLAGS += -DUSE_TYPED_DSET
dbRecStd_SRCS += devCalcoutSoft.c
devEventSoft_CFLAGS += -DUSE_TYPED_DSET
dbRecStd_SRCS += devEventSoft.c
devHistogramSoft_CFLAGS += -DUSE_TYPED_DSET
dbRecStd_SRCS += devHistogramSoft.c
devI64inSoft_CFLAGS += -DUSE_TYPED_DSET
dbRecStd_SRCS += devI64inSoft.c