Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: DISCO-F746NG_LCDTS_CC3000_NTP DISCO-F746NG_ROPE_WIFI F746_SpectralAnalysis_NoPhoto ecte433 ... more
Revision 4:8603c9675405, committed 2016-11-09
- Comitter:
- bcostm
- Date:
- Wed Nov 09 18:04:44 2016 +0100
- Parent:
- 3:8ae03419c0f3
- Child:
- 5:5a395e126678
- Commit message:
- Add MBED comments
Changed in this revision
| stm32746g_discovery.h | Show annotated file Show diff for this revision Revisions of this file |
| stm32746g_discovery_audio.c | Show annotated file Show diff for this revision Revisions of this file |
--- a/stm32746g_discovery.h Tue Nov 08 10:22:32 2016 +0000
+++ b/stm32746g_discovery.h Wed Nov 09 18:04:44 2016 +0100
@@ -46,7 +46,7 @@
/* Includes ------------------------------------------------------------------*/
#include "stm32f7xx_hal.h"
-#include "cmsis_nvic.h"
+#include "cmsis_nvic.h" // MBED
/** @addtogroup BSP
* @{
--- a/stm32746g_discovery_audio.c Tue Nov 08 10:22:32 2016 +0000
+++ b/stm32746g_discovery_audio.c Wed Nov 09 18:04:44 2016 +0100
@@ -147,9 +147,9 @@
/** @defgroup STM32746G_DISCOVERY_AUDIO_Private_Function_Prototypes STM32746G_DISCOVERY AUDIO Private Function Prototypes
* @{
*/
-static void AUDIO_IN_INT_IRQHandler(void);
-static void AUDIO_IN_SAIx_DMAx_IRQHandler(void);
-static void AUDIO_OUT_SAIx_DMAx_IRQHandler(void);
+static void AUDIO_IN_INT_IRQHandler(void); // MBED
+static void AUDIO_IN_SAIx_DMAx_IRQHandler(void); // MBED
+static void AUDIO_OUT_SAIx_DMAx_IRQHandler(void); // MBED
static void SAIx_Out_Init(uint32_t AudioFreq);
static void SAIx_Out_DeInit(void);
static void SAIx_In_Init(uint32_t SaiOutMode, uint32_t SlotActive, uint32_t AudioFreq);
@@ -1371,6 +1371,7 @@
HAL_SAI_DeInit(&haudio_in_sai);
}
+#if ( __MBED__ == 1)
/**
* @brief This function handles External line 15_10 interrupt request.
* @param None
@@ -1404,6 +1405,7 @@
{
HAL_DMA_IRQHandler(haudio_out_sai.hdmatx);
}
+#endif
/**
* @}