Einstein Filho
/
MANGUEBAJA2019_BOX
Mangue Baja Box
mbed/TARGET_NUCLEO_F103RB/stm32f10x_crc.h@0:0dee8840a1c0, 2019-07-29 (annotated)
- Committer:
- einsteingustavo
- Date:
- Mon Jul 29 20:38:00 2019 +0000
- Revision:
- 0:0dee8840a1c0
Mangue Baja Box
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
einsteingustavo | 0:0dee8840a1c0 | 1 | /** |
einsteingustavo | 0:0dee8840a1c0 | 2 | ****************************************************************************** |
einsteingustavo | 0:0dee8840a1c0 | 3 | * @file stm32f10x_crc.h |
einsteingustavo | 0:0dee8840a1c0 | 4 | * @author MCD Application Team |
einsteingustavo | 0:0dee8840a1c0 | 5 | * @version V3.6.1 |
einsteingustavo | 0:0dee8840a1c0 | 6 | * @date 05-March-2012 |
einsteingustavo | 0:0dee8840a1c0 | 7 | * @brief This file contains all the functions prototypes for the CRC firmware |
einsteingustavo | 0:0dee8840a1c0 | 8 | * library. |
einsteingustavo | 0:0dee8840a1c0 | 9 | ******************************************************************************* |
einsteingustavo | 0:0dee8840a1c0 | 10 | * Copyright (c) 2014, STMicroelectronics |
einsteingustavo | 0:0dee8840a1c0 | 11 | * All rights reserved. |
einsteingustavo | 0:0dee8840a1c0 | 12 | * |
einsteingustavo | 0:0dee8840a1c0 | 13 | * Redistribution and use in source and binary forms, with or without |
einsteingustavo | 0:0dee8840a1c0 | 14 | * modification, are permitted provided that the following conditions are met: |
einsteingustavo | 0:0dee8840a1c0 | 15 | * |
einsteingustavo | 0:0dee8840a1c0 | 16 | * 1. Redistributions of source code must retain the above copyright notice, |
einsteingustavo | 0:0dee8840a1c0 | 17 | * this list of conditions and the following disclaimer. |
einsteingustavo | 0:0dee8840a1c0 | 18 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
einsteingustavo | 0:0dee8840a1c0 | 19 | * this list of conditions and the following disclaimer in the documentation |
einsteingustavo | 0:0dee8840a1c0 | 20 | * and/or other materials provided with the distribution. |
einsteingustavo | 0:0dee8840a1c0 | 21 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
einsteingustavo | 0:0dee8840a1c0 | 22 | * may be used to endorse or promote products derived from this software |
einsteingustavo | 0:0dee8840a1c0 | 23 | * without specific prior written permission. |
einsteingustavo | 0:0dee8840a1c0 | 24 | * |
einsteingustavo | 0:0dee8840a1c0 | 25 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
einsteingustavo | 0:0dee8840a1c0 | 26 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
einsteingustavo | 0:0dee8840a1c0 | 27 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
einsteingustavo | 0:0dee8840a1c0 | 28 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
einsteingustavo | 0:0dee8840a1c0 | 29 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
einsteingustavo | 0:0dee8840a1c0 | 30 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
einsteingustavo | 0:0dee8840a1c0 | 31 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
einsteingustavo | 0:0dee8840a1c0 | 32 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
einsteingustavo | 0:0dee8840a1c0 | 33 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
einsteingustavo | 0:0dee8840a1c0 | 34 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
einsteingustavo | 0:0dee8840a1c0 | 35 | ******************************************************************************* |
einsteingustavo | 0:0dee8840a1c0 | 36 | */ |
einsteingustavo | 0:0dee8840a1c0 | 37 | |
einsteingustavo | 0:0dee8840a1c0 | 38 | /* Define to prevent recursive inclusion -------------------------------------*/ |
einsteingustavo | 0:0dee8840a1c0 | 39 | #ifndef __STM32F10x_CRC_H |
einsteingustavo | 0:0dee8840a1c0 | 40 | #define __STM32F10x_CRC_H |
einsteingustavo | 0:0dee8840a1c0 | 41 | |
einsteingustavo | 0:0dee8840a1c0 | 42 | #ifdef __cplusplus |
einsteingustavo | 0:0dee8840a1c0 | 43 | extern "C" { |
einsteingustavo | 0:0dee8840a1c0 | 44 | #endif |
einsteingustavo | 0:0dee8840a1c0 | 45 | |
einsteingustavo | 0:0dee8840a1c0 | 46 | /* Includes ------------------------------------------------------------------*/ |
einsteingustavo | 0:0dee8840a1c0 | 47 | #include "stm32f10x.h" |
einsteingustavo | 0:0dee8840a1c0 | 48 | |
einsteingustavo | 0:0dee8840a1c0 | 49 | /** @addtogroup STM32F10x_StdPeriph_Driver |
einsteingustavo | 0:0dee8840a1c0 | 50 | * @{ |
einsteingustavo | 0:0dee8840a1c0 | 51 | */ |
einsteingustavo | 0:0dee8840a1c0 | 52 | |
einsteingustavo | 0:0dee8840a1c0 | 53 | /** @addtogroup CRC |
einsteingustavo | 0:0dee8840a1c0 | 54 | * @{ |
einsteingustavo | 0:0dee8840a1c0 | 55 | */ |
einsteingustavo | 0:0dee8840a1c0 | 56 | |
einsteingustavo | 0:0dee8840a1c0 | 57 | /** @defgroup CRC_Exported_Types |
einsteingustavo | 0:0dee8840a1c0 | 58 | * @{ |
einsteingustavo | 0:0dee8840a1c0 | 59 | */ |
einsteingustavo | 0:0dee8840a1c0 | 60 | |
einsteingustavo | 0:0dee8840a1c0 | 61 | /** |
einsteingustavo | 0:0dee8840a1c0 | 62 | * @} |
einsteingustavo | 0:0dee8840a1c0 | 63 | */ |
einsteingustavo | 0:0dee8840a1c0 | 64 | |
einsteingustavo | 0:0dee8840a1c0 | 65 | /** @defgroup CRC_Exported_Constants |
einsteingustavo | 0:0dee8840a1c0 | 66 | * @{ |
einsteingustavo | 0:0dee8840a1c0 | 67 | */ |
einsteingustavo | 0:0dee8840a1c0 | 68 | |
einsteingustavo | 0:0dee8840a1c0 | 69 | /** |
einsteingustavo | 0:0dee8840a1c0 | 70 | * @} |
einsteingustavo | 0:0dee8840a1c0 | 71 | */ |
einsteingustavo | 0:0dee8840a1c0 | 72 | |
einsteingustavo | 0:0dee8840a1c0 | 73 | /** @defgroup CRC_Exported_Macros |
einsteingustavo | 0:0dee8840a1c0 | 74 | * @{ |
einsteingustavo | 0:0dee8840a1c0 | 75 | */ |
einsteingustavo | 0:0dee8840a1c0 | 76 | |
einsteingustavo | 0:0dee8840a1c0 | 77 | /** |
einsteingustavo | 0:0dee8840a1c0 | 78 | * @} |
einsteingustavo | 0:0dee8840a1c0 | 79 | */ |
einsteingustavo | 0:0dee8840a1c0 | 80 | |
einsteingustavo | 0:0dee8840a1c0 | 81 | /** @defgroup CRC_Exported_Functions |
einsteingustavo | 0:0dee8840a1c0 | 82 | * @{ |
einsteingustavo | 0:0dee8840a1c0 | 83 | */ |
einsteingustavo | 0:0dee8840a1c0 | 84 | |
einsteingustavo | 0:0dee8840a1c0 | 85 | void CRC_ResetDR(void); |
einsteingustavo | 0:0dee8840a1c0 | 86 | uint32_t CRC_CalcCRC(uint32_t Data); |
einsteingustavo | 0:0dee8840a1c0 | 87 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength); |
einsteingustavo | 0:0dee8840a1c0 | 88 | uint32_t CRC_GetCRC(void); |
einsteingustavo | 0:0dee8840a1c0 | 89 | void CRC_SetIDRegister(uint8_t IDValue); |
einsteingustavo | 0:0dee8840a1c0 | 90 | uint8_t CRC_GetIDRegister(void); |
einsteingustavo | 0:0dee8840a1c0 | 91 | |
einsteingustavo | 0:0dee8840a1c0 | 92 | #ifdef __cplusplus |
einsteingustavo | 0:0dee8840a1c0 | 93 | } |
einsteingustavo | 0:0dee8840a1c0 | 94 | #endif |
einsteingustavo | 0:0dee8840a1c0 | 95 | |
einsteingustavo | 0:0dee8840a1c0 | 96 | #endif /* __STM32F10x_CRC_H */ |
einsteingustavo | 0:0dee8840a1c0 | 97 | /** |
einsteingustavo | 0:0dee8840a1c0 | 98 | * @} |
einsteingustavo | 0:0dee8840a1c0 | 99 | */ |
einsteingustavo | 0:0dee8840a1c0 | 100 | |
einsteingustavo | 0:0dee8840a1c0 | 101 | /** |
einsteingustavo | 0:0dee8840a1c0 | 102 | * @} |
einsteingustavo | 0:0dee8840a1c0 | 103 | */ |
einsteingustavo | 0:0dee8840a1c0 | 104 | |
einsteingustavo | 0:0dee8840a1c0 | 105 | /** |
einsteingustavo | 0:0dee8840a1c0 | 106 | * @} |
einsteingustavo | 0:0dee8840a1c0 | 107 | */ |
einsteingustavo | 0:0dee8840a1c0 | 108 | |
einsteingustavo | 0:0dee8840a1c0 | 109 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |
einsteingustavo | 0:0dee8840a1c0 | 110 |