Index: firmware/App/Drivers/NVDriver.c =================================================================== diff -u -r45b03b9f23005c05fc75f69416595a155e250cbe -r43e60a63eae841e599ff9106f43177a8f63d22be --- firmware/App/Drivers/NVDriver.c (.../NVDriver.c) (revision 45b03b9f23005c05fc75f69416595a155e250cbe) +++ firmware/App/Drivers/NVDriver.c (.../NVDriver.c) (revision 43e60a63eae841e599ff9106f43177a8f63d22be) @@ -11,11 +11,19 @@ * @date (original) 31-Mar-2026 * ***************************************************************************/ -#include "system.h" // For fapi operations + #include "F021.h" // For fapi operations #include "FapiFunctions.h" #include "NVDriver.h" +#include "system.h" // For fapi operations +/** + * @addtogroup NVDriver + * @{ + */ + +// ********** private definitions ********** + // The clock frequency comes from HCLK_FREQ and it has to be rounded up to the nearest number #define ROUNDED_HCLK_FREQ FLOAT_TO_INT_WITH_ROUND(HCLK_FREQ) ///< Rounded HCLK for EERPOM clock. #define BANK7_SECTOR_0_31_ENABLE_BIT_MASK 0x0000000F ///< Bank7 sector 0 t0 31 enable mask. @@ -59,3 +67,6 @@ { return (Fapi_Status_FsmReady == FAPI_CHECK_FSM_READY_BUSY); } + +/**@}*/ +