You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
5.1 KiB
146 lines
5.1 KiB
#include "tcircles3_audio_codec.h"
|
|
|
|
#include <esp_log.h>
|
|
#include <driver/i2c_master.h>
|
|
#include <driver/i2s_tdm.h>
|
|
|
|
static const char TAG[] = "Tcircles3AudioCodec";
|
|
|
|
Tcircles3AudioCodec::Tcircles3AudioCodec(int input_sample_rate, int output_sample_rate,
|
|
gpio_num_t mic_bclk, gpio_num_t mic_ws, gpio_num_t mic_data,
|
|
gpio_num_t spkr_bclk, gpio_num_t spkr_lrclk, gpio_num_t spkr_data,
|
|
bool input_reference) {
|
|
duplex_ = true; // 是否双工
|
|
input_reference_ = input_reference; // 是否使用参考输入,实现回声消除
|
|
input_channels_ = input_reference_ ? 2 : 1; // 输入通道数
|
|
input_sample_rate_ = input_sample_rate;
|
|
output_sample_rate_ = output_sample_rate;
|
|
|
|
CreateVoiceHardware(mic_bclk, mic_ws, mic_data, spkr_bclk, spkr_lrclk, spkr_data);
|
|
|
|
gpio_config_t config;
|
|
config.pin_bit_mask = BIT64(45);
|
|
config.mode = GPIO_MODE_OUTPUT;
|
|
config.pull_up_en = GPIO_PULLUP_DISABLE;
|
|
config.pull_down_en = GPIO_PULLDOWN_ENABLE;
|
|
config.intr_type = GPIO_INTR_DISABLE;
|
|
#if SOC_GPIO_SUPPORT_PIN_HYS_FILTER
|
|
config.hys_ctrl_mode = GPIO_HYS_SOFT_ENABLE;
|
|
#endif
|
|
gpio_config(&config);
|
|
gpio_set_level(gpio_num_t(45), 0);
|
|
ESP_LOGI(TAG, "Tcircles3AudioCodec initialized");
|
|
}
|
|
|
|
Tcircles3AudioCodec::~Tcircles3AudioCodec() {
|
|
audio_codec_delete_codec_if(in_codec_if_);
|
|
audio_codec_delete_ctrl_if(in_ctrl_if_);
|
|
audio_codec_delete_codec_if(out_codec_if_);
|
|
audio_codec_delete_ctrl_if(out_ctrl_if_);
|
|
audio_codec_delete_gpio_if(gpio_if_);
|
|
audio_codec_delete_data_if(data_if_);
|
|
}
|
|
|
|
void Tcircles3AudioCodec::CreateVoiceHardware(gpio_num_t mic_bclk, gpio_num_t mic_ws, gpio_num_t mic_data,
|
|
gpio_num_t spkr_bclk, gpio_num_t spkr_lrclk, gpio_num_t spkr_data) {
|
|
|
|
i2s_chan_config_t mic_chan_config = I2S_CHANNEL_DEFAULT_CONFIG(i2s_port_t(0), I2S_ROLE_MASTER);
|
|
mic_chan_config.auto_clear = true; // Auto clear the legacy data in the DMA buffer
|
|
i2s_chan_config_t spkr_chan_config = I2S_CHANNEL_DEFAULT_CONFIG(i2s_port_t(1), I2S_ROLE_MASTER);
|
|
spkr_chan_config.auto_clear = true; // Auto clear the legacy data in the DMA buffer
|
|
|
|
ESP_ERROR_CHECK(i2s_new_channel(&mic_chan_config, NULL, &rx_handle_));
|
|
ESP_ERROR_CHECK(i2s_new_channel(&spkr_chan_config, &tx_handle_, NULL));
|
|
|
|
i2s_std_config_t mic_config = {
|
|
.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 = I2S_STD_PHILIPS_SLOT_DEFAULT_CONFIG(I2S_DATA_BIT_WIDTH_16BIT, I2S_SLOT_MODE_STEREO),
|
|
.gpio_cfg ={
|
|
.mclk = I2S_GPIO_UNUSED,
|
|
.bclk = mic_bclk,
|
|
.ws = mic_ws,
|
|
.dout = I2S_GPIO_UNUSED,
|
|
.din = mic_data,
|
|
.invert_flags = {
|
|
.mclk_inv = false,
|
|
.bclk_inv = false,
|
|
.ws_inv = false,
|
|
}
|
|
}
|
|
};
|
|
|
|
i2s_std_config_t spkr_config = {
|
|
.clk_cfg ={
|
|
.sample_rate_hz = static_cast<uint32_t>(11025),
|
|
.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 = I2S_STD_PHILIPS_SLOT_DEFAULT_CONFIG(I2S_DATA_BIT_WIDTH_16BIT, I2S_SLOT_MODE_STEREO),
|
|
.gpio_cfg ={
|
|
.mclk = I2S_GPIO_UNUSED,
|
|
.bclk = spkr_bclk,
|
|
.ws = spkr_lrclk,
|
|
.dout = spkr_data,
|
|
.din = I2S_GPIO_UNUSED,
|
|
.invert_flags = {
|
|
.mclk_inv = false,
|
|
.bclk_inv = false,
|
|
.ws_inv = false
|
|
}
|
|
}
|
|
};
|
|
|
|
ESP_ERROR_CHECK(i2s_channel_init_std_mode(rx_handle_, &mic_config));
|
|
ESP_ERROR_CHECK(i2s_channel_init_std_mode(tx_handle_, &spkr_config));
|
|
ESP_LOGI(TAG, "Voice hardware created");
|
|
}
|
|
|
|
void Tcircles3AudioCodec::SetOutputVolume(int volume) {
|
|
volume_ = volume;
|
|
AudioCodec::SetOutputVolume(volume);
|
|
}
|
|
|
|
void Tcircles3AudioCodec::EnableInput(bool enable) {
|
|
AudioCodec::EnableInput(enable);
|
|
}
|
|
|
|
void Tcircles3AudioCodec::EnableOutput(bool enable) {
|
|
if (enable){
|
|
gpio_set_level(gpio_num_t(45), 1);
|
|
}else{
|
|
gpio_set_level(gpio_num_t(45), 0);
|
|
}
|
|
AudioCodec::EnableOutput(enable);
|
|
}
|
|
|
|
int Tcircles3AudioCodec::Read(int16_t *dest, int samples){
|
|
if (input_enabled_){
|
|
size_t bytes_read;
|
|
i2s_channel_read(rx_handle_, dest, samples * sizeof(int16_t), &bytes_read, portMAX_DELAY);
|
|
}
|
|
return samples;
|
|
}
|
|
|
|
int Tcircles3AudioCodec::Write(const int16_t *data, int samples){
|
|
if (output_enabled_){
|
|
size_t bytes_read;
|
|
auto output_data = (int16_t *)malloc(samples * sizeof(int16_t));
|
|
for (size_t i = 0; i < samples; i++){
|
|
output_data[i] = (float)data[i] * (float)(volume_ / 100.0);
|
|
}
|
|
i2s_channel_write(tx_handle_, output_data, samples * sizeof(int16_t), &bytes_read, portMAX_DELAY);
|
|
free(output_data);
|
|
}
|
|
return samples;
|
|
}
|