Merge pull request #11198 from SteveCEvans/sce_rc2
[betaflight.git] / lib / main / STM32F4 / Drivers / STM32F4xx_HAL_Driver / Src / stm32f4xx_hal_crc.c
blob32ca97cd1521d1000e89fd91d8025aab36cb581a
1 /**
2 ******************************************************************************
3 * @file stm32f4xx_hal_crc.c
4 * @author MCD Application Team
5 * @version V1.7.1
6 * @date 14-April-2017
7 * @brief CRC HAL module driver.
8 * This file provides firmware functions to manage the following
9 * functionalities of the Cyclic Redundancy Check (CRC) peripheral:
10 * + Initialization and de-initialization functions
11 * + Peripheral Control functions
12 * + Peripheral State functions
14 @verbatim
15 ==============================================================================
16 ##### How to use this driver #####
17 ==============================================================================
18 [..]
19 The CRC HAL driver can be used as follows:
21 (#) Enable CRC AHB clock using __HAL_RCC_CRC_CLK_ENABLE();
23 (#) Use HAL_CRC_Accumulate() function to compute the CRC value of
24 a 32-bit data buffer using combination of the previous CRC value
25 and the new one.
27 (#) Use HAL_CRC_Calculate() function to compute the CRC Value of
28 a new 32-bit data buffer. This function resets the CRC computation
29 unit before starting the computation to avoid getting wrong CRC values.
31 @endverbatim
32 ******************************************************************************
33 * @attention
35 * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
37 * Redistribution and use in source and binary forms, with or without modification,
38 * are permitted provided that the following conditions are met:
39 * 1. Redistributions of source code must retain the above copyright notice,
40 * this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright notice,
42 * this list of conditions and the following disclaimer in the documentation
43 * and/or other materials provided with the distribution.
44 * 3. Neither the name of STMicroelectronics nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
49 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
51 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
54 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
55 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
56 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
57 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
59 ******************************************************************************
62 /* Includes ------------------------------------------------------------------*/
63 #include "stm32f4xx_hal.h"
65 /** @addtogroup STM32F4xx_HAL_Driver
66 * @{
69 /** @addtogroup CRC
70 * @{
73 #ifdef HAL_CRC_MODULE_ENABLED
75 /* Private typedef -----------------------------------------------------------*/
76 /* Private define ------------------------------------------------------------*/
77 /* Private macro -------------------------------------------------------------*/
78 /* Private variables ---------------------------------------------------------*/
79 /* Private function prototypes -----------------------------------------------*/
80 /* Private functions ---------------------------------------------------------*/
81 /* Exported functions --------------------------------------------------------*/
83 /** @addtogroup CRC_Exported_Functions
84 * @{
87 /** @addtogroup CRC_Exported_Functions_Group1
88 * @brief Initialization and de-initialization functions
90 @verbatim
91 ==============================================================================
92 ##### Initialization and de-initialization functions #####
93 ==============================================================================
94 [..] This section provides functions allowing to:
95 (+) Initialize the CRC according to the specified parameters
96 in the CRC_InitTypeDef and create the associated handle
97 (+) DeInitialize the CRC peripheral
98 (+) Initialize the CRC MSP
99 (+) DeInitialize CRC MSP
101 @endverbatim
102 * @{
106 * @brief Initializes the CRC according to the specified
107 * parameters in the CRC_InitTypeDef and creates the associated handle.
108 * @param hcrc: pointer to a CRC_HandleTypeDef structure that contains
109 * the configuration information for CRC
110 * @retval HAL status
112 HAL_StatusTypeDef HAL_CRC_Init(CRC_HandleTypeDef *hcrc)
114 /* Check the CRC handle allocation */
115 if(hcrc == NULL)
117 return HAL_ERROR;
120 /* Check the parameters */
121 assert_param(IS_CRC_ALL_INSTANCE(hcrc->Instance));
123 if(hcrc->State == HAL_CRC_STATE_RESET)
125 /* Allocate lock resource and initialize it */
126 hcrc->Lock = HAL_UNLOCKED;
127 /* Init the low level hardware */
128 HAL_CRC_MspInit(hcrc);
131 /* Change CRC peripheral state */
132 hcrc->State = HAL_CRC_STATE_BUSY;
134 /* Change CRC peripheral state */
135 hcrc->State = HAL_CRC_STATE_READY;
137 /* Return function status */
138 return HAL_OK;
142 * @brief DeInitializes the CRC peripheral.
143 * @param hcrc: pointer to a CRC_HandleTypeDef structure that contains
144 * the configuration information for CRC
145 * @retval HAL status
147 HAL_StatusTypeDef HAL_CRC_DeInit(CRC_HandleTypeDef *hcrc)
149 /* Check the CRC handle allocation */
150 if(hcrc == NULL)
152 return HAL_ERROR;
155 /* Check the parameters */
156 assert_param(IS_CRC_ALL_INSTANCE(hcrc->Instance));
158 /* Change CRC peripheral state */
159 hcrc->State = HAL_CRC_STATE_BUSY;
161 /* DeInit the low level hardware */
162 HAL_CRC_MspDeInit(hcrc);
164 /* Change CRC peripheral state */
165 hcrc->State = HAL_CRC_STATE_RESET;
167 /* Release Lock */
168 __HAL_UNLOCK(hcrc);
170 /* Return function status */
171 return HAL_OK;
175 * @brief Initializes the CRC MSP.
176 * @param hcrc: pointer to a CRC_HandleTypeDef structure that contains
177 * the configuration information for CRC
178 * @retval None
180 __weak void HAL_CRC_MspInit(CRC_HandleTypeDef *hcrc)
182 /* Prevent unused argument(s) compilation warning */
183 UNUSED(hcrc);
184 /* NOTE : This function Should not be modified, when the callback is needed,
185 the HAL_CRC_MspInit could be implemented in the user file
190 * @brief DeInitializes the CRC MSP.
191 * @param hcrc: pointer to a CRC_HandleTypeDef structure that contains
192 * the configuration information for CRC
193 * @retval None
195 __weak void HAL_CRC_MspDeInit(CRC_HandleTypeDef *hcrc)
197 /* Prevent unused argument(s) compilation warning */
198 UNUSED(hcrc);
199 /* NOTE : This function Should not be modified, when the callback is needed,
200 the HAL_CRC_MspDeInit could be implemented in the user file
205 * @}
208 /** @addtogroup CRC_Exported_Functions_Group2
209 * @brief Peripheral Control functions
211 @verbatim
212 ==============================================================================
213 ##### Peripheral Control functions #####
214 ==============================================================================
215 [..] This section provides functions allowing to:
216 (+) Compute the 32-bit CRC value of 32-bit data buffer,
217 using combination of the previous CRC value and the new one.
218 (+) Compute the 32-bit CRC value of 32-bit data buffer,
219 independently of the previous CRC value.
221 @endverbatim
222 * @{
226 * @brief Computes the 32-bit CRC of 32-bit data buffer using combination
227 * of the previous CRC value and the new one.
228 * @param hcrc: pointer to a CRC_HandleTypeDef structure that contains
229 * the configuration information for CRC
230 * @param pBuffer: pointer to the buffer containing the data to be computed
231 * @param BufferLength: length of the buffer to be computed
232 * @retval 32-bit CRC
234 uint32_t HAL_CRC_Accumulate(CRC_HandleTypeDef *hcrc, uint32_t pBuffer[], uint32_t BufferLength)
236 uint32_t index = 0U;
238 /* Process Locked */
239 __HAL_LOCK(hcrc);
241 /* Change CRC peripheral state */
242 hcrc->State = HAL_CRC_STATE_BUSY;
244 /* Enter Data to the CRC calculator */
245 for(index = 0U; index < BufferLength; index++)
247 hcrc->Instance->DR = pBuffer[index];
250 /* Change CRC peripheral state */
251 hcrc->State = HAL_CRC_STATE_READY;
253 /* Process Unlocked */
254 __HAL_UNLOCK(hcrc);
256 /* Return the CRC computed value */
257 return hcrc->Instance->DR;
261 * @brief Computes the 32-bit CRC of 32-bit data buffer independently
262 * of the previous CRC value.
263 * @param hcrc: pointer to a CRC_HandleTypeDef structure that contains
264 * the configuration information for CRC
265 * @param pBuffer: Pointer to the buffer containing the data to be computed
266 * @param BufferLength: Length of the buffer to be computed
267 * @retval 32-bit CRC
269 uint32_t HAL_CRC_Calculate(CRC_HandleTypeDef *hcrc, uint32_t pBuffer[], uint32_t BufferLength)
271 uint32_t index = 0U;
273 /* Process Locked */
274 __HAL_LOCK(hcrc);
276 /* Change CRC peripheral state */
277 hcrc->State = HAL_CRC_STATE_BUSY;
279 /* Reset CRC Calculation Unit */
280 __HAL_CRC_DR_RESET(hcrc);
282 /* Enter Data to the CRC calculator */
283 for(index = 0U; index < BufferLength; index++)
285 hcrc->Instance->DR = pBuffer[index];
288 /* Change CRC peripheral state */
289 hcrc->State = HAL_CRC_STATE_READY;
291 /* Process Unlocked */
292 __HAL_UNLOCK(hcrc);
294 /* Return the CRC computed value */
295 return hcrc->Instance->DR;
299 * @}
303 /** @addtogroup CRC_Exported_Functions_Group3
304 * @brief Peripheral State functions
306 @verbatim
307 ==============================================================================
308 ##### Peripheral State functions #####
309 ==============================================================================
310 [..]
311 This subsection permits to get in run-time the status of the peripheral
312 and the data flow.
314 @endverbatim
315 * @{
319 * @brief Returns the CRC state.
320 * @param hcrc: pointer to a CRC_HandleTypeDef structure that contains
321 * the configuration information for CRC
322 * @retval HAL state
324 HAL_CRC_StateTypeDef HAL_CRC_GetState(CRC_HandleTypeDef *hcrc)
326 return hcrc->State;
330 * @}
334 * @}
337 #endif /* HAL_CRC_MODULE_ENABLED */
339 * @}
343 * @}
346 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/