summaryrefslogtreecommitdiff
path: root/bsps/arm/stm32h7/hal/stm32h7xx_hal_hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/arm/stm32h7/hal/stm32h7xx_hal_hash.c')
-rw-r--r--bsps/arm/stm32h7/hal/stm32h7xx_hal_hash.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/bsps/arm/stm32h7/hal/stm32h7xx_hal_hash.c b/bsps/arm/stm32h7/hal/stm32h7xx_hal_hash.c
index 48abbcd3fa..f6b173a339 100644
--- a/bsps/arm/stm32h7/hal/stm32h7xx_hal_hash.c
+++ b/bsps/arm/stm32h7/hal/stm32h7xx_hal_hash.c
@@ -215,6 +215,7 @@
#if defined (HASH)
/** @defgroup HASH HASH
+ * @ingroup RTEMSBSPsARMSTM32H7
* @brief HASH HAL module driver.
* @{
*/
@@ -224,10 +225,12 @@
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/** @defgroup HASH_Private_Constants HASH Private Constants
+ * @ingroup RTEMSBSPsARMSTM32H7
* @{
*/
/** @defgroup HASH_Digest_Calculation_Status HASH Digest Calculation Status
+ * @ingroup RTEMSBSPsARMSTM32H7
* @{
*/
#define HASH_DIGEST_CALCULATION_NOT_STARTED ((uint32_t)0x00000000U) /*!< DCAL not set after input data written in DIN register */
@@ -237,6 +240,7 @@
*/
/** @defgroup HASH_Number_Of_CSR_Registers HASH Number of Context Swap Registers
+ * @ingroup RTEMSBSPsARMSTM32H7
* @{
*/
#define HASH_NUMBER_OF_CSR_REGISTERS 54U /*!< Number of Context Swap Registers */
@@ -245,6 +249,7 @@
*/
/** @defgroup HASH_TimeOut_Value HASH TimeOut Value
+ * @ingroup RTEMSBSPsARMSTM32H7
* @{
*/
#define HASH_TIMEOUTVALUE 1000U /*!< Time-out value */
@@ -253,6 +258,7 @@
*/
/** @defgroup HASH_DMA_Suspension_Words_Limit HASH DMA suspension words limit
+ * @ingroup RTEMSBSPsARMSTM32H7
* @{
*/
#define HASH_DMA_SUSPENSION_WORDS_LIMIT 20U /*!< Number of words below which DMA suspension is aborted */
@@ -268,6 +274,7 @@
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/** @defgroup HASH_Private_Functions HASH Private Functions
+ * @ingroup RTEMSBSPsARMSTM32H7
* @{
*/
static void HASH_DMAXferCplt(DMA_HandleTypeDef *hdma);
@@ -284,10 +291,12 @@ static HAL_StatusTypeDef HMAC_Processing(HASH_HandleTypeDef *hhash, uint32_t Tim
*/
/** @defgroup HASH_Exported_Functions HASH Exported Functions
+ * @ingroup RTEMSBSPsARMSTM32H7
* @{
*/
/** @defgroup HASH_Exported_Functions_Group1 Initialization and de-initialization functions
+ * @ingroup RTEMSBSPsARMSTM32H7
* @brief Initialization, configuration and call-back functions.
*
@verbatim
@@ -725,6 +734,7 @@ HAL_StatusTypeDef HAL_HASH_UnRegisterCallback(HASH_HandleTypeDef *hhash, HAL_HAS
*/
/** @defgroup HASH_Exported_Functions_Group2 HASH processing functions in polling mode
+ * @ingroup RTEMSBSPsARMSTM32H7
* @brief HASH processing functions using polling mode.
*
@verbatim
@@ -874,6 +884,7 @@ HAL_StatusTypeDef HAL_HASH_SHA1_Accmlt_End(HASH_HandleTypeDef *hhash, uint8_t *p
*/
/** @defgroup HASH_Exported_Functions_Group3 HASH processing functions in interrupt mode
+ * @ingroup RTEMSBSPsARMSTM32H7
* @brief HASH processing functions using interrupt mode.
*
@verbatim
@@ -1040,6 +1051,7 @@ void HAL_HASH_IRQHandler(HASH_HandleTypeDef *hhash)
*/
/** @defgroup HASH_Exported_Functions_Group4 HASH processing functions in DMA mode
+ * @ingroup RTEMSBSPsARMSTM32H7
* @brief HASH processing functions using DMA mode.
*
@verbatim
@@ -1133,6 +1145,7 @@ HAL_StatusTypeDef HAL_HASH_SHA1_Finish(HASH_HandleTypeDef *hhash, uint8_t *pOutB
*/
/** @defgroup HASH_Exported_Functions_Group5 HMAC processing functions in polling mode
+ * @ingroup RTEMSBSPsARMSTM32H7
* @brief HMAC processing functions using polling mode.
*
@verbatim
@@ -1195,6 +1208,7 @@ HAL_StatusTypeDef HAL_HMAC_SHA1_Start(HASH_HandleTypeDef *hhash, uint8_t *pInBuf
/** @defgroup HASH_Exported_Functions_Group6 HMAC processing functions in interrupt mode
+ * @ingroup RTEMSBSPsARMSTM32H7
* @brief HMAC processing functions using interrupt mode.
*
@verbatim
@@ -1256,6 +1270,7 @@ HAL_StatusTypeDef HAL_HMAC_SHA1_Start_IT(HASH_HandleTypeDef *hhash, uint8_t *pIn
/** @defgroup HASH_Exported_Functions_Group7 HMAC processing functions in DMA mode
+ * @ingroup RTEMSBSPsARMSTM32H7
* @brief HMAC processing functions using DMA modes.
*
@verbatim
@@ -1332,6 +1347,7 @@ HAL_StatusTypeDef HAL_HMAC_SHA1_Start_DMA(HASH_HandleTypeDef *hhash, uint8_t *pI
*/
/** @defgroup HASH_Exported_Functions_Group8 Peripheral states functions
+ * @ingroup RTEMSBSPsARMSTM32H7
* @brief Peripheral State functions.
*
@verbatim
@@ -1635,6 +1651,7 @@ uint32_t HAL_HASH_GetError(HASH_HandleTypeDef *hhash)
*/
/** @defgroup HASH_Private_Functions HASH Private Functions
+ * @ingroup RTEMSBSPsARMSTM32H7
* @{
*/