mirror of
https://github.com/78/xiaozhi-esp32.git
synced 2026-02-17 09:28:08 +00:00
* refactor: Remove hardcoded loop delay for GIF playback in LcdDisplay class * chore: Update esp-ml307 and uart-eth-modem component versions in idf_component.yml - Bump esp-ml307 version from ~3.6.3 to ~3.6.4 - Update uart-eth-modem version from ~0.3.1 to ~0.3.2 * feat: Add PrintPmLocks method to SystemInfo class - Introduced PrintPmLocks method to display power management locks using esp_pm_dump_locks. - Updated system_info.h to declare the new method. * refactor: Streamline audio codec initialization and enablement - Removed redundant channel enable checks from AudioCodec::Start. - Added channel enablement in CreateDuplexChannels for various audio codecs. - Implemented EnableInput and EnableOutput methods in NoAudioCodec for better control over input/output states. * refactor: Delay audio success sound playback until after activation completion - Moved the success sound playback to a scheduled task to ensure it occurs after the activation process is complete. - This change improves the responsiveness of the application during activation events. * refactor: Update camera integration from EspVideo to Esp32Camera - Replaced EspVideo with Esp32Camera for improved camera configuration and initialization. - Streamlined camera setup by utilizing a new configuration structure for better clarity and maintainability. - Updated README.md to remove outdated camera sensor configuration instructions. * refactor: Update audio demuxing process in AudioService - Replaced the existing demuxer instance with a local unique pointer in the PlaySound method for better memory management. - Moved the OnDemuxerFinished callback setup into the PlaySound method to ensure it is correctly associated with the new demuxer instance. - Removed the member variable demuxer_ from AudioService to streamline the class structure.
206 lines
6.6 KiB
C++
206 lines
6.6 KiB
C++
#include "es8389_audio_codec.h"
|
|
|
|
#include <esp_log.h>
|
|
|
|
static const char TAG[] = "Es8389AudioCodec";
|
|
|
|
Es8389AudioCodec::Es8389AudioCodec(void* i2c_master_handle, i2c_port_t i2c_port, int input_sample_rate, int output_sample_rate,
|
|
gpio_num_t mclk, gpio_num_t bclk, gpio_num_t ws, gpio_num_t dout, gpio_num_t din,
|
|
gpio_num_t pa_pin, uint8_t es8389_addr, bool use_mclk) {
|
|
duplex_ = true; // 是否双工
|
|
input_reference_ = false; // 是否使用参考输入,实现回声消除
|
|
input_channels_ = 1; // 输入通道数
|
|
input_sample_rate_ = input_sample_rate;
|
|
output_sample_rate_ = output_sample_rate;
|
|
input_gain_ = 40;
|
|
pa_pin_ = pa_pin;
|
|
CreateDuplexChannels(mclk, bclk, ws, dout, din);
|
|
|
|
// Do initialize of related interface: data_if, ctrl_if and gpio_if
|
|
audio_codec_i2s_cfg_t i2s_cfg = {
|
|
.port = I2S_NUM_0,
|
|
.rx_handle = rx_handle_,
|
|
.tx_handle = tx_handle_,
|
|
};
|
|
data_if_ = audio_codec_new_i2s_data(&i2s_cfg);
|
|
assert(data_if_ != NULL);
|
|
|
|
// Output
|
|
audio_codec_i2c_cfg_t i2c_cfg = {
|
|
.port = i2c_port,
|
|
.addr = es8389_addr,
|
|
.bus_handle = i2c_master_handle,
|
|
};
|
|
ctrl_if_ = audio_codec_new_i2c_ctrl(&i2c_cfg);
|
|
assert(ctrl_if_ != NULL);
|
|
|
|
gpio_if_ = audio_codec_new_gpio();
|
|
assert(gpio_if_ != NULL);
|
|
|
|
es8389_codec_cfg_t es8389_cfg = {};
|
|
es8389_cfg.ctrl_if = ctrl_if_;
|
|
es8389_cfg.gpio_if = gpio_if_;
|
|
es8389_cfg.codec_mode = ESP_CODEC_DEV_WORK_MODE_BOTH;
|
|
es8389_cfg.pa_pin = pa_pin;
|
|
es8389_cfg.use_mclk = use_mclk;
|
|
es8389_cfg.hw_gain.pa_voltage = 5.0;
|
|
es8389_cfg.hw_gain.codec_dac_voltage = 3.3;
|
|
codec_if_ = es8389_codec_new(&es8389_cfg);
|
|
|
|
assert(codec_if_ != NULL);
|
|
|
|
esp_codec_dev_cfg_t outdev_cfg = {
|
|
.dev_type = ESP_CODEC_DEV_TYPE_OUT,
|
|
.codec_if = codec_if_,
|
|
.data_if = data_if_,
|
|
};
|
|
output_dev_ = esp_codec_dev_new(&outdev_cfg);
|
|
assert(output_dev_ != NULL);
|
|
|
|
esp_codec_dev_cfg_t indev_cfg = {
|
|
.dev_type = ESP_CODEC_DEV_TYPE_IN,
|
|
.codec_if = codec_if_,
|
|
.data_if = data_if_,
|
|
};
|
|
input_dev_ = esp_codec_dev_new(&indev_cfg);
|
|
assert(input_dev_ != NULL);
|
|
esp_codec_set_disable_when_closed(output_dev_, false);
|
|
esp_codec_set_disable_when_closed(input_dev_, false);
|
|
ESP_LOGI(TAG, "Es8389AudioCodec initialized");
|
|
}
|
|
|
|
Es8389AudioCodec::~Es8389AudioCodec() {
|
|
ESP_ERROR_CHECK(esp_codec_dev_close(output_dev_));
|
|
esp_codec_dev_delete(output_dev_);
|
|
ESP_ERROR_CHECK(esp_codec_dev_close(input_dev_));
|
|
esp_codec_dev_delete(input_dev_);
|
|
|
|
audio_codec_delete_codec_if(codec_if_);
|
|
audio_codec_delete_ctrl_if(ctrl_if_);
|
|
audio_codec_delete_gpio_if(gpio_if_);
|
|
audio_codec_delete_data_if(data_if_);
|
|
}
|
|
|
|
void Es8389AudioCodec::CreateDuplexChannels(gpio_num_t mclk, gpio_num_t bclk, gpio_num_t ws, gpio_num_t dout, gpio_num_t din) {
|
|
assert(input_sample_rate_ == output_sample_rate_);
|
|
|
|
i2s_chan_config_t chan_cfg = {
|
|
.id = I2S_NUM_0,
|
|
.role = I2S_ROLE_MASTER,
|
|
.dma_desc_num = 6,
|
|
.dma_frame_num = 240,
|
|
.auto_clear_after_cb = true,
|
|
.auto_clear_before_cb = false,
|
|
.intr_priority = 0,
|
|
};
|
|
ESP_ERROR_CHECK(i2s_new_channel(&chan_cfg, &tx_handle_, &rx_handle_));
|
|
|
|
i2s_std_config_t std_cfg = {
|
|
.clk_cfg = {
|
|
.sample_rate_hz = (uint32_t)output_sample_rate_,
|
|
.clk_src = I2S_CLK_SRC_DEFAULT,
|
|
.mclk_multiple = I2S_MCLK_MULTIPLE_256,
|
|
#ifdef I2S_HW_VERSION_2
|
|
.ext_clk_freq_hz = 0,
|
|
#endif
|
|
},
|
|
.slot_cfg = {
|
|
.data_bit_width = I2S_DATA_BIT_WIDTH_16BIT,
|
|
.slot_bit_width = I2S_SLOT_BIT_WIDTH_AUTO,
|
|
.slot_mode = I2S_SLOT_MODE_STEREO,
|
|
.slot_mask = I2S_STD_SLOT_BOTH,
|
|
.ws_width = I2S_DATA_BIT_WIDTH_16BIT,
|
|
.ws_pol = false,
|
|
.bit_shift = true,
|
|
.left_align = true,
|
|
.big_endian = false,
|
|
.bit_order_lsb = false
|
|
},
|
|
.gpio_cfg = {
|
|
.mclk = mclk,
|
|
.bclk = bclk,
|
|
.ws = ws,
|
|
.dout = dout,
|
|
.din = din,
|
|
.invert_flags = {
|
|
.mclk_inv = false,
|
|
.bclk_inv = false,
|
|
.ws_inv = false
|
|
}
|
|
}
|
|
};
|
|
|
|
ESP_ERROR_CHECK(i2s_channel_init_std_mode(tx_handle_, &std_cfg));
|
|
ESP_ERROR_CHECK(i2s_channel_init_std_mode(rx_handle_, &std_cfg));
|
|
ESP_ERROR_CHECK(i2s_channel_enable(tx_handle_));
|
|
ESP_ERROR_CHECK(i2s_channel_enable(rx_handle_));
|
|
ESP_LOGI(TAG, "Duplex channels created");
|
|
}
|
|
|
|
void Es8389AudioCodec::SetOutputVolume(int volume) {
|
|
ESP_ERROR_CHECK(esp_codec_dev_set_out_vol(output_dev_, volume));
|
|
AudioCodec::SetOutputVolume(volume);
|
|
}
|
|
|
|
void Es8389AudioCodec::EnableInput(bool enable) {
|
|
std::lock_guard<std::mutex> lock(data_if_mutex_);
|
|
if (enable == input_enabled_) {
|
|
return;
|
|
}
|
|
if (enable) {
|
|
esp_codec_dev_sample_info_t fs = {
|
|
.bits_per_sample = 16,
|
|
.channel = 1,
|
|
.channel_mask = 0,
|
|
.sample_rate = (uint32_t)input_sample_rate_,
|
|
.mclk_multiple = 0,
|
|
};
|
|
ESP_ERROR_CHECK(esp_codec_dev_open(input_dev_, &fs));
|
|
ESP_ERROR_CHECK(esp_codec_dev_set_in_gain(input_dev_, input_gain_));
|
|
} else {
|
|
ESP_ERROR_CHECK(esp_codec_dev_close(input_dev_));
|
|
}
|
|
AudioCodec::EnableInput(enable);
|
|
}
|
|
|
|
void Es8389AudioCodec::EnableOutput(bool enable) {
|
|
std::lock_guard<std::mutex> lock(data_if_mutex_);
|
|
if (enable == output_enabled_) {
|
|
return;
|
|
}
|
|
if (enable) {
|
|
// Play 16bit 1 channel
|
|
esp_codec_dev_sample_info_t fs = {
|
|
.bits_per_sample = 16,
|
|
.channel = 1,
|
|
.channel_mask = 0,
|
|
.sample_rate = (uint32_t)output_sample_rate_,
|
|
.mclk_multiple = 0,
|
|
};
|
|
ESP_ERROR_CHECK(esp_codec_dev_open(output_dev_, &fs));
|
|
ESP_ERROR_CHECK(esp_codec_dev_set_out_vol(output_dev_, output_volume_));
|
|
if (pa_pin_ != GPIO_NUM_NC) {
|
|
gpio_set_level(pa_pin_, 1);
|
|
}
|
|
} else {
|
|
ESP_ERROR_CHECK(esp_codec_dev_close(output_dev_));
|
|
if (pa_pin_ != GPIO_NUM_NC) {
|
|
gpio_set_level(pa_pin_, 0);
|
|
}
|
|
}
|
|
AudioCodec::EnableOutput(enable);
|
|
}
|
|
|
|
int Es8389AudioCodec::Read(int16_t* dest, int samples) {
|
|
if (input_enabled_) {
|
|
ESP_ERROR_CHECK_WITHOUT_ABORT(esp_codec_dev_read(input_dev_, (void*)dest, samples * sizeof(int16_t)));
|
|
}
|
|
return samples;
|
|
}
|
|
|
|
int Es8389AudioCodec::Write(const int16_t* data, int samples) {
|
|
if (output_enabled_) {
|
|
ESP_ERROR_CHECK_WITHOUT_ABORT(esp_codec_dev_write(output_dev_, (void*)data, samples * sizeof(int16_t)));
|
|
}
|
|
return samples;
|
|
} |