meh

Fork of mbed by mbed official

Committer:
Kojto
Date:
Wed May 13 08:08:21 2015 +0200
Revision:
99:dbbf35b96557
Parent:
92:4fc01daae5a5
Child:
106:ba1f97679dad
Release 99 of the mbed library

Changes:
- new targets - MAXWSNENV, DISCO_L053C8
- STM32F4xx - ST Cube driver
- KSDK mcu - SPI timing fix
- Nordic - update to softdevice s130

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 89:552587b429a1 1 /**
bogdanm 89:552587b429a1 2 ******************************************************************************
bogdanm 89:552587b429a1 3 * @file stm32f4xx_hal_dma_ex.h
bogdanm 89:552587b429a1 4 * @author MCD Application Team
Kojto 99:dbbf35b96557 5 * @version V1.3.0
Kojto 99:dbbf35b96557 6 * @date 09-March-2015
bogdanm 89:552587b429a1 7 * @brief Header file of DMA HAL extension module.
bogdanm 89:552587b429a1 8 ******************************************************************************
bogdanm 89:552587b429a1 9 * @attention
bogdanm 89:552587b429a1 10 *
Kojto 99:dbbf35b96557 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
bogdanm 89:552587b429a1 12 *
bogdanm 89:552587b429a1 13 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 89:552587b429a1 14 * are permitted provided that the following conditions are met:
bogdanm 89:552587b429a1 15 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 89:552587b429a1 16 * this list of conditions and the following disclaimer.
bogdanm 89:552587b429a1 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 89:552587b429a1 18 * this list of conditions and the following disclaimer in the documentation
bogdanm 89:552587b429a1 19 * and/or other materials provided with the distribution.
bogdanm 89:552587b429a1 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 89:552587b429a1 21 * may be used to endorse or promote products derived from this software
bogdanm 89:552587b429a1 22 * without specific prior written permission.
bogdanm 89:552587b429a1 23 *
bogdanm 89:552587b429a1 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 89:552587b429a1 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 89:552587b429a1 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 89:552587b429a1 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 89:552587b429a1 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 89:552587b429a1 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 89:552587b429a1 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 89:552587b429a1 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 89:552587b429a1 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 89:552587b429a1 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 89:552587b429a1 34 *
bogdanm 89:552587b429a1 35 ******************************************************************************
bogdanm 89:552587b429a1 36 */
bogdanm 89:552587b429a1 37
bogdanm 89:552587b429a1 38 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 89:552587b429a1 39 #ifndef __STM32F4xx_HAL_DMA_EX_H
bogdanm 89:552587b429a1 40 #define __STM32F4xx_HAL_DMA_EX_H
bogdanm 89:552587b429a1 41
bogdanm 89:552587b429a1 42 #ifdef __cplusplus
bogdanm 89:552587b429a1 43 extern "C" {
bogdanm 89:552587b429a1 44 #endif
bogdanm 89:552587b429a1 45
bogdanm 89:552587b429a1 46 /* Includes ------------------------------------------------------------------*/
bogdanm 89:552587b429a1 47 #include "stm32f4xx_hal_def.h"
bogdanm 89:552587b429a1 48
bogdanm 89:552587b429a1 49 /** @addtogroup STM32F4xx_HAL_Driver
bogdanm 89:552587b429a1 50 * @{
bogdanm 89:552587b429a1 51 */
bogdanm 89:552587b429a1 52
bogdanm 89:552587b429a1 53 /** @addtogroup DMAEx
bogdanm 89:552587b429a1 54 * @{
bogdanm 89:552587b429a1 55 */
bogdanm 89:552587b429a1 56
bogdanm 89:552587b429a1 57 /* Exported types ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 58 /** @defgroup DMAEx_Exported_Types DMAEx Exported Types
Kojto 99:dbbf35b96557 59 * @brief DMAEx Exported types
Kojto 99:dbbf35b96557 60 * @{
Kojto 99:dbbf35b96557 61 */
Kojto 99:dbbf35b96557 62
bogdanm 89:552587b429a1 63 /**
bogdanm 89:552587b429a1 64 * @brief HAL DMA Memory definition
bogdanm 89:552587b429a1 65 */
bogdanm 89:552587b429a1 66 typedef enum
bogdanm 89:552587b429a1 67 {
bogdanm 89:552587b429a1 68 MEMORY0 = 0x00, /*!< Memory 0 */
bogdanm 89:552587b429a1 69 MEMORY1 = 0x01, /*!< Memory 1 */
bogdanm 89:552587b429a1 70
bogdanm 89:552587b429a1 71 }HAL_DMA_MemoryTypeDef;
bogdanm 89:552587b429a1 72
Kojto 99:dbbf35b96557 73 /**
Kojto 99:dbbf35b96557 74 * @}
Kojto 99:dbbf35b96557 75 */
bogdanm 89:552587b429a1 76
bogdanm 89:552587b429a1 77 /* Exported functions --------------------------------------------------------*/
Kojto 99:dbbf35b96557 78 /** @defgroup DMAEx_Exported_Functions DMAEx Exported Functions
Kojto 99:dbbf35b96557 79 * @brief DMAEx Exported functions
Kojto 99:dbbf35b96557 80 * @{
Kojto 99:dbbf35b96557 81 */
Kojto 99:dbbf35b96557 82
Kojto 99:dbbf35b96557 83 /** @defgroup DMAEx_Exported_Functions_Group1 Extended features functions
Kojto 99:dbbf35b96557 84 * @brief Extended features functions
Kojto 99:dbbf35b96557 85 * @{
Kojto 99:dbbf35b96557 86 */
Kojto 99:dbbf35b96557 87
bogdanm 89:552587b429a1 88 /* IO operation functions *******************************************************/
bogdanm 89:552587b429a1 89 HAL_StatusTypeDef HAL_DMAEx_MultiBufferStart(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t SecondMemAddress, uint32_t DataLength);
bogdanm 89:552587b429a1 90 HAL_StatusTypeDef HAL_DMAEx_MultiBufferStart_IT(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t SecondMemAddress, uint32_t DataLength);
bogdanm 89:552587b429a1 91 HAL_StatusTypeDef HAL_DMAEx_ChangeMemory(DMA_HandleTypeDef *hdma, uint32_t Address, HAL_DMA_MemoryTypeDef memory);
bogdanm 89:552587b429a1 92
bogdanm 89:552587b429a1 93 /**
bogdanm 89:552587b429a1 94 * @}
bogdanm 89:552587b429a1 95 */
Kojto 99:dbbf35b96557 96 /**
Kojto 99:dbbf35b96557 97 * @}
Kojto 99:dbbf35b96557 98 */
Kojto 99:dbbf35b96557 99
Kojto 99:dbbf35b96557 100 /* Private functions ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 101 /** @defgroup DMAEx_Private_Functions DMAEx Private Functions
Kojto 99:dbbf35b96557 102 * @brief DMAEx Private functions
Kojto 99:dbbf35b96557 103 * @{
Kojto 99:dbbf35b96557 104 */
Kojto 99:dbbf35b96557 105 /**
Kojto 99:dbbf35b96557 106 * @}
Kojto 99:dbbf35b96557 107 */
Kojto 99:dbbf35b96557 108
Kojto 99:dbbf35b96557 109 /**
Kojto 99:dbbf35b96557 110 * @}
Kojto 99:dbbf35b96557 111 */
bogdanm 89:552587b429a1 112
bogdanm 89:552587b429a1 113 /**
bogdanm 89:552587b429a1 114 * @}
bogdanm 89:552587b429a1 115 */
bogdanm 89:552587b429a1 116
bogdanm 89:552587b429a1 117 #ifdef __cplusplus
bogdanm 89:552587b429a1 118 }
bogdanm 89:552587b429a1 119 #endif
bogdanm 89:552587b429a1 120
Kojto 99:dbbf35b96557 121 #endif /*__STM32F4xx_HAL_DMA_EX_H*/
bogdanm 89:552587b429a1 122
bogdanm 89:552587b429a1 123 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/