modbustcp.cpp
492 Bytes
/*
* Copyright (c) 2022 Peter M. Groen
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "modbustcp.h"
using namespace osdev::components::modbus;
ModbusTcp::ModbusTcp(const ConnectionConfig &con_config)
{
}
bool ModbusTcp::Open() const
{
}
bool ModbusTcp::Close() const
{
}
int ModbusTcp::Read(uint8_t *buffer) const
{
}
int ModbusTcp::Write(uint8_t *buffer, size_t length) const
{
}