From 5012b3e358b50640513624b4f1543144e17454bb Mon Sep 17 00:00:00 2001 From: Michael Zillgith Date: Fri, 8 Sep 2023 23:18:41 +0100 Subject: [PATCH] - added GOOSE publisher API documentation to doxygen file --- src/Doxyfile.in | 1 + src/goose/goose_publisher.h | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/src/Doxyfile.in b/src/Doxyfile.in index 54897bf3c..9cc51885b 100644 --- a/src/Doxyfile.in +++ b/src/Doxyfile.in @@ -792,6 +792,7 @@ INPUT = "iec61850/inc/iec61850_client.h" \ "iec61850/inc/iec61850_cdc.h" \ "goose/goose_subscriber.h" \ "goose/goose_receiver.h" \ + "goose/goose_publisher.h" \ "sampled_values/sv_subscriber.h" \ "sampled_values/sv_publisher.h" \ "mms/inc/mms_types.h" \ diff --git a/src/goose/goose_publisher.h b/src/goose/goose_publisher.h index 77eb2766d..0722d0c2b 100644 --- a/src/goose/goose_publisher.h +++ b/src/goose/goose_publisher.h @@ -32,6 +32,11 @@ extern "C" { #endif +/** + * \defgroup goosepub_api_group IEC 61850 GOOSE publisher API + */ +/**@{*/ + #ifndef GOOSE_SV_COMM_PARAMETERS #define GOOSE_SV_COMM_PARAMETERS @@ -210,4 +215,6 @@ GoosePublisher_reset(GoosePublisher self); } #endif +/**@}*/ + #endif /* GOOSE_PUBLISHER_H_ */