mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
iec60870: fix vectorize
This commit is contained in:
parent
4d27c63157
commit
fb7ba7c52b
1 changed files with 3 additions and 1 deletions
|
@ -779,15 +779,17 @@ int SlaveNode::parse(json_t *json, const uuid_t sn_uuid)
|
|||
int SlaveNode::start()
|
||||
{
|
||||
startSlave();
|
||||
|
||||
return Node::start();
|
||||
}
|
||||
|
||||
int SlaveNode::stop()
|
||||
{
|
||||
stopSlave();
|
||||
|
||||
return Node::stop();
|
||||
}
|
||||
|
||||
static char name[] = "iec60870-5-104";
|
||||
static char description[] = "Provide values as protocol slave";
|
||||
static NodePlugin<SlaveNode, name, description, (int) NodeFactory::Flags::SUPPORTS_WRITE> p;
|
||||
static NodePlugin<SlaveNode, name, description, (int) NodeFactory::Flags::SUPPORTS_WRITE, 1> p;
|
||||
|
|
Loading…
Add table
Reference in a new issue