fix(i2s): suplimemt of c61 i2s ll

This commit is contained in:
laokaiyao
2024-10-30 16:05:35 +08:00
committed by Kevin (Lao Kaiyao)
parent 24a6994471
commit 76d87acd59
4 changed files with 118 additions and 35 deletions

View File

@@ -13,7 +13,6 @@
#pragma once
#include <stdbool.h>
#include "sdkconfig.h"
#include "hal/misc.h"
#include "hal/assert.h"
#include "soc/i2s_periph.h"
@@ -154,7 +153,7 @@ static inline void i2s_ll_rx_disable_clock(i2s_dev_t *hw)
static inline void i2s_ll_mclk_bind_to_tx_clk(i2s_dev_t *hw)
{
(void)hw;
PCR.i2s_rx_clkm_conf.i2s_mclk_sel = 0; // TODO: need check
PCR.i2s_rx_clkm_conf.i2s_mclk_sel = 0;
}
/**