diff --git a/CHANGELOG b/CHANGELOG index 7102c3e2..35d35461 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,9 @@ New features and improvements: - added function to get timestamp of received command (ControlAction_getT) (LIB61850-422) - added function IedClientError_toString - Java tools: Support for time stamp Val elements +- IedServer: added configuration options to IedServerConfig to make RCB elements read-only (LIB61850-404) +- .NET API: Added functions SetReportSetting and GetReportSetting to IedServerConfig (LIB61850-404) +- TLS: TLS version 1.3 can be supported when mbedtls 3.6 is used when compiling the library (using mbedtls 2.28 is still possible) - BETA: Support for R-GOOSE and R-SV - BETA: SNTP client code diff --git a/src/iec61850/inc/iec61850_server.h b/src/iec61850/inc/iec61850_server.h index 6dc69524..a02173cb 100644 --- a/src/iec61850/inc/iec61850_server.h +++ b/src/iec61850/inc/iec61850_server.h @@ -414,7 +414,7 @@ IedServerConfig_setReportSetting(IedServerConfig self, uint8_t setting, bool isD * * \param[in] setting one of IEC61850_REPORTSETTINGS_RPT_ID, _BUF_TIME, _DATSET, _TRG_OPS, _OPT_FIELDS, _INTG_PD * - * \return isDyn true, when setting is writable ("Dyn") or false, when read-only + * \return true, when setting is writable ("Dyn") or false, when read-only */ LIB61850_API bool IedServerConfig_getReportSetting(IedServerConfig self, uint8_t setting);