From ebf297eac8f34e2fbf7273ed651f47dfbe280483 Mon Sep 17 00:00:00 2001 From: Ferdi Franceschini Date: Mon, 30 Jan 2012 11:11:42 +1100 Subject: [PATCH] Load modbus protocol handler into SICS. r3360 | ffr | 2012-01-30 11:11:42 +1100 (Mon, 30 Jan 2012) | 2 lines --- site_ansto/site_ansto.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/site_ansto/site_ansto.c b/site_ansto/site_ansto.c index 1c2e3c39..3f0b7495 100644 --- a/site_ansto/site_ansto.c +++ b/site_ansto/site_ansto.c @@ -65,6 +65,7 @@ extern void AddUSBTMCProtocoll(); extern void AddHttpProtocoll(); extern void AddProtek608Protocol(); extern void AddRFAmpProtocol(); +extern void AddTCPMBProtocol (); extern int ANSTO_MakeHistMemory(SConnection *pCon, SicsInterp *pSics, void *pData, int argc, char *argv[]); @@ -85,6 +86,7 @@ void SiteInit(void) { AddHttpProtocoll(); AddProtek608Protocol(); AddRFAmpProtocol(); + AddTCPMBProtocol(); } static pSite /*@null@*/ siteANSTO = NULL;