Patched for Audio example - Add status check when DFSDM's filter and channel de-init.

Dependents:   DISCO_F413ZH-AUDIO-demo

The base repository is https://os.mbed.com/teams/ST/code/BSP_DISCO_F413ZH/. I've just added workaround patch for Audio-in demo on DISCO_F413ZH board(Microphone U16, U17)

Committer:
Daniel_Lee
Date:
Fri Jan 31 07:17:05 2020 +0000
Revision:
4:c051317d4051
Parent:
3:42b354f5069c
Patched for Audio example;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
arostm 0:4af3ca173992 1 /**
arostm 0:4af3ca173992 2 ******************************************************************************
arostm 0:4af3ca173992 3 * @file stm32f413H_discovery_psram.h
arostm 0:4af3ca173992 4 * @author MCD Application Team
arostm 0:4af3ca173992 5 * @brief This file contains the common defines and functions prototypes for
arostm 0:4af3ca173992 6 * the stm32f413h_discovery_psram.c driver.
arostm 0:4af3ca173992 7 ******************************************************************************
arostm 0:4af3ca173992 8 * @attention
arostm 0:4af3ca173992 9 *
arostm 0:4af3ca173992 10 * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
arostm 0:4af3ca173992 11 *
arostm 0:4af3ca173992 12 * Redistribution and use in source and binary forms, with or without modification,
arostm 0:4af3ca173992 13 * are permitted provided that the following conditions are met:
arostm 0:4af3ca173992 14 * 1. Redistributions of source code must retain the above copyright notice,
arostm 0:4af3ca173992 15 * this list of conditions and the following disclaimer.
arostm 0:4af3ca173992 16 * 2. Redistributions in binary form must reproduce the above copyright notice,
arostm 0:4af3ca173992 17 * this list of conditions and the following disclaimer in the documentation
arostm 0:4af3ca173992 18 * and/or other materials provided with the distribution.
arostm 0:4af3ca173992 19 * 3. Neither the name of STMicroelectronics nor the names of its contributors
arostm 0:4af3ca173992 20 * may be used to endorse or promote products derived from this software
arostm 0:4af3ca173992 21 * without specific prior written permission.
arostm 0:4af3ca173992 22 *
arostm 0:4af3ca173992 23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
arostm 0:4af3ca173992 24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
arostm 0:4af3ca173992 25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
arostm 0:4af3ca173992 26 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
arostm 0:4af3ca173992 27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
arostm 0:4af3ca173992 28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
arostm 0:4af3ca173992 29 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
arostm 0:4af3ca173992 30 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
arostm 0:4af3ca173992 31 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
arostm 0:4af3ca173992 32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
arostm 0:4af3ca173992 33 *
arostm 0:4af3ca173992 34 ******************************************************************************
arostm 0:4af3ca173992 35 */
arostm 0:4af3ca173992 36
arostm 0:4af3ca173992 37 /* Define to prevent recursive inclusion -------------------------------------*/
arostm 0:4af3ca173992 38 #ifndef __STM32F413H_DISCOVERY_PSRAM_H
arostm 0:4af3ca173992 39 #define __STM32F413H_DISCOVERY_PSRAM_H
arostm 0:4af3ca173992 40
arostm 0:4af3ca173992 41 #ifdef __cplusplus
arostm 0:4af3ca173992 42 extern "C" {
arostm 0:4af3ca173992 43 #endif
arostm 0:4af3ca173992 44
arostm 0:4af3ca173992 45 /* Includes ------------------------------------------------------------------*/
arostm 0:4af3ca173992 46 #include "stm32f4xx_hal.h"
arostm 0:4af3ca173992 47
arostm 0:4af3ca173992 48 /** @addtogroup BSP
arostm 0:4af3ca173992 49 * @{
arostm 0:4af3ca173992 50 */
arostm 0:4af3ca173992 51
arostm 0:4af3ca173992 52 /** @addtogroup STM32F413H_DISCOVERY
arostm 0:4af3ca173992 53 * @{
arostm 0:4af3ca173992 54 */
arostm 0:4af3ca173992 55
arostm 0:4af3ca173992 56 /** @addtogroup STM32F413H_DISCOVERY_PSRAM
arostm 0:4af3ca173992 57 * @{
arostm 0:4af3ca173992 58 */
arostm 0:4af3ca173992 59
arostm 0:4af3ca173992 60 /** @defgroup STM32F413H_DISCOVERY_PSRAM_Exported_Constants STM32F413H DISCOVERY PSRAM Exported Constants
arostm 0:4af3ca173992 61 * @{
arostm 0:4af3ca173992 62 */
arostm 0:4af3ca173992 63
arostm 0:4af3ca173992 64 /**
arostm 0:4af3ca173992 65 * @brief PSRAM status structure definition
arostm 0:4af3ca173992 66 */
arostm 0:4af3ca173992 67 #define PSRAM_OK ((uint8_t)0x00)
arostm 0:4af3ca173992 68 #define PSRAM_ERROR ((uint8_t)0x01)
arostm 0:4af3ca173992 69
arostm 0:4af3ca173992 70 #define PSRAM_DEVICE_ADDR ((uint32_t)0x60000000)
arostm 0:4af3ca173992 71 #define PSRAM_DEVICE_SIZE ((uint32_t)0x80000) /* SRAM device size in Bytes */
arostm 0:4af3ca173992 72
arostm 0:4af3ca173992 73 #define PSRAM_MEMORY_WIDTH FSMC_NORSRAM_MEM_BUS_WIDTH_16
arostm 0:4af3ca173992 74 #define PSRAM_BURSTACCESS FSMC_BURST_ACCESS_MODE_DISABLE
arostm 0:4af3ca173992 75 #define PSRAM_WRITEBURST FSMC_WRITE_BURST_DISABLE
arostm 0:4af3ca173992 76 #define CONTINUOUSCLOCK_FEATURE FSMC_CONTINUOUS_CLOCK_SYNC_ONLY
arostm 0:4af3ca173992 77
arostm 0:4af3ca173992 78 /* DMA definitions for SRAM DMA transfer */
arostm 0:4af3ca173992 79 #define PSRAM_DMAx_CLK_ENABLE __HAL_RCC_DMA2_CLK_ENABLE
arostm 0:4af3ca173992 80 #define PSRAM_DMAx_CLK_DISABLE __HAL_RCC_DMA2_CLK_DISABLE
arostm 0:4af3ca173992 81 #define PSRAM_DMAx_CHANNEL DMA_CHANNEL_0
arostm 0:4af3ca173992 82 #define PSRAM_DMAx_STREAM DMA2_Stream5
arostm 0:4af3ca173992 83 #define PSRAM_DMAx_IRQn DMA2_Stream5_IRQn
arostm 0:4af3ca173992 84 #define BSP_PSRAM_DMA_IRQHandler DMA2_Stream5_IRQHandler
arostm 0:4af3ca173992 85
arostm 0:4af3ca173992 86 /**
arostm 0:4af3ca173992 87 * @}
arostm 0:4af3ca173992 88 */
arostm 0:4af3ca173992 89
arostm 0:4af3ca173992 90 /** @defgroup STM32F413H_DISCOVERY_PSRAM_Exported_Functions STM32F413H DISCOVERY PSRAM Exported Functions
arostm 0:4af3ca173992 91 * @{
arostm 0:4af3ca173992 92 */
arostm 0:4af3ca173992 93 uint8_t BSP_PSRAM_Init(void);
arostm 0:4af3ca173992 94 uint8_t BSP_PSRAM_DeInit(void);
arostm 0:4af3ca173992 95 uint8_t BSP_PSRAM_ReadData(uint32_t uwStartAddress, uint16_t *pData, uint32_t uwDataSize);
arostm 0:4af3ca173992 96 uint8_t BSP_PSRAM_ReadData_DMA(uint32_t uwStartAddress, uint16_t *pData, uint32_t uwDataSize);
arostm 0:4af3ca173992 97 uint8_t BSP_PSRAM_WriteData(uint32_t uwStartAddress, uint16_t *pData, uint32_t uwDataSize);
arostm 0:4af3ca173992 98 uint8_t BSP_PSRAM_WriteData_DMA(uint32_t uwStartAddress, uint16_t *pData, uint32_t uwDataSize);
arostm 0:4af3ca173992 99
arostm 0:4af3ca173992 100 /* These functions can be modified in case the current settings (e.g. DMA stream)
arostm 0:4af3ca173992 101 need to be changed for specific application needs */
arostm 0:4af3ca173992 102 void BSP_PSRAM_MspInit(SRAM_HandleTypeDef *hsram, void *Params);
arostm 0:4af3ca173992 103 void BSP_PSRAM_MspDeInit(SRAM_HandleTypeDef *hsram, void *Params);
arostm 0:4af3ca173992 104
arostm 0:4af3ca173992 105 /**
arostm 0:4af3ca173992 106 * @}
arostm 0:4af3ca173992 107 */
arostm 0:4af3ca173992 108
arostm 0:4af3ca173992 109 /**
arostm 0:4af3ca173992 110 * @}
arostm 0:4af3ca173992 111 */
arostm 0:4af3ca173992 112
arostm 0:4af3ca173992 113 /**
arostm 0:4af3ca173992 114 * @}
arostm 0:4af3ca173992 115 */
arostm 0:4af3ca173992 116
arostm 0:4af3ca173992 117 /**
arostm 0:4af3ca173992 118 * @}
arostm 0:4af3ca173992 119 */
arostm 0:4af3ca173992 120
arostm 0:4af3ca173992 121 #ifdef __cplusplus
arostm 0:4af3ca173992 122 }
arostm 0:4af3ca173992 123 #endif
arostm 0:4af3ca173992 124
arostm 0:4af3ca173992 125 #endif /* __STM32F413H_DISCOVERY_PSRAM_H */
arostm 0:4af3ca173992 126
arostm 0:4af3ca173992 127 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/