Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/targets/f7/cube/Src/crc.c')
-rw-r--r--firmware/targets/f7/cube/Src/crc.c86
1 files changed, 38 insertions, 48 deletions
diff --git a/firmware/targets/f7/cube/Src/crc.c b/firmware/targets/f7/cube/Src/crc.c
index 7873e85a..203032ea 100644
--- a/firmware/targets/f7/cube/Src/crc.c
+++ b/firmware/targets/f7/cube/Src/crc.c
@@ -27,62 +27,52 @@
CRC_HandleTypeDef hcrc;
/* CRC init function */
-void MX_CRC_Init(void)
-{
-
- /* USER CODE BEGIN CRC_Init 0 */
-
- /* USER CODE END CRC_Init 0 */
-
- /* USER CODE BEGIN CRC_Init 1 */
-
- /* USER CODE END CRC_Init 1 */
- hcrc.Instance = CRC;
- hcrc.Init.DefaultPolynomialUse = DEFAULT_POLYNOMIAL_ENABLE;
- hcrc.Init.DefaultInitValueUse = DEFAULT_INIT_VALUE_ENABLE;
- hcrc.Init.InputDataInversionMode = CRC_INPUTDATA_INVERSION_NONE;
- hcrc.Init.OutputDataInversionMode = CRC_OUTPUTDATA_INVERSION_DISABLE;
- hcrc.InputDataFormat = CRC_INPUTDATA_FORMAT_BYTES;
- if (HAL_CRC_Init(&hcrc) != HAL_OK)
- {
- Error_Handler();
- }
- /* USER CODE BEGIN CRC_Init 2 */
-
- /* USER CODE END CRC_Init 2 */
-
+void MX_CRC_Init(void) {
+ /* USER CODE BEGIN CRC_Init 0 */
+
+ /* USER CODE END CRC_Init 0 */
+
+ /* USER CODE BEGIN CRC_Init 1 */
+
+ /* USER CODE END CRC_Init 1 */
+ hcrc.Instance = CRC;
+ hcrc.Init.DefaultPolynomialUse = DEFAULT_POLYNOMIAL_ENABLE;
+ hcrc.Init.DefaultInitValueUse = DEFAULT_INIT_VALUE_ENABLE;
+ hcrc.Init.InputDataInversionMode = CRC_INPUTDATA_INVERSION_NONE;
+ hcrc.Init.OutputDataInversionMode = CRC_OUTPUTDATA_INVERSION_DISABLE;
+ hcrc.InputDataFormat = CRC_INPUTDATA_FORMAT_BYTES;
+ if(HAL_CRC_Init(&hcrc) != HAL_OK) {
+ Error_Handler();
+ }
+ /* USER CODE BEGIN CRC_Init 2 */
+
+ /* USER CODE END CRC_Init 2 */
}
-void HAL_CRC_MspInit(CRC_HandleTypeDef* crcHandle)
-{
+void HAL_CRC_MspInit(CRC_HandleTypeDef* crcHandle) {
+ if(crcHandle->Instance == CRC) {
+ /* USER CODE BEGIN CRC_MspInit 0 */
- if(crcHandle->Instance==CRC)
- {
- /* USER CODE BEGIN CRC_MspInit 0 */
+ /* USER CODE END CRC_MspInit 0 */
+ /* CRC clock enable */
+ __HAL_RCC_CRC_CLK_ENABLE();
+ /* USER CODE BEGIN CRC_MspInit 1 */
- /* USER CODE END CRC_MspInit 0 */
- /* CRC clock enable */
- __HAL_RCC_CRC_CLK_ENABLE();
- /* USER CODE BEGIN CRC_MspInit 1 */
-
- /* USER CODE END CRC_MspInit 1 */
- }
+ /* USER CODE END CRC_MspInit 1 */
+ }
}
-void HAL_CRC_MspDeInit(CRC_HandleTypeDef* crcHandle)
-{
-
- if(crcHandle->Instance==CRC)
- {
- /* USER CODE BEGIN CRC_MspDeInit 0 */
+void HAL_CRC_MspDeInit(CRC_HandleTypeDef* crcHandle) {
+ if(crcHandle->Instance == CRC) {
+ /* USER CODE BEGIN CRC_MspDeInit 0 */
- /* USER CODE END CRC_MspDeInit 0 */
- /* Peripheral clock disable */
- __HAL_RCC_CRC_CLK_DISABLE();
- /* USER CODE BEGIN CRC_MspDeInit 1 */
+ /* USER CODE END CRC_MspDeInit 0 */
+ /* Peripheral clock disable */
+ __HAL_RCC_CRC_CLK_DISABLE();
+ /* USER CODE BEGIN CRC_MspDeInit 1 */
- /* USER CODE END CRC_MspDeInit 1 */
- }
+ /* USER CODE END CRC_MspDeInit 1 */
+ }
}
/* USER CODE BEGIN 1 */