mbed library sources

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Fri Nov 07 15:45:07 2014 +0000
Revision:
394:83f921546702
Parent:
targets/cmsis/TARGET_STM/TARGET_NUCLEO_L152RE/stm32l1xx_hal_cryp_ex.c@354:e67efb2aab0e
Synchronized with git revision aab52cb7ec5a665869e507dd988bbfd55b7e087e

Full URL: https://github.com/mbedmicro/mbed/commit/aab52cb7ec5a665869e507dd988bbfd55b7e087e/

Tests: Fix cpputest testrunner

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 354:e67efb2aab0e 1 /**
mbed_official 354:e67efb2aab0e 2 ******************************************************************************
mbed_official 354:e67efb2aab0e 3 * @file stm32l1xx_hal_cryp_ex.c
mbed_official 354:e67efb2aab0e 4 * @author MCD Application Team
mbed_official 354:e67efb2aab0e 5 * @version V1.0.0
mbed_official 354:e67efb2aab0e 6 * @date 5-September-2014
mbed_official 354:e67efb2aab0e 7 * @brief CRYPEx HAL module driver.
mbed_official 354:e67efb2aab0e 8 *
mbed_official 354:e67efb2aab0e 9 * This file provides firmware functions to manage the following
mbed_official 354:e67efb2aab0e 10 * functionalities of the Cryptography (CRYP) extension peripheral:
mbed_official 354:e67efb2aab0e 11 * + Computation completed callback.
mbed_official 354:e67efb2aab0e 12 *
mbed_official 354:e67efb2aab0e 13 ******************************************************************************
mbed_official 354:e67efb2aab0e 14 * @attention
mbed_official 354:e67efb2aab0e 15 *
mbed_official 354:e67efb2aab0e 16 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
mbed_official 354:e67efb2aab0e 17 *
mbed_official 354:e67efb2aab0e 18 * Redistribution and use in source and binary forms, with or without modification,
mbed_official 354:e67efb2aab0e 19 * are permitted provided that the following conditions are met:
mbed_official 354:e67efb2aab0e 20 * 1. Redistributions of source code must retain the above copyright notice,
mbed_official 354:e67efb2aab0e 21 * this list of conditions and the following disclaimer.
mbed_official 354:e67efb2aab0e 22 * 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 354:e67efb2aab0e 23 * this list of conditions and the following disclaimer in the documentation
mbed_official 354:e67efb2aab0e 24 * and/or other materials provided with the distribution.
mbed_official 354:e67efb2aab0e 25 * 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 354:e67efb2aab0e 26 * may be used to endorse or promote products derived from this software
mbed_official 354:e67efb2aab0e 27 * without specific prior written permission.
mbed_official 354:e67efb2aab0e 28 *
mbed_official 354:e67efb2aab0e 29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 354:e67efb2aab0e 30 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 354:e67efb2aab0e 31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 354:e67efb2aab0e 32 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 354:e67efb2aab0e 33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 354:e67efb2aab0e 34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 354:e67efb2aab0e 35 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 354:e67efb2aab0e 36 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 354:e67efb2aab0e 37 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 354:e67efb2aab0e 38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 354:e67efb2aab0e 39 *
mbed_official 354:e67efb2aab0e 40 ******************************************************************************
mbed_official 354:e67efb2aab0e 41 */
mbed_official 354:e67efb2aab0e 42
mbed_official 354:e67efb2aab0e 43 /* Includes ------------------------------------------------------------------*/
mbed_official 354:e67efb2aab0e 44 #include "stm32l1xx_hal.h"
mbed_official 354:e67efb2aab0e 45
mbed_official 354:e67efb2aab0e 46 #ifdef HAL_CRYP_MODULE_ENABLED
mbed_official 354:e67efb2aab0e 47
mbed_official 354:e67efb2aab0e 48 /** @addtogroup STM32L1xx_HAL_Driver
mbed_official 354:e67efb2aab0e 49 * @{
mbed_official 354:e67efb2aab0e 50 */
mbed_official 354:e67efb2aab0e 51
mbed_official 354:e67efb2aab0e 52 /** @defgroup CRYPEx CRYPEx
mbed_official 354:e67efb2aab0e 53 * @brief CRYP HAL Extended module driver.
mbed_official 354:e67efb2aab0e 54 * @{
mbed_official 354:e67efb2aab0e 55 */
mbed_official 354:e67efb2aab0e 56
mbed_official 354:e67efb2aab0e 57 #if defined(STM32L162xC) || defined(STM32L162xCA) || defined(STM32L162xD) || defined(STM32L162xE)
mbed_official 354:e67efb2aab0e 58
mbed_official 354:e67efb2aab0e 59 /* Private typedef -----------------------------------------------------------*/
mbed_official 354:e67efb2aab0e 60 /* Private define ------------------------------------------------------------*/
mbed_official 354:e67efb2aab0e 61 /* Private macro -------------------------------------------------------------*/
mbed_official 354:e67efb2aab0e 62 /* Private variables ---------------------------------------------------------*/
mbed_official 354:e67efb2aab0e 63 /* Private function prototypes -----------------------------------------------*/
mbed_official 354:e67efb2aab0e 64 /* Private functions ---------------------------------------------------------*/
mbed_official 354:e67efb2aab0e 65
mbed_official 354:e67efb2aab0e 66 /** @defgroup CRYPEx_Exported_Functions CRYPEx Exported Functions
mbed_official 354:e67efb2aab0e 67 * @{
mbed_official 354:e67efb2aab0e 68 */
mbed_official 354:e67efb2aab0e 69
mbed_official 354:e67efb2aab0e 70
mbed_official 354:e67efb2aab0e 71 /** @defgroup CRYPEx_Exported_Functions_Group1 Extended features functions
mbed_official 354:e67efb2aab0e 72 * @brief Extended features functions.
mbed_official 354:e67efb2aab0e 73 *
mbed_official 354:e67efb2aab0e 74 @verbatim
mbed_official 354:e67efb2aab0e 75 ===============================================================================
mbed_official 354:e67efb2aab0e 76 ##### Extended features functions #####
mbed_official 354:e67efb2aab0e 77 ===============================================================================
mbed_official 354:e67efb2aab0e 78 [..] This section provides callback functions:
mbed_official 354:e67efb2aab0e 79 (+) Computation completed.
mbed_official 354:e67efb2aab0e 80
mbed_official 354:e67efb2aab0e 81 @endverbatim
mbed_official 354:e67efb2aab0e 82 * @{
mbed_official 354:e67efb2aab0e 83 */
mbed_official 354:e67efb2aab0e 84
mbed_official 354:e67efb2aab0e 85 /**
mbed_official 354:e67efb2aab0e 86 * @brief Computation completed callbacks.
mbed_official 354:e67efb2aab0e 87 * @param hcryp: pointer to a CRYP_HandleTypeDef structure that contains
mbed_official 354:e67efb2aab0e 88 * the configuration information for CRYP module
mbed_official 354:e67efb2aab0e 89 * @retval None
mbed_official 354:e67efb2aab0e 90 */
mbed_official 354:e67efb2aab0e 91 __weak void HAL_CRYPEx_ComputationCpltCallback(CRYP_HandleTypeDef *hcryp)
mbed_official 354:e67efb2aab0e 92 {
mbed_official 354:e67efb2aab0e 93 /* NOTE : This function Should not be modified, when the callback is needed,
mbed_official 354:e67efb2aab0e 94 the HAL_CRYP_ComputationCpltCallback could be implemented in the user file
mbed_official 354:e67efb2aab0e 95 */
mbed_official 354:e67efb2aab0e 96 }
mbed_official 354:e67efb2aab0e 97
mbed_official 354:e67efb2aab0e 98 /**
mbed_official 354:e67efb2aab0e 99 * @}
mbed_official 354:e67efb2aab0e 100 */
mbed_official 354:e67efb2aab0e 101
mbed_official 354:e67efb2aab0e 102
mbed_official 354:e67efb2aab0e 103 /**
mbed_official 354:e67efb2aab0e 104 * @}
mbed_official 354:e67efb2aab0e 105 */
mbed_official 354:e67efb2aab0e 106
mbed_official 354:e67efb2aab0e 107 #endif /* STM32L162xC || STM32L162xCA || STM32L162xD || STM32L162xE*/
mbed_official 354:e67efb2aab0e 108
mbed_official 354:e67efb2aab0e 109 /**
mbed_official 354:e67efb2aab0e 110 * @}
mbed_official 354:e67efb2aab0e 111 */
mbed_official 354:e67efb2aab0e 112
mbed_official 354:e67efb2aab0e 113 /**
mbed_official 354:e67efb2aab0e 114 * @}
mbed_official 354:e67efb2aab0e 115 */
mbed_official 354:e67efb2aab0e 116
mbed_official 354:e67efb2aab0e 117 #endif /* HAL_CRYP_MODULE_ENABLED */
mbed_official 354:e67efb2aab0e 118 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/