Merge branch 'bugfix/i2s_dac_channel' into 'master'

fix(i2s_dac): fix the disable function which only disables DAC_CHANNEL_1.

See merge request !1169
This commit is contained in:
Ivan Grokhotkov 2017-08-31 10:45:30 +08:00
commit 1cfe96b1d7

View file

@ -537,7 +537,7 @@ esp_err_t i2s_set_dac_mode(i2s_dac_mode_t dac_mode)
I2S_CHECK((dac_mode < I2S_DAC_CHANNEL_MAX), "i2s dac mode error", ESP_ERR_INVALID_ARG);
if(dac_mode == I2S_DAC_CHANNEL_DISABLE) {
dac_output_disable(DAC_CHANNEL_1);
dac_output_disable(DAC_CHANNEL_1);
dac_output_disable(DAC_CHANNEL_2);
dac_i2s_disable();
} else {
dac_i2s_enable();