Search found 13 matches

by matthias122
Sat Jun 08, 2024 3:03 pm
Forum: ESP-IDF
Topic: Use PSRAM and SD-Card MMC ESP32-S3
Replies: 4
Views: 807

Re: Use PSRAM and SD-Card MMC ESP32-S3

Here is the pinning: #define BSP_SD_HOST_CMD (GPIO_NUM_14) #define BSP_SD_HOST_CLK (GPIO_NUM_17) #define BSP_SD_HOST_D0 (GPIO_NUM_2) #define BSP_SD_HOST_D1 (GPIO_NUM_4) #define BSP_SD_HOST_D2 (GPIO_NUM_12) #define BSP_SD_HOST_D3 (GPIO_NUM_13) #define BSP_SD_DET (GPIO_NUM_21) #define BSP_SD_ENABLE (G...
by matthias122
Sat Jun 08, 2024 2:56 pm
Forum: ESP-IDF
Topic: Use PSRAM and SD-Card MMC ESP32-S3
Replies: 4
Views: 807

Re: Use PSRAM and SD-Card MMC ESP32-S3

Yes already Double checked that. There is no Pin allocated from PSRAM to SD Card based in espressif Datasheet.
by matthias122
Fri Jun 07, 2024 5:41 pm
Forum: ESP-IDF
Topic: Use PSRAM and SD-Card MMC ESP32-S3
Replies: 4
Views: 807

Use PSRAM and SD-Card MMC ESP32-S3

Hello, I get a issue when I initialise PSRAM and then use SD-Card with on my custom ESP32-S3 board. If I activate the Option Initialize "SPI RAM during startup" the sdcard can not be mounted. If the SD-Card format option is activated, the ESP32-S3 will destroy the file system. image2.jpg Here is the...
by matthias122
Tue Jan 23, 2024 2:20 pm
Forum: ESP-IDF
Topic: IDF 5.2 developer branch: i2c master => unable to read data
Replies: 6
Views: 2087

Re: IDF 5.2 developer branch: i2c master => unable to read data

Hi Christoph,

ok I will try in Hardware.

Which Module or Board are you using?

I have already tested my code on ESP32 and ESP32-S3.

Best regards

Matthias Ahrens
by matthias122
Mon Jan 22, 2024 6:57 am
Forum: ESP-IDF
Topic: IDF 5.2 developer branch: i2c master => unable to read data
Replies: 6
Views: 2087

Re: IDF 5.2 developer branch: i2c master => unable to read data

Hi Christoph, I tried the 5.2 Release and also the Master branch. Both are working. Could you please activate i2C debug in Component config/ESP-Driver: I2C Configuration and post error message. Here is my implementation of I2C read function. It is working. maybe you can try it. Sorry but you also ne...
by matthias122
Sun Jan 21, 2024 9:40 pm
Forum: ESP-IDF
Topic: IDF 5.2 developer branch: i2c master => unable to read data
Replies: 6
Views: 2087

Re: IDF 5.2 developer branch: i2c master => unable to read data

Hi Christoph,
I already implemented the new i2C Driver and also get the same error. The solution is that you will need a array for read buffer.

So replace uint8_t data = 0; with uint8_t data [1] = 0;

Best regards
Matthias
by matthias122
Tue Jan 10, 2023 3:47 pm
Forum: IDEs for ESP-IDF
Topic: Exit idf.py monitor VSCode Server
Replies: 1
Views: 2453

Exit idf.py monitor VSCode Server

Hello,
could you please help me with the following issue.
I'm not able to exit Idf.py monitor in my remote environment.
I'm working with VScode Server via Firefox.
CTRL + X + T is working directly in my Windows Terminal but not in Browser.
Thanks for your help
Best regards
matthias122
by matthias122
Wed Mar 09, 2022 2:13 pm
Forum: ESP-IDF
Topic: I2S ADC Mode ESP32-S3
Replies: 1
Views: 1426

I2S ADC Mode ESP32-S3

Hello,
I want to connect a analog microphone to the ESP32-S3.
But the functions to bring ESP32-S3 in I2S ADC Mode are not available, at ESP32 the functions are available.
Will ESP32-S3 support this feature in future or are there any Hardware restrictions?
Thanks for your help
by matthias122
Wed Nov 10, 2021 6:47 pm
Forum: Hardware
Topic: ESP32 SDIO Slave with Linux based MCU
Replies: 7
Views: 8387

Re: ESP32 SDIO Slave with Linux based MCU

Hello Ritesh,
yes in general it is possible. But you have to write your own SLIP/PPP Linux Driver.
So the only way will be using esp-hosted to get it work as Modem in Linux.
Maybe this can help: https://github.com/wlach/wvdial
by matthias122
Wed Nov 10, 2021 8:57 am
Forum: Hardware
Topic: ESP32 SDIO Slave with Linux based MCU
Replies: 7
Views: 8387

Re: ESP32 SDIO Slave with Linux based MCU

Hello Ritesh,
you can use ESP-AT https://github.com/espressif/esp-at
On the ESP32-WROOM-32E (4MB) the ESP-AT Firmware is installed from factory.