aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal')
-rw-r--r--os/hal/include/hal_i2s.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/os/hal/include/hal_i2s.h b/os/hal/include/hal_i2s.h
index a7ec3b352..5d9e3cc57 100644
--- a/os/hal/include/hal_i2s.h
+++ b/os/hal/include/hal_i2s.h
@@ -129,17 +129,16 @@ typedef enum {
*
* @notapi
*/
-#define _i2s_isr_full_code(i2sp) { \
+#define _i2s_isr_full_code(i2sp) { \
if ((i2sp)->config->end_cb) { \
(i2sp)->state = I2S_COMPLETE; \
(i2sp)->config->end_cb(i2sp, \
(i2sp)->config->size / 2, \
(i2sp)->config->size / 2); \
- if ((i2sp)->state == I2S_COMPLETE) \
- (i2sp)->state = I2S_READY; \
+ if ((i2sp)->state == I2S_COMPLETE) { \
+ (i2sp)->state = I2S_ACTIVE; \
+ } \
} \
- else \
- (i2sp)->state = I2S_READY; \
}
/** @} */