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)
Diff: Drivers/BSP/STM32F413H-Discovery/stm32f413h_discovery.c
- Revision:
- 3:42b354f5069c
- Parent:
- 0:4af3ca173992
--- a/Drivers/BSP/STM32F413H-Discovery/stm32f413h_discovery.c Tue May 23 11:03:57 2017 +0200
+++ b/Drivers/BSP/STM32F413H-Discovery/stm32f413h_discovery.c Wed Feb 28 14:35:04 2018 +0100
@@ -2,8 +2,6 @@
******************************************************************************
* @file stm32f413h_discovery.c
* @author MCD Application Team
- * @version V1.0.0
- * @date 27-January-2017
* @brief This file provides a set of firmware functions to manage LEDs,
* push-buttons and COM ports available on STM32F413H-DISCOVERY board
* (MB1209) from STMicroelectronics.
@@ -69,11 +67,11 @@
* @{
*/
/**
- * @brief STM32F413H DISCOVERY BSP Driver version number V1.0.0
+ * @brief STM32F413H DISCOVERY BSP Driver version number V1.0.1
*/
#define __STM32F413H_DISCOVERY_BSP_VERSION_MAIN (0x01) /*!< [31:24] main version */
#define __STM32F413H_DISCOVERY_BSP_VERSION_SUB1 (0x00) /*!< [23:16] sub1 version */
-#define __STM32F413H_DISCOVERY_BSP_VERSION_SUB2 (0x00) /*!< [15:8] sub2 version */
+#define __STM32F413H_DISCOVERY_BSP_VERSION_SUB2 (0x01) /*!< [15:8] sub2 version */
#define __STM32F413H_DISCOVERY_BSP_VERSION_RC (0x00) /*!< [7:0] release candidate */
#define __STM32F413H_DISCOVERY_BSP_VERSION ((__STM32F413H_DISCOVERY_BSP_VERSION_MAIN << 24)\
|(__STM32F413H_DISCOVERY_BSP_VERSION_SUB1 << 16)\
Daniel Lee