Merge branch 'v1.6_develop' of bitbucket.com:mz-automation/libiec61850 into v1.6_develop

pull/535/head
Michael Zillgith 11 months ago
commit 59b0609a78

@ -89,8 +89,6 @@ CFLAGS += -D'CONFIG_IEC61850_R_GOOSE=1'
CFLAGS += -D'CONFIG_IEC61850_R_SMV=1'
endif
LIB_INCLUDE_DIRS += src/logging/drivers/sqlite/log_storage_sqlite.c
LIB_INCLUDES = $(addprefix -I,$(LIB_INCLUDE_DIRS))
ifndef INSTALL_PREFIX

@ -5,7 +5,7 @@
*/
#include "iec61850_client.h"
#include "hal_thread.h"
#include <stdlib.h>
#include <stdio.h>
@ -64,6 +64,7 @@ int main(int argc, char **argv)
goto control_error;
if (!ControlObjectClient_operate(controlLED1, ctlValOn, 0))
goto control_error;
Thread_sleep(1000);
if (!ControlObjectClient_operate(controlLED1, ctlValOff, 0))
@ -81,6 +82,7 @@ int main(int argc, char **argv)
if (!ControlObjectClient_operate(controlLED3, ctlValOn, 0))
goto control_error;
Thread_sleep(1000);
if (led4State == false)

Loading…
Cancel
Save