Add protocol support for the Knauer HPLC pump

This commit is contained in:
Douglas Clowes
2014-08-20 13:35:13 +10:00
parent 5fa021ce88
commit f1f9ee2c01
6 changed files with 173 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
#include "loader_asyncprotocol.h"
#include "huber_asyncprotocol.h"
#include "knauer_asyncprotocol.h"
#include "omron_asyncprotocol.h"
#include "sics.h"
void LOADERInitProtocol(SicsInterp *pSics)
{
HUBERInitProtocol(pSics);
KNAUERInitProtocol(pSics);
OMRONInitProtocol(pSics);
}