- renamed iec61850_client_example3 to iec61850_client_example_control

- removed outcommented code
pull/71/head
Michael Zillgith 7 years ago
parent b5cb80868c
commit c36050f455

@ -15,7 +15,7 @@ add_subdirectory(server_example_substitution)
add_subdirectory(iec61850_client_example1)
add_subdirectory(iec61850_client_example2)
add_subdirectory(iec61850_client_example3)
add_subdirectory(iec61850_client_example_control)
add_subdirectory(iec61850_client_example4)
add_subdirectory(iec61850_client_example5)
add_subdirectory(iec61850_client_example_reporting)

@ -1,17 +0,0 @@
set(iec61850_client_example3_SRCS
client_example3.c
)
IF(WIN32)
set_source_files_properties(${iec61850_client_example3_SRCS}
PROPERTIES LANGUAGE CXX)
ENDIF(WIN32)
add_executable(iec61850_client_example3
${iec61850_client_example3_SRCS}
)
target_link_libraries(iec61850_client_example3
iec61850
)

@ -0,0 +1,17 @@
set(iec61850_client_example_control_SRCS
client_example_control.c
)
IF(WIN32)
set_source_files_properties(${iec61850_client_example_control_SRCS}
PROPERTIES LANGUAGE CXX)
ENDIF(WIN32)
add_executable(client_example_control
${iec61850_client_example_control_SRCS}
)
target_link_libraries(client_example_control
iec61850
)

@ -1,7 +1,7 @@
LIBIEC_HOME=../..
PROJECT_BINARY_NAME = client_example3
PROJECT_SOURCES = client_example3.c
PROJECT_BINARY_NAME = client_example_control
PROJECT_SOURCES = client_example_control.c
include $(LIBIEC_HOME)/make/target_system.mk
include $(LIBIEC_HOME)/make/stack_includes.mk

@ -1494,12 +1494,6 @@ Control_writeAccessControlObject(MmsMapping* self, MmsDomain* domain, char* vari
setState(controlObject, STATE_WAIT_FOR_EXECUTION);
initiateControlTask(controlObject);
#if (CONFIG_MMS_THREADLESS_STACK == 1)
//TODO call this in single threaded version to increase response time!?
//executeControlTask(controlObject);
#endif
}
else {
indication = (MmsDataAccessError) checkResult;

Loading…
Cancel
Save