From 6cfaf03edd7c514c39b2620ae97763313169f14a Mon Sep 17 00:00:00 2001 From: Nate Bargmann Date: Thu, 17 Jul 2025 13:21:39 -0500 Subject: [PATCH] Add amp_state.h to Doxygen docs --- doc/Makefile.am | 1 + include/hamlib/amp_state.h | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/doc/Makefile.am b/doc/Makefile.am index 85a956fa7..257b1112b 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -8,6 +8,7 @@ dist_man_MANS = man1/ampctl.1 man1/ampctld.1 \ SRCDOCLST = \ ../include/hamlib/amplifier.h \ ../include/hamlib/amplist.h \ + ../include/hamlib/amp_state.h \ ../include/hamlib/rig.h \ ../include/hamlib/rotator.h \ ../include/hamlib/rotlist.h \ diff --git a/include/hamlib/amp_state.h b/include/hamlib/amp_state.h index c9b5253d1..03ff8902c 100644 --- a/include/hamlib/amp_state.h +++ b/include/hamlib/amp_state.h @@ -24,6 +24,21 @@ #ifndef _AMP_STATE_H #define _AMP_STATE_H 1 +/** + * \addtogroup amplifier + * @{ + */ + + +/** + * \brief Hamlib amplifier state structure. + * + * \file amp_state.h + * + * This file contains the live data state structure of the amplifier. + */ + + __BEGIN_DECLS /** * \brief Amplifier state structure. @@ -69,3 +84,5 @@ struct amp_state __END_DECLS #endif /* _AMP_STATE_H */ + +/** @} */