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.
Fork of BSP_DISCO_F746NG by
Revision 3:4e3ffffb40a1, committed 2016-09-30
- Comitter:
- maanenson
- Date:
- Fri Sep 30 13:29:32 2016 +0000
- Parent:
- 2:458ab1edf6b2
- Commit message:
- Had to comment out these lines to properly compile without errors.; ; ;
Changed in this revision
stm32746g_discovery_audio.c | Show annotated file Show diff for this revision Revisions of this file |
--- a/stm32746g_discovery_audio.c Thu Mar 24 20:50:59 2016 +0000 +++ b/stm32746g_discovery_audio.c Fri Sep 30 13:29:32 2016 +0000 @@ -489,13 +489,13 @@ /* Determines if it is an audio out or audio in error */ if ((audio_out_state == HAL_SAI_STATE_BUSY) || (audio_out_state == HAL_SAI_STATE_BUSY_TX) - || (audio_out_state == HAL_SAI_STATE_TIMEOUT) || (audio_out_state == HAL_SAI_STATE_ERROR)) + /*|| (audio_out_state == HAL_SAI_STATE_TIMEOUT) || (audio_out_state == HAL_SAI_STATE_ERROR) */ ) { BSP_AUDIO_OUT_Error_CallBack(); } if ((audio_in_state == HAL_SAI_STATE_BUSY) || (audio_in_state == HAL_SAI_STATE_BUSY_RX) - || (audio_in_state == HAL_SAI_STATE_TIMEOUT) || (audio_in_state == HAL_SAI_STATE_ERROR)) + /*|| (audio_in_state == HAL_SAI_STATE_TIMEOUT) || (audio_in_state == HAL_SAI_STATE_ERROR)*/ ) { BSP_AUDIO_IN_Error_CallBack(); }