15 lines
349 B
C
15 lines
349 B
C
#include "loader_asyncprotocol.h"
|
|
#include "huber_asyncprotocol.h"
|
|
#include "knauer_asyncprotocol.h"
|
|
#include "modbus_asyncprotocol.h"
|
|
#include "omron_asyncprotocol.h"
|
|
#include "sics.h"
|
|
|
|
void LOADERInitProtocol(SicsInterp *pSics)
|
|
{
|
|
HUBERInitProtocol(pSics);
|
|
KNAUERInitProtocol(pSics);
|
|
MODBUSInitProtocol(pSics);
|
|
OMRONInitProtocol(pSics);
|
|
}
|