Search found 2 matches

by girishv6991
Mon Feb 05, 2024 1:02 am
Forum: Hardware
Topic: ESP32-S3 - 3 UARTs + USB possible?
Replies: 2
Views: 2936

Re: ESP32-S3 - 3 UARTs + USB possible?

There are 2UART + USB in ESP32-C3

I am using the 2UARTS for application and USB-Serial device for programming and also logging. I have also tried JTAG successfully.

I suppose you can use 3 UART + USB in ESP32-S3
by girishv6991
Thu Aug 03, 2023 4:23 am
Forum: ESP-IDF
Topic: I2S Standard Play Sound
Replies: 0
Views: 1216

I2S Standard Play Sound

Hi, I am trying to play a wav file in ESP32-C3 to I2S DAC.

Here is my init code


static const char *TAG = "example";
#define BUFF_SIZE 2048
i2s_chan_handle_t tx_handle;

void i2s_init(void)
{

i2s_chan_config_t chan_cfg = I2S_CHANNEL_DEFAULT_CONFIG(I2S_NUM_0, I2S_ROLE_MASTER);
ESP_LOGI(TAG ...

Go to advanced search