Technical information
The RMS Enterprise SDK (v4)
19
RMS Enterprise - NetLinx Programmer’s Guide
DEFINE_MODULE 'RmsAnterusRFIDAdapter_dr4_0_0' mdlRMSAnterusAdapter(vdvRMSRfid,vdvAnterusGateway)
// Anterus RFID Duet Module
// This module enabled RFID management of AMX
// Anterus RDIF readers and tags.
DEFINE_MODULE 'AMX_Anterus_Comm_dr1_0_0' mdlAnterusDuetMod(vdvAnterusGateway,dvAnterusReader1)
// RMS RFID Reader Device Monitor
// (include a separate module instance for each physical RFID reader device)
DEFINE_MODULE 'RmsRfidReaderMonitor' mdlRmsRfidReaderMonitorMod_1(vdvRMS,dvAnterusReader1)
DEFINE_MODULE 'RmsRfidReaderMonitor' mdlRmsRfidReaderMonitorMod_2(vdvRMS,dvAnterusReader2)
DEFINE_MODULE 'RmsRfidReaderMonitor' mdlRmsRfidReaderMonitorMod_3(vdvRMS,dvAnterusReader3)
RMS Control System Monitor
In RMS Enterprise, the control system master should treated like any other managed and monitored asset in the system. There is a
special RmsControlSystemMonitor module that should be included in the user program to ensure the control system asset get
registered as an asset with the RMS system. Only one instance of this module should be defined on any given NetLinx system.
The diagram in FIG. 10 illustrates the file dependency chain for the RmsControlSystemMonitor integration:
The following code illustrates the inclusion of the RmsControlSystemMonitor module in the main NetLinx program.
//
// AMX Control System Master
//
// - include only one of these control system device monitoring modules.
// this is intended to serve as an extension point for creating
// system wide control methods and system level monitoring parameters.
//
DEFINE_MODULE 'RmsControlSystemMonitor' mdlRmsControlSystemMonitorMod(vdvRMS, dvMaster);
The AMX_Anterus_Comm_dr1_0_0.jar module file is not included in the RMS
Enterprise SDK. This file must be downloaded separately (a link to download this file
is provided on the ANT-RDR catalog page at www.amx.com (Products > Control
System Accessories > ANT-RDR).
FIG. 10 RMS SDK File Dependencies - Control System Monitor Implementation