Field "uint32_t clk_en: 1;" in file "i2s_struct.h" in esp-idf ?
Posted: Sat Oct 26, 2019 6:56 pm
Hi,
What are the field "uint32_t clk_en: 1;" in file "i2s_struct.h" in esp-idf ?
On "esp32_technical_reference_manual_en", "Register 12.31: I2S_CLKM_CONF_REG (0x00ac)" on page 333, bit 20, don't exist, or better, is marked as reserved.
But i have seen this bit used like:
static i2s_dev_t I2S0;
I2S0.clkm_conf.clk_en = 0; // Disable i2s module clock ????
I2S0.clkm_conf.clk_en = 1; // Enable i2s module clock ????
Does this bit have the function to enable and disable the clock for the i2s module ?
Thank's.
What are the field "uint32_t clk_en: 1;" in file "i2s_struct.h" in esp-idf ?
On "esp32_technical_reference_manual_en", "Register 12.31: I2S_CLKM_CONF_REG (0x00ac)" on page 333, bit 20, don't exist, or better, is marked as reserved.
But i have seen this bit used like:
static i2s_dev_t I2S0;
I2S0.clkm_conf.clk_en = 0; // Disable i2s module clock ????
I2S0.clkm_conf.clk_en = 1; // Enable i2s module clock ????
Does this bit have the function to enable and disable the clock for the i2s module ?
Thank's.