devicesbus read data

This commit is contained in:
flower_linux
2026-03-26 17:22:52 +08:00
parent bc07fa0e6e
commit 35fb913957
43 changed files with 1285 additions and 170 deletions

View File

@@ -1,3 +1,3 @@
# Placeholder for can_raw plugin
add_library(can_raw SHARED)
# Placeholder for can_raw plugin
add_library(can_raw SHARED plugin_stub.cpp)
set_target_properties(can_raw PROPERTIES OUTPUT_NAME "can_raw")

View File

@@ -0,0 +1 @@
extern "C" void softbus_can_raw_plugin_stub() {}

View File

@@ -1,3 +1,3 @@
# Placeholder for custom_proto plugin
add_library(custom_proto SHARED)
# Placeholder for custom_proto plugin
add_library(custom_proto SHARED plugin_stub.cpp)
set_target_properties(custom_proto PROPERTIES OUTPUT_NAME "custom_proto")

View File

@@ -0,0 +1 @@
extern "C" void softbus_custom_proto_plugin_stub() {}

View File

@@ -1,3 +1,3 @@
# Placeholder for modbus_rtu plugin
add_library(modbus_rtu SHARED)
# Placeholder for modbus_rtu plugin
add_library(modbus_rtu SHARED plugin_stub.cpp)
set_target_properties(modbus_rtu PROPERTIES OUTPUT_NAME "modbus_rtu")

View File

@@ -0,0 +1 @@
extern "C" void softbus_modbus_rtu_plugin_stub() {}