From 451392ad8487163e9206b7db4ce6414401ad6066 Mon Sep 17 00:00:00 2001 From: pschatzmann Date: Wed, 8 Jan 2025 11:24:06 +0100 Subject: [PATCH] I2SDriverRP2040 getOverUnderflow() --- src/AudioTools/CoreAudio/AudioI2S/I2SRP2040.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/AudioTools/CoreAudio/AudioI2S/I2SRP2040.h b/src/AudioTools/CoreAudio/AudioI2S/I2SRP2040.h index f53863801..399ef9881 100644 --- a/src/AudioTools/CoreAudio/AudioI2S/I2SRP2040.h +++ b/src/AudioTools/CoreAudio/AudioI2S/I2SRP2040.h @@ -196,6 +196,10 @@ class I2SDriverRP2040 { void flush() { i2s.flush(); } + bool getOverUnderflow() { + return i2s.getOverUnderflow() ; + } + protected: I2SConfigStd cfg; I2S i2s;