my fork
Fork of mbed by
TARGET_NUCLEO_F334R8/stm32f3xx_hal_crc.h@86:04dd9b1680ae, 2014-07-02 (annotated)
- Committer:
- bogdanm
- Date:
- Wed Jul 02 13:22:23 2014 +0100
- Revision:
- 86:04dd9b1680ae
- Child:
- 92:4fc01daae5a5
Release 86 of the mbed library
Main changes:
- bug fixes in various backends
- mbed "error" replaced by assert logic (mbed_assert)
- new ST Nucleo targets
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 86:04dd9b1680ae | 1 | /** |
bogdanm | 86:04dd9b1680ae | 2 | ****************************************************************************** |
bogdanm | 86:04dd9b1680ae | 3 | * @file stm32f3xx_hal_crc.h |
bogdanm | 86:04dd9b1680ae | 4 | * @author MCD Application Team |
bogdanm | 86:04dd9b1680ae | 5 | * @version V1.0.1 |
bogdanm | 86:04dd9b1680ae | 6 | * @date 18-June-2014 |
bogdanm | 86:04dd9b1680ae | 7 | * @brief Header file of CRC HAL module. |
bogdanm | 86:04dd9b1680ae | 8 | ****************************************************************************** |
bogdanm | 86:04dd9b1680ae | 9 | * @attention |
bogdanm | 86:04dd9b1680ae | 10 | * |
bogdanm | 86:04dd9b1680ae | 11 | * <h2><center>© COPYRIGHT(c) 2014 STMicroelectronics</center></h2> |
bogdanm | 86:04dd9b1680ae | 12 | * |
bogdanm | 86:04dd9b1680ae | 13 | * Redistribution and use in source and binary forms, with or without modification, |
bogdanm | 86:04dd9b1680ae | 14 | * are permitted provided that the following conditions are met: |
bogdanm | 86:04dd9b1680ae | 15 | * 1. Redistributions of source code must retain the above copyright notice, |
bogdanm | 86:04dd9b1680ae | 16 | * this list of conditions and the following disclaimer. |
bogdanm | 86:04dd9b1680ae | 17 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
bogdanm | 86:04dd9b1680ae | 18 | * this list of conditions and the following disclaimer in the documentation |
bogdanm | 86:04dd9b1680ae | 19 | * and/or other materials provided with the distribution. |
bogdanm | 86:04dd9b1680ae | 20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
bogdanm | 86:04dd9b1680ae | 21 | * may be used to endorse or promote products derived from this software |
bogdanm | 86:04dd9b1680ae | 22 | * without specific prior written permission. |
bogdanm | 86:04dd9b1680ae | 23 | * |
bogdanm | 86:04dd9b1680ae | 24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
bogdanm | 86:04dd9b1680ae | 25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
bogdanm | 86:04dd9b1680ae | 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
bogdanm | 86:04dd9b1680ae | 27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
bogdanm | 86:04dd9b1680ae | 28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
bogdanm | 86:04dd9b1680ae | 29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
bogdanm | 86:04dd9b1680ae | 30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
bogdanm | 86:04dd9b1680ae | 31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
bogdanm | 86:04dd9b1680ae | 32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
bogdanm | 86:04dd9b1680ae | 33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
bogdanm | 86:04dd9b1680ae | 34 | * |
bogdanm | 86:04dd9b1680ae | 35 | ****************************************************************************** |
bogdanm | 86:04dd9b1680ae | 36 | */ |
bogdanm | 86:04dd9b1680ae | 37 | |
bogdanm | 86:04dd9b1680ae | 38 | /* Define to prevent recursive inclusion -------------------------------------*/ |
bogdanm | 86:04dd9b1680ae | 39 | #ifndef __STM32F3xx_HAL_CRC_H |
bogdanm | 86:04dd9b1680ae | 40 | #define __STM32F3xx_HAL_CRC_H |
bogdanm | 86:04dd9b1680ae | 41 | |
bogdanm | 86:04dd9b1680ae | 42 | #ifdef __cplusplus |
bogdanm | 86:04dd9b1680ae | 43 | extern "C" { |
bogdanm | 86:04dd9b1680ae | 44 | #endif |
bogdanm | 86:04dd9b1680ae | 45 | |
bogdanm | 86:04dd9b1680ae | 46 | /* Includes ------------------------------------------------------------------*/ |
bogdanm | 86:04dd9b1680ae | 47 | #include "stm32f3xx_hal_def.h" |
bogdanm | 86:04dd9b1680ae | 48 | |
bogdanm | 86:04dd9b1680ae | 49 | /** @addtogroup STM32F3xx_HAL_Driver |
bogdanm | 86:04dd9b1680ae | 50 | * @{ |
bogdanm | 86:04dd9b1680ae | 51 | */ |
bogdanm | 86:04dd9b1680ae | 52 | |
bogdanm | 86:04dd9b1680ae | 53 | /** @addtogroup CRC |
bogdanm | 86:04dd9b1680ae | 54 | * @{ |
bogdanm | 86:04dd9b1680ae | 55 | */ |
bogdanm | 86:04dd9b1680ae | 56 | |
bogdanm | 86:04dd9b1680ae | 57 | /* Exported types ------------------------------------------------------------*/ |
bogdanm | 86:04dd9b1680ae | 58 | |
bogdanm | 86:04dd9b1680ae | 59 | /** |
bogdanm | 86:04dd9b1680ae | 60 | * @brief CRC HAL State Structure definition |
bogdanm | 86:04dd9b1680ae | 61 | */ |
bogdanm | 86:04dd9b1680ae | 62 | typedef enum |
bogdanm | 86:04dd9b1680ae | 63 | { |
bogdanm | 86:04dd9b1680ae | 64 | HAL_CRC_STATE_RESET = 0x00, /*!< CRC not yet initialized or disabled */ |
bogdanm | 86:04dd9b1680ae | 65 | HAL_CRC_STATE_READY = 0x01, /*!< CRC initialized and ready for use */ |
bogdanm | 86:04dd9b1680ae | 66 | HAL_CRC_STATE_BUSY = 0x02, /*!< CRC internal process is ongoing */ |
bogdanm | 86:04dd9b1680ae | 67 | HAL_CRC_STATE_TIMEOUT = 0x03, /*!< CRC timeout state */ |
bogdanm | 86:04dd9b1680ae | 68 | HAL_CRC_STATE_ERROR = 0x04 /*!< CRC error state */ |
bogdanm | 86:04dd9b1680ae | 69 | }HAL_CRC_StateTypeDef; |
bogdanm | 86:04dd9b1680ae | 70 | |
bogdanm | 86:04dd9b1680ae | 71 | |
bogdanm | 86:04dd9b1680ae | 72 | /** |
bogdanm | 86:04dd9b1680ae | 73 | * @brief CRC Init Structure definition |
bogdanm | 86:04dd9b1680ae | 74 | */ |
bogdanm | 86:04dd9b1680ae | 75 | typedef struct |
bogdanm | 86:04dd9b1680ae | 76 | { |
bogdanm | 86:04dd9b1680ae | 77 | uint8_t DefaultPolynomialUse; /*!< This parameter is a value of @ref CRC_Default_Polynomial and indicates if default polynomial is used. |
bogdanm | 86:04dd9b1680ae | 78 | If set to DEFAULT_POLYNOMIAL_ENABLE, resort to default |
bogdanm | 86:04dd9b1680ae | 79 | X^32 + X^26 + X^23 + X^22 + X^16 + X^12 + X^11 + X^10 +X^8 + X^7 + X^5 + X^4 + X^2+ X +1. |
bogdanm | 86:04dd9b1680ae | 80 | In that case, there is no need to set GeneratingPolynomial field. |
bogdanm | 86:04dd9b1680ae | 81 | If otherwise set to DEFAULT_POLYNOMIAL_DISABLE, GeneratingPolynomial and CRCLength fields must be set */ |
bogdanm | 86:04dd9b1680ae | 82 | |
bogdanm | 86:04dd9b1680ae | 83 | uint8_t DefaultInitValueUse; /*!< This parameter is a value of @ref CRC_Default_InitValue_Use and indicates if default init value is used. |
bogdanm | 86:04dd9b1680ae | 84 | If set to DEFAULT_INIT_VALUE_ENABLE, resort to default |
bogdanm | 86:04dd9b1680ae | 85 | 0xFFFFFFFF value. In that case, there is no need to set InitValue field. |
bogdanm | 86:04dd9b1680ae | 86 | If otherwise set to DEFAULT_INIT_VALUE_DISABLE, InitValue field must be set */ |
bogdanm | 86:04dd9b1680ae | 87 | |
bogdanm | 86:04dd9b1680ae | 88 | uint32_t GeneratingPolynomial; /*!< Set CRC generating polynomial. 7, 8, 16 or 32-bit long value for a polynomial degree |
bogdanm | 86:04dd9b1680ae | 89 | respectively equal to 7, 8, 16 or 32. This field is written in normal representation, |
bogdanm | 86:04dd9b1680ae | 90 | e.g., for a polynomial of degree 7, X^7 + X^6 + X^5 + X^2 + 1 is written 0x65. |
bogdanm | 86:04dd9b1680ae | 91 | No need to specify it if DefaultPolynomialUse is set to DEFAULT_POLYNOMIAL_ENABLE */ |
bogdanm | 86:04dd9b1680ae | 92 | |
bogdanm | 86:04dd9b1680ae | 93 | uint32_t CRCLength; /*!< This parameter is a value of @ref CRC_Polynomial_Size_Definitions and indicates CRC length. |
bogdanm | 86:04dd9b1680ae | 94 | Value can be either one of |
bogdanm | 86:04dd9b1680ae | 95 | CRC_POLYLENGTH_32B (32-bit CRC) |
bogdanm | 86:04dd9b1680ae | 96 | CRC_POLYLENGTH_16B (16-bit CRC) |
bogdanm | 86:04dd9b1680ae | 97 | CRC_POLYLENGTH_8B (8-bit CRC) |
bogdanm | 86:04dd9b1680ae | 98 | CRC_POLYLENGTH_7B (7-bit CRC) */ |
bogdanm | 86:04dd9b1680ae | 99 | |
bogdanm | 86:04dd9b1680ae | 100 | uint32_t InitValue; /*!< Init value to initiate CRC computation. No need to specify it if DefaultInitValueUse |
bogdanm | 86:04dd9b1680ae | 101 | is set to DEFAULT_INIT_VALUE_ENABLE */ |
bogdanm | 86:04dd9b1680ae | 102 | |
bogdanm | 86:04dd9b1680ae | 103 | uint32_t InputDataInversionMode; /*!< This parameter is a value of @ref CRCEx_Input_Data_Inversion and specifies input data inversion mode. |
bogdanm | 86:04dd9b1680ae | 104 | Can be either one of the following values |
bogdanm | 86:04dd9b1680ae | 105 | CRC_INPUTDATA_INVERSION_NONE no input data inversion |
bogdanm | 86:04dd9b1680ae | 106 | CRC_INPUTDATA_INVERSION_BYTE byte-wise inversion, 0x1A2B3C4D becomes 0x58D43CB2 |
bogdanm | 86:04dd9b1680ae | 107 | CRC_INPUTDATA_INVERSION_HALFWORD halfword-wise inversion, 0x1A2B3C4D becomes 0xD458B23C |
bogdanm | 86:04dd9b1680ae | 108 | CRC_INPUTDATA_INVERSION_WORD word-wise inversion, 0x1A2B3C4D becomes 0xB23CD458 */ |
bogdanm | 86:04dd9b1680ae | 109 | |
bogdanm | 86:04dd9b1680ae | 110 | uint32_t OutputDataInversionMode; /*!< This parameter is a value of @ref CRCEx_Output_Data_Inversion and specifies output data (i.e. CRC) inversion mode. |
bogdanm | 86:04dd9b1680ae | 111 | Can be either |
bogdanm | 86:04dd9b1680ae | 112 | CRC_OUTPUTDATA_INVERSION_DISABLED no CRC inversion, or |
bogdanm | 86:04dd9b1680ae | 113 | CRC_OUTPUTDATA_INVERSION_ENABLED CRC 0x11223344 is converted into 0x22CC4488 */ |
bogdanm | 86:04dd9b1680ae | 114 | }CRC_InitTypeDef; |
bogdanm | 86:04dd9b1680ae | 115 | |
bogdanm | 86:04dd9b1680ae | 116 | |
bogdanm | 86:04dd9b1680ae | 117 | /** |
bogdanm | 86:04dd9b1680ae | 118 | * @brief CRC Handle Structure definition |
bogdanm | 86:04dd9b1680ae | 119 | */ |
bogdanm | 86:04dd9b1680ae | 120 | typedef struct |
bogdanm | 86:04dd9b1680ae | 121 | { |
bogdanm | 86:04dd9b1680ae | 122 | CRC_TypeDef *Instance; /*!< Register base address */ |
bogdanm | 86:04dd9b1680ae | 123 | |
bogdanm | 86:04dd9b1680ae | 124 | CRC_InitTypeDef Init; /*!< CRC configuration parameters */ |
bogdanm | 86:04dd9b1680ae | 125 | |
bogdanm | 86:04dd9b1680ae | 126 | HAL_LockTypeDef Lock; /*!< CRC Locking object */ |
bogdanm | 86:04dd9b1680ae | 127 | |
bogdanm | 86:04dd9b1680ae | 128 | __IO HAL_CRC_StateTypeDef State; /*!< CRC communication state */ |
bogdanm | 86:04dd9b1680ae | 129 | |
bogdanm | 86:04dd9b1680ae | 130 | uint32_t InputDataFormat; /*!< This parameter is a value of @ref CRC_Input_Buffer_Format and specifies input data format. |
bogdanm | 86:04dd9b1680ae | 131 | Can be either |
bogdanm | 86:04dd9b1680ae | 132 | CRC_INPUTDATA_FORMAT_BYTES input data is a stream of bytes (8-bit data) |
bogdanm | 86:04dd9b1680ae | 133 | CRC_INPUTDATA_FORMAT_HALFWORDS input data is a stream of half-words (16-bit data) |
bogdanm | 86:04dd9b1680ae | 134 | CRC_INPUTDATA_FORMAT_WORDS input data is a stream of words (32-bits data) |
bogdanm | 86:04dd9b1680ae | 135 | Note that constant CRC_INPUT_FORMAT_UNDEFINED is defined but an initialization error |
bogdanm | 86:04dd9b1680ae | 136 | must occur if InputBufferFormat is not one of the three values listed above */ |
bogdanm | 86:04dd9b1680ae | 137 | }CRC_HandleTypeDef; |
bogdanm | 86:04dd9b1680ae | 138 | |
bogdanm | 86:04dd9b1680ae | 139 | /* Exported constants --------------------------------------------------------*/ |
bogdanm | 86:04dd9b1680ae | 140 | |
bogdanm | 86:04dd9b1680ae | 141 | /** @defgroup CRC_Default_Polynomial_Value Default CRC generating polynomial |
bogdanm | 86:04dd9b1680ae | 142 | * @{ |
bogdanm | 86:04dd9b1680ae | 143 | */ |
bogdanm | 86:04dd9b1680ae | 144 | #define DEFAULT_CRC32_POLY 0x04C11DB7 |
bogdanm | 86:04dd9b1680ae | 145 | |
bogdanm | 86:04dd9b1680ae | 146 | /** |
bogdanm | 86:04dd9b1680ae | 147 | * @} |
bogdanm | 86:04dd9b1680ae | 148 | */ |
bogdanm | 86:04dd9b1680ae | 149 | |
bogdanm | 86:04dd9b1680ae | 150 | /** @defgroup CRC_Default_InitValue Default CRC computation initialization value |
bogdanm | 86:04dd9b1680ae | 151 | * @{ |
bogdanm | 86:04dd9b1680ae | 152 | */ |
bogdanm | 86:04dd9b1680ae | 153 | #define DEFAULT_CRC_INITVALUE 0xFFFFFFFF |
bogdanm | 86:04dd9b1680ae | 154 | |
bogdanm | 86:04dd9b1680ae | 155 | /** |
bogdanm | 86:04dd9b1680ae | 156 | * @} |
bogdanm | 86:04dd9b1680ae | 157 | */ |
bogdanm | 86:04dd9b1680ae | 158 | |
bogdanm | 86:04dd9b1680ae | 159 | /** @defgroup CRC_Default_Polynomial Indicates whether or not default polynomial is used |
bogdanm | 86:04dd9b1680ae | 160 | * @{ |
bogdanm | 86:04dd9b1680ae | 161 | */ |
bogdanm | 86:04dd9b1680ae | 162 | #define DEFAULT_POLYNOMIAL_ENABLE ((uint8_t)0x00) |
bogdanm | 86:04dd9b1680ae | 163 | #define DEFAULT_POLYNOMIAL_DISABLE ((uint8_t)0x01) |
bogdanm | 86:04dd9b1680ae | 164 | |
bogdanm | 86:04dd9b1680ae | 165 | #define IS_DEFAULT_POLYNOMIAL(DEFAULT) (((DEFAULT) == DEFAULT_POLYNOMIAL_ENABLE) || \ |
bogdanm | 86:04dd9b1680ae | 166 | ((DEFAULT) == DEFAULT_POLYNOMIAL_DISABLE)) |
bogdanm | 86:04dd9b1680ae | 167 | |
bogdanm | 86:04dd9b1680ae | 168 | /** |
bogdanm | 86:04dd9b1680ae | 169 | * @} |
bogdanm | 86:04dd9b1680ae | 170 | */ |
bogdanm | 86:04dd9b1680ae | 171 | |
bogdanm | 86:04dd9b1680ae | 172 | /** @defgroup CRC_Default_InitValue_Use Indicates whether or not default init value is used |
bogdanm | 86:04dd9b1680ae | 173 | * @{ |
bogdanm | 86:04dd9b1680ae | 174 | */ |
bogdanm | 86:04dd9b1680ae | 175 | #define DEFAULT_INIT_VALUE_ENABLE ((uint8_t)0x00) |
bogdanm | 86:04dd9b1680ae | 176 | #define DEFAULT_INIT_VALUE_DISABLE ((uint8_t)0x01) |
bogdanm | 86:04dd9b1680ae | 177 | |
bogdanm | 86:04dd9b1680ae | 178 | #define IS_DEFAULT_INIT_VALUE(VALUE) (((VALUE) == DEFAULT_INIT_VALUE_ENABLE) || \ |
bogdanm | 86:04dd9b1680ae | 179 | ((VALUE) == DEFAULT_INIT_VALUE_DISABLE)) |
bogdanm | 86:04dd9b1680ae | 180 | |
bogdanm | 86:04dd9b1680ae | 181 | /** |
bogdanm | 86:04dd9b1680ae | 182 | * @} |
bogdanm | 86:04dd9b1680ae | 183 | */ |
bogdanm | 86:04dd9b1680ae | 184 | |
bogdanm | 86:04dd9b1680ae | 185 | /** @defgroup CRC_Polynomial_Sizes Polynomial sizes to configure the IP |
bogdanm | 86:04dd9b1680ae | 186 | * @{ |
bogdanm | 86:04dd9b1680ae | 187 | */ |
bogdanm | 86:04dd9b1680ae | 188 | #define CRC_POLYLENGTH_32B ((uint32_t)0x00000000) |
bogdanm | 86:04dd9b1680ae | 189 | #define CRC_POLYLENGTH_16B ((uint32_t)CRC_CR_POLYSIZE_0) |
bogdanm | 86:04dd9b1680ae | 190 | #define CRC_POLYLENGTH_8B ((uint32_t)CRC_CR_POLYSIZE_1) |
bogdanm | 86:04dd9b1680ae | 191 | #define CRC_POLYLENGTH_7B ((uint32_t)CRC_CR_POLYSIZE) |
bogdanm | 86:04dd9b1680ae | 192 | #define IS_CRC_POL_LENGTH(LENGTH) (((LENGTH) == CRC_POLYLENGTH_32B) || \ |
bogdanm | 86:04dd9b1680ae | 193 | ((LENGTH) == CRC_POLYLENGTH_16B) || \ |
bogdanm | 86:04dd9b1680ae | 194 | ((LENGTH) == CRC_POLYLENGTH_8B) || \ |
bogdanm | 86:04dd9b1680ae | 195 | ((LENGTH) == CRC_POLYLENGTH_7B)) |
bogdanm | 86:04dd9b1680ae | 196 | /** |
bogdanm | 86:04dd9b1680ae | 197 | * @} |
bogdanm | 86:04dd9b1680ae | 198 | */ |
bogdanm | 86:04dd9b1680ae | 199 | |
bogdanm | 86:04dd9b1680ae | 200 | /** @defgroup CRC_Polynomial_Size_Definitions CRC polynomial possible sizes actual definitions |
bogdanm | 86:04dd9b1680ae | 201 | * @{ |
bogdanm | 86:04dd9b1680ae | 202 | */ |
bogdanm | 86:04dd9b1680ae | 203 | #define HAL_CRC_LENGTH_32B 32 |
bogdanm | 86:04dd9b1680ae | 204 | #define HAL_CRC_LENGTH_16B 16 |
bogdanm | 86:04dd9b1680ae | 205 | #define HAL_CRC_LENGTH_8B 8 |
bogdanm | 86:04dd9b1680ae | 206 | #define HAL_CRC_LENGTH_7B 7 |
bogdanm | 86:04dd9b1680ae | 207 | |
bogdanm | 86:04dd9b1680ae | 208 | /** |
bogdanm | 86:04dd9b1680ae | 209 | * @} |
bogdanm | 86:04dd9b1680ae | 210 | */ |
bogdanm | 86:04dd9b1680ae | 211 | |
bogdanm | 86:04dd9b1680ae | 212 | /** @defgroup CRC_Input_Buffer_Format Input Buffer Format |
bogdanm | 86:04dd9b1680ae | 213 | * @{ |
bogdanm | 86:04dd9b1680ae | 214 | */ |
bogdanm | 86:04dd9b1680ae | 215 | /* WARNING: CRC_INPUT_FORMAT_UNDEFINED is created for reference purposes but |
bogdanm | 86:04dd9b1680ae | 216 | * an error is triggered in HAL_CRC_Init() if InputDataFormat field is set |
bogdanm | 86:04dd9b1680ae | 217 | * to CRC_INPUT_FORMAT_UNDEFINED: the format MUST be defined by the user for |
bogdanm | 86:04dd9b1680ae | 218 | * the CRC APIs to provide a correct result */ |
bogdanm | 86:04dd9b1680ae | 219 | #define CRC_INPUTDATA_FORMAT_UNDEFINED ((uint32_t)0x00000000) |
bogdanm | 86:04dd9b1680ae | 220 | #define CRC_INPUTDATA_FORMAT_BYTES ((uint32_t)0x00000001) |
bogdanm | 86:04dd9b1680ae | 221 | #define CRC_INPUTDATA_FORMAT_HALFWORDS ((uint32_t)0x00000002) |
bogdanm | 86:04dd9b1680ae | 222 | #define CRC_INPUTDATA_FORMAT_WORDS ((uint32_t)0x00000003) |
bogdanm | 86:04dd9b1680ae | 223 | |
bogdanm | 86:04dd9b1680ae | 224 | #define IS_CRC_INPUTDATA_FORMAT(FORMAT) (((FORMAT) == CRC_INPUTDATA_FORMAT_BYTES) || \ |
bogdanm | 86:04dd9b1680ae | 225 | ((FORMAT) == CRC_INPUTDATA_FORMAT_HALFWORDS) || \ |
bogdanm | 86:04dd9b1680ae | 226 | ((FORMAT) == CRC_INPUTDATA_FORMAT_WORDS)) |
bogdanm | 86:04dd9b1680ae | 227 | /** |
bogdanm | 86:04dd9b1680ae | 228 | * @} |
bogdanm | 86:04dd9b1680ae | 229 | */ |
bogdanm | 86:04dd9b1680ae | 230 | |
bogdanm | 86:04dd9b1680ae | 231 | /* Exported macros -----------------------------------------------------------*/ |
bogdanm | 86:04dd9b1680ae | 232 | |
bogdanm | 86:04dd9b1680ae | 233 | /** @defgroup CRC_Exported_Macros |
bogdanm | 86:04dd9b1680ae | 234 | * @{ |
bogdanm | 86:04dd9b1680ae | 235 | */ |
bogdanm | 86:04dd9b1680ae | 236 | |
bogdanm | 86:04dd9b1680ae | 237 | /** @brief Reset CRC handle state |
bogdanm | 86:04dd9b1680ae | 238 | * @param __HANDLE__: CRC handle. |
bogdanm | 86:04dd9b1680ae | 239 | * @retval None |
bogdanm | 86:04dd9b1680ae | 240 | */ |
bogdanm | 86:04dd9b1680ae | 241 | #define __HAL_CRC_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_CRC_STATE_RESET) |
bogdanm | 86:04dd9b1680ae | 242 | |
bogdanm | 86:04dd9b1680ae | 243 | /** |
bogdanm | 86:04dd9b1680ae | 244 | * @brief Reset CRC Data Register. |
bogdanm | 86:04dd9b1680ae | 245 | * @param __HANDLE__: CRC handle |
bogdanm | 86:04dd9b1680ae | 246 | * @retval None. |
bogdanm | 86:04dd9b1680ae | 247 | */ |
bogdanm | 86:04dd9b1680ae | 248 | #define __HAL_CRC_DR_RESET(__HANDLE__) ((__HANDLE__)->Instance->CR |= CRC_CR_RESET) |
bogdanm | 86:04dd9b1680ae | 249 | |
bogdanm | 86:04dd9b1680ae | 250 | /** |
bogdanm | 86:04dd9b1680ae | 251 | * @brief Set CRC INIT non-default value |
bogdanm | 86:04dd9b1680ae | 252 | * @param __HANDLE__ : CRC handle |
bogdanm | 86:04dd9b1680ae | 253 | * @param __INIT__ : 32-bit initial value |
bogdanm | 86:04dd9b1680ae | 254 | * @retval None. |
bogdanm | 86:04dd9b1680ae | 255 | */ |
bogdanm | 86:04dd9b1680ae | 256 | #define __HAL_CRC_INITIALCRCVALUE_CONFIG(__HANDLE__, __INIT__) ((__HANDLE__)->Instance->INIT = (__INIT__)) |
bogdanm | 86:04dd9b1680ae | 257 | |
bogdanm | 86:04dd9b1680ae | 258 | /** |
bogdanm | 86:04dd9b1680ae | 259 | * @} |
bogdanm | 86:04dd9b1680ae | 260 | */ |
bogdanm | 86:04dd9b1680ae | 261 | |
bogdanm | 86:04dd9b1680ae | 262 | |
bogdanm | 86:04dd9b1680ae | 263 | /* Include CRC HAL Extension module */ |
bogdanm | 86:04dd9b1680ae | 264 | #include "stm32f3xx_hal_crc_ex.h" |
bogdanm | 86:04dd9b1680ae | 265 | |
bogdanm | 86:04dd9b1680ae | 266 | /* Exported functions --------------------------------------------------------*/ |
bogdanm | 86:04dd9b1680ae | 267 | |
bogdanm | 86:04dd9b1680ae | 268 | /* Initialization and de-initialization functions ****************************/ |
bogdanm | 86:04dd9b1680ae | 269 | HAL_StatusTypeDef HAL_CRC_Init(CRC_HandleTypeDef *hcrc); |
bogdanm | 86:04dd9b1680ae | 270 | HAL_StatusTypeDef HAL_CRC_DeInit (CRC_HandleTypeDef *hcrc); |
bogdanm | 86:04dd9b1680ae | 271 | void HAL_CRC_MspInit(CRC_HandleTypeDef *hcrc); |
bogdanm | 86:04dd9b1680ae | 272 | void HAL_CRC_MspDeInit(CRC_HandleTypeDef *hcrc); |
bogdanm | 86:04dd9b1680ae | 273 | /* Aliases for inter STM32 series compatibility */ |
bogdanm | 86:04dd9b1680ae | 274 | #define HAL_CRC_Input_Data_Reverse HAL_CRCEx_Input_Data_Reverse |
bogdanm | 86:04dd9b1680ae | 275 | #define HAL_CRC_Output_Data_Reverse HAL_CRCEx_Output_Data_Reverse |
bogdanm | 86:04dd9b1680ae | 276 | |
bogdanm | 86:04dd9b1680ae | 277 | /* Peripheral Control functions ***********************************************/ |
bogdanm | 86:04dd9b1680ae | 278 | uint32_t HAL_CRC_Accumulate(CRC_HandleTypeDef *hcrc, uint32_t pBuffer[], uint32_t BufferLength); |
bogdanm | 86:04dd9b1680ae | 279 | uint32_t HAL_CRC_Calculate(CRC_HandleTypeDef *hcrc, uint32_t pBuffer[], uint32_t BufferLength); |
bogdanm | 86:04dd9b1680ae | 280 | |
bogdanm | 86:04dd9b1680ae | 281 | /* Peripheral State and Error functions ***************************************/ |
bogdanm | 86:04dd9b1680ae | 282 | HAL_CRC_StateTypeDef HAL_CRC_GetState(CRC_HandleTypeDef *hcrc); |
bogdanm | 86:04dd9b1680ae | 283 | |
bogdanm | 86:04dd9b1680ae | 284 | /** |
bogdanm | 86:04dd9b1680ae | 285 | * @} |
bogdanm | 86:04dd9b1680ae | 286 | */ |
bogdanm | 86:04dd9b1680ae | 287 | |
bogdanm | 86:04dd9b1680ae | 288 | /** |
bogdanm | 86:04dd9b1680ae | 289 | * @} |
bogdanm | 86:04dd9b1680ae | 290 | */ |
bogdanm | 86:04dd9b1680ae | 291 | |
bogdanm | 86:04dd9b1680ae | 292 | #ifdef __cplusplus |
bogdanm | 86:04dd9b1680ae | 293 | } |
bogdanm | 86:04dd9b1680ae | 294 | #endif |
bogdanm | 86:04dd9b1680ae | 295 | |
bogdanm | 86:04dd9b1680ae | 296 | #endif /* __STM32F3xx_HAL_CRC_H */ |
bogdanm | 86:04dd9b1680ae | 297 | |
bogdanm | 86:04dd9b1680ae | 298 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |