Merge branch 'mz-automation:v1.6' into v1.6

pull/522/head
soyoo 3 months ago committed by GitHub
commit 27fc627487
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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