M Aanenson / BSP_DISCO_F746NG

Fork of BSP_DISCO_F746NG by ST

Files at this revision

API Documentation at this revision

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();
   }