X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fi2s.h;h=ed5fb83b9254cacff5cdae5ee42d0f9eed11e65a;hb=8d61ce9ad06dfab65c2719f4d1c7cfecc55dbb07;hp=73768c3131581898d8c2c330424e241a24b9f52d;hpb=b42a8bd9e19d221e7ede7455c2f6979595307d89;p=bertos.git diff --git a/bertos/drv/i2s.h b/bertos/drv/i2s.h index 73768c31..ed5fb83b 100644 --- a/bertos/drv/i2s.h +++ b/bertos/drv/i2s.h @@ -162,7 +162,6 @@ INLINE void i2s_dmaTxStop(I2s *i2s) i2s->ctx.tx_stop(i2s); } - INLINE void i2s_dmaStartRxStreaming(I2s *i2s, void *buf, size_t len, size_t slice_len, i2s_dma_callback_t callback) { ASSERT(i2s->ctx.rx_start); @@ -174,8 +173,6 @@ INLINE void i2s_dmaStartRxStreaming(I2s *i2s, void *buf, size_t len, size_t slic i2s->ctx.rx_start(i2s, buf, len, slice_len); } - - INLINE void i2s_dmaRxStop(I2s *i2s) { ASSERT(i2s->ctx.rx_stop);