mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-03 09:49:32 +02:00
14 lines
575 B
C
14 lines
575 B
C
// =================================================================================================
|
|
// eModbus: Copyright 2020 by Michael Harwerth, Bert Melis and the contributors to eModbus
|
|
// MIT license - see license.md for details
|
|
// =================================================================================================
|
|
#ifndef _MODBUS_BRIDGE_RTU_H
|
|
#define _MODBUS_BRIDGE_RTU_H
|
|
#include "options.h"
|
|
#include "ModbusServerRTU.h"
|
|
#include "ModbusBridgeTemp.h"
|
|
#include "RTUutils.h"
|
|
|
|
using ModbusBridgeRTU = ModbusBridge<ModbusServerRTU>;
|
|
|
|
#endif
|