Index: firmware/App/Services/NVDataMgmt.h =================================================================== diff -u -r84f337383202622f14cd6148e26bab8f68333847 -rc74c1d99a011dd0fb7f98f183faecda675221fce --- firmware/App/Services/NVDataMgmt.h (.../NVDataMgmt.h) (revision 84f337383202622f14cd6148e26bab8f68333847) +++ firmware/App/Services/NVDataMgmt.h (.../NVDataMgmt.h) (revision c74c1d99a011dd0fb7f98f183faecda675221fce) @@ -1,15 +1,22 @@ -/* - * NVDataMgmt.h - * - * Created on: Aug 7, 2024 - * Author: fw - */ #ifndef __NVDATAMGMT_H__ #define __NVDATAMGMT_H__ #include "BLCommon.h" +/** + * @defgroup NVDataMgmt NVDataMgmt + * @brief Non-volatile data management module. Handles Bank 7 of the TI processor and the + * RAM of the RTC chip. + * + * @addtogroup NVDataMgmt + * @{ + */ + +// ********** public definitions ********** + +// ********** public function prototypes ********** + void initNVDataMgmt( void ); void clearSWUpdateNVStatus( void ); @@ -18,4 +25,6 @@ BOOL isFWCRCTableValid( void ); +/**@}*/ + #endif