From daa0a1e95867b554b43b942baf1591b8749d5f49 Mon Sep 17 00:00:00 2001 From: Michael Zillgith Date: Mon, 14 Dec 2015 20:05:17 +0100 Subject: [PATCH] - GoCB DatSet and GoID are now readonly by stack_config.h --- config/stack_config.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/config/stack_config.h b/config/stack_config.h index b5ece377..405a5a1a 100644 --- a/config/stack_config.h +++ b/config/stack_config.h @@ -102,9 +102,14 @@ /* The number of GOOSE retransmissions after an event */ #define CONFIG_GOOSE_EVENT_RETRANSMISSION_COUNT 2 -/* Define if GOOSE control block elements are writable (1) or read-only (0) */ -#define CONFIG_GOOSE_GOID_WRITABLE 1 -#define CONFIG_GOOSE_DATSET_WRITABLE 1 +/* Define if GOOSE control block elements are writable (1) or read-only (0) + * + * WARNING: To be compliant with the IEC 61850-8-1 standard all GoCB elements + * but GoEna have to be read-only! + * + * */ +#define CONFIG_GOOSE_GOID_WRITABLE 0 +#define CONFIG_GOOSE_DATSET_WRITABLE 0 #define CONFIG_GOOSE_CONFREV_WRITABLE 0 #define CONFIG_GOOSE_NDSCOM_WRITABLE 0 #define CONFIG_GOOSE_DSTADDRESS_WRITABLE 0