Fix macro R to pass to asynRecord.db (missing Property)
The aysnRecord.db has the following record
record(asyn,"$(P)$(R)")
{
field(DTYP,"asynRecordDevice")
field(PORT,"$(PORT)")
field(ADDR,"$(ADDR)")
field(OMAX,"$(OMAX)")
field(IMAX,"$(IMAX)")
}
So the macro $R should be passed in order to follow naming convention, otherwise the Property would be missing.
So the lo.iocsh file should be changed from
dbLoadRecords("$(asyn_DIR)/db/asynRecord.db","P=$(P), R=$(R), PORT=$(PORT), ADDR=0, OMAX=80, IMAX=80")
to
dbLoadRecords("$(asyn_DIR)/db/asynRecord.db","P=$(P), R=$(R)<SomeProperty>, PORT=$(PORT), ADDR=0, OMAX=80, IMAX=80")