Search found 39 matches

by michael
Fri Jan 23, 2026 3:41 pm
Forum: ESP-IDF
Topic: ESP32-S3 UnilC PSRAM support
Replies: 4
Views: 893

Re: ESP32-S3 UnilC PSRAM support

More comments on this topic..

As far as I know adding the PSRAM into the BOM is not a determined thing. But we always recommend the latest release on the same branch, mainly for those fixes introduced. It's not only for compatibility to future hardware.
by michael
Fri Jan 23, 2026 8:46 am
Forum: ESP-IDF
Topic: ESP32-S3 UnilC PSRAM support
Replies: 4
Views: 893

Re: ESP32-S3 UnilC PSRAM support

Hi gesp32,

Here are the versions that support this PSRAM:

Target Branch Merged Released
release/v5.0 4d78c54 v5.0.9
release/v5.1 c5ccf3d v5.1.7 (target)
release/v5.2 857c712 v5.2.6
release/v5.3 9e58fe0 v5.3.4
release/v5.4 a8e166e v5.4.2
master 847ac1a v5.5

Please be noted that when the supply is ...
by michael
Wed Jan 17, 2024 1:14 pm
Forum: Hardware
Topic: BBPLL Calibration never finishes in second stage bootloader in RTC Configuration
Replies: 4
Views: 12854

Re: BBPLL Calibration never finishes in second stage bootloader in RTC Configuration

Hi tchapin,

We can't reproduce this issue from our side... I have two more questions,

1. What's the normal temperature (which can reproduce the issue) you are testing under? and after heated 30 degree, what's the working temperature.

2. Could you provide the MAC address of your module? Is it ...
by michael
Tue Jan 16, 2024 2:52 am
Forum: Hardware
Topic: BBPLL Calibration never finishes in second stage bootloader in RTC Configuration
Replies: 4
Views: 12854

Re: BBPLL Calibration never finishes in second stage bootloader in RTC Configuration

Hi tchapin,

Thanks for reporting this issue. Could you provide more details about this issue?
1. On which IDF version you are experiencing this issue?
2. Is this happening on all ESP32-S3-WROOM-1 modules you have? or only one or two of them?

btw, about that patch we have just provided, https ...
by michael
Wed Feb 01, 2023 8:22 am
Forum: ESP-IDF
Topic: SPI DMA
Replies: 3
Views: 2422

Re: SPI DMA


Hello,
when enabling Async memcpy API:

async_memcpy_config_t config = ASYNC_MEMCPY_DEFAULT_CONFIG();
async_memcpy_t driver = NULL;
ESP_ERROR_CHECK(esp_async_memcpy_install(&config, &driver));


then SPI with DMA stop working (send garbage).


Hi illglu,

I think this is because of a hardware ...
by michael
Mon Jan 30, 2023 5:05 pm
Forum: Hardware
Topic: ESP32-S3 SPICLK_DIFF Enable
Replies: 1
Views: 1963

Re: ESP32-S3 SPICLK_DIFF Enable

Hi especiallyconfused,

There is a register SPI_MEM_SPI_FMEM_CLK_DIFF_EN. When this is enabled, the DIFF clock will be enabled.

After that, you need to switch the IOMUX of GPIO 47 and 48 by `PIN_FUNC_SELECT(IO_MUX_GPIO47_REG, FUNC_SPICLK_P_SPICLK_DIFF);`, etc.

btw, maybe you need to do this when ...
by michael
Tue Jan 03, 2023 2:53 am
Forum: ESP-IDF
Topic: [solved] how to bme280 spi read?
Replies: 4
Views: 5252

Re: how to bme280 spi read?

When using full duplex mode, the rxlength should also include the length of MOSI.

Now the first byte received is supposed to be the MISO while you are sending reg_addr.

Please try increase the len and receive buffer size and see if the hardware starts receiving data from 2nd byte.
by michael
Mon Jun 20, 2022 9:40 am
Forum: ESP-IDF
Topic: Developing with ESP-IDF under WSL2
Replies: 3
Views: 17527

Developing with ESP-IDF under WSL2

# Background

The support for MSYS2 has been removed (since IDFv5.0?). Now the offically supported ways of developing are:

- Command prompt
- Powershell

But those Windows users used to to work on with MSYS2 (shell commands) may feel bad with the two approaches above. This article describe one ...
by michael
Fri May 27, 2022 9:04 am
Forum: Hardware
Topic: Problem Using SPI Slave Mode With DMA (IDFGH-7468)
Replies: 11
Views: 9511

Re: Problem Using SPI Slave Mode With DMA (IDFGH-7468)

If I understand wrongly, you are using another host, to access the flash or ESP32 slave alternatively...

Could you check if you have connected ground of three boards together correctly?

And maybe we need the logic analyzer capture on the 4 pins of ESP32 SPI interface to check what's happening ...
by michael
Fri May 27, 2022 9:00 am
Forum: Hardware
Topic: Problem Using SPI Slave Mode With DMA (IDFGH-7468)
Replies: 11
Views: 9511

Re: Problem Using SPI Slave Mode With DMA (IDFGH-7468)

Hi @berlinetta,
Firstly I would like to ask... Are you trying to let SPI flash driver and SPI slave driver taking turns using the same VSPI peripheral?
If so, I'm supurised the driver you are using didn't complain about anything..

Michael



Hello All,

I have been attempting to get the ESP32 to ...

Go to advanced search