2026-04-03 16:23:56 +08:00
|
|
|
#pragma once
|
2026-04-10 10:52:10 +08:00
|
|
|
// Modbus RTU 协议解析器插件
|
2026-04-03 16:23:56 +08:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
#include "core/plugin_system/IProtocolPlugin.h"
|
|
|
|
|
|
|
|
|
|
namespace softbus::core::plugin_system
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<IProtocolPlugin> makeModbusRtuProtocolPlugin();
|
2026-04-07 14:20:04 +08:00
|
|
|
IProtocolPlugin* createModbusRtuProtocolPluginRaw();
|
2026-04-03 16:23:56 +08:00
|
|
|
|
|
|
|
|
} // namespace softbus::core::plugin_system
|