From 588857fef81ccb980c64b6dec0ef3cd5241aef88 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Tue, 22 Aug 2023 13:39:40 +1000 Subject: [PATCH] good idea to unmute the dac! --- src/drivers/i2s_dac.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/drivers/i2s_dac.cpp b/src/drivers/i2s_dac.cpp index 679c40b2..4fe939f5 100644 --- a/src/drivers/i2s_dac.cpp +++ b/src/drivers/i2s_dac.cpp @@ -117,6 +117,7 @@ auto I2SDac::Start() -> void { vTaskDelay(pdMS_TO_TICKS(1)); // FIXME: Pull the amp's EN pin here. + wm8523::WriteRegister(wm8523::Register::kPsCtrl, 0b11); i2s_active_ = true; }