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

v1.6
Michael Zillgith 9 months ago
commit cb6af6fa84

@ -164,10 +164,10 @@
#define CONFIG_IEC61850_R_SMV 0 #define CONFIG_IEC61850_R_SMV 0
/* compile with support for L2 GOOSE */ /* compile with support for L2 GOOSE */
#define CONFIG_IEC61850_L2_GOOSE 0 #define CONFIG_IEC61850_L2_GOOSE 1
/* compile with support for L2 SMV */ /* compile with support for L2 SMV */
#define CONFIG_IEC61850_L2_SMV 0 #define CONFIG_IEC61850_L2_SMV 1
/* compile SNTP client code */ /* compile SNTP client code */
#define CONFIG_IEC61850_SNTP_CLIENT 0 #define CONFIG_IEC61850_SNTP_CLIENT 0

@ -408,9 +408,9 @@ namespace IEC61850.Server
/// <note>Can be used to implement some of Services\ReportSettings options</note> /// <note>Can be used to implement some of Services\ReportSettings options</note>
/// <param name="settings">the settings that should be configured writeable or read-only</param> /// <param name="settings">the settings that should be configured writeable or read-only</param>
/// <param name="isDyn">true, settings are writeable, false, settings are read-only</param> /// <param name="isDyn">true, settings are writeable, false, settings are read-only</param>
public void SetReportSetting(ReportSettings settings) public void SetReportSetting(ReportSettings settings, bool isDyn = true)
{ {
IedServerConfig_setReportSetting(self, (byte)settings, true); IedServerConfig_setReportSetting(self, (byte)settings, isDyn);
} }
/// <summary> /// <summary>

@ -10,3 +10,4 @@ INCLUDES += -I$(LIBIEC_HOME)/src/goose
INCLUDES += -I$(LIBIEC_HOME)/src/sampled_values INCLUDES += -I$(LIBIEC_HOME)/src/sampled_values
INCLUDES += -I$(LIBIEC_HOME)/src/logging INCLUDES += -I$(LIBIEC_HOME)/src/logging
INCLUDES += -I$(LIBIEC_HOME)/src/tls INCLUDES += -I$(LIBIEC_HOME)/src/tls
INCLUDES += -I$(LIBIEC_HOME)/src/r_session

Loading…
Cancel
Save