Search found 19 matches

by ihouses
Mon Jul 26, 2021 8:08 pm
Forum: Hardware
Topic: Use only PSRAM instead of FLASH and PSRAM
Replies: 1
Views: 2005

Use only PSRAM instead of FLASH and PSRAM

Hello, I have a doubt that I would like to be clarified: If a use a PSRAM chip that contains the program flash (written somehow by another microcontroller). Is it possible to use and boot an Esp32 with a PSRAM where the lower 4MB are the flash code and the upper 4MB could be the actual PSRAM? I gues...
by ihouses
Sun Mar 14, 2021 12:34 pm
Forum: General Discussion
Topic: Using features of different frameworks
Replies: 0
Views: 1470

Using features of different frameworks

Hello,

I started a new project by using an example within the IDF framework that uses mainly the wifi library. Now I want to start playing with sound so I would need to add things that belong to the ADF framework.

How is the recommended way of doing this?


Thanks!
by ihouses
Wed Feb 03, 2021 1:35 pm
Forum: ESP-IDF
Topic: It is possible to use FATFS over SPIFF?
Replies: 0
Views: 1575

It is possible to use FATFS over SPIFF?

Hi, I want to use a library that needs to work with files organised in folders and uses functions like stat(), fopen()... etc. Since SPIFF doesn't allow folders it is not not working. BTW the library is mongoose web server. Is there anyway to access to my SPIFF unit as if I were a FATFs unit? Thanks!
by ihouses
Sat Jan 30, 2021 11:02 pm
Forum: IDEs for ESP-IDF
Topic: How can I install the new version of openocd in the ESP-idf?
Replies: 9
Views: 11491

Re: How can I install the new version of openocd in the ESP-idf?

The required changes are in settings.json

You can access to settings.json by pressing control+shift+P and typing: preferences: open settings (JSON).
There you can find idf.customExtraPaths and the other things.

Thanks to me! :!
by ihouses
Tue Jan 26, 2021 8:35 pm
Forum: IDEs for ESP-IDF
Topic: How can I install the new version of openocd in the ESP-idf?
Replies: 9
Views: 11491

Re: How can I install the new version of openocd in the ESP-idf?

Sorry for probably dumb question, but:

Where can I find the files where I can modify the required paths:?
idf.customExtraPaths
idf.customExtraVars
by ihouses
Sun Jan 24, 2021 8:14 pm
Forum: General Discussion
Topic: query the WIFI IP in IDF
Replies: 2
Views: 2689

Re: query the WIFI IP in IDF

Oh I see!!!

With TCPIP_ADAPTER_IF_STA the IP is as expected. :D

Thanks!
by ihouses
Sun Jan 24, 2021 2:44 pm
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 426
Views: 839781

Re: What would you like to see in The Next Chip?

Hi, My feedback: RTC 'identical' to DS3231: What functionality are you missing at the moment? Add a vdd domain only for the RTC. So is possible to connect a battery or supercap in the same way than in the DS3231. High speed analog comparators as in order microcontrollers to be able to implement feed...
by ihouses
Sun Jan 24, 2021 2:29 pm
Forum: General Discussion
Topic: query the WIFI IP in IDF
Replies: 2
Views: 2689

query the WIFI IP in IDF

Hi, In the examples the WIFI IP is printed by executing: LOG(LL_INFO, ("got ip:" IPSTR, IP2STR(&event->ip_info.ip))); But I would need to ask for the WIFI IP in other parts of my code. I saw that this function is equivalent: tcpip_adapter_ip_info_t ip; tcpip_adapter_get_ip_info(TCPIP_ADAPTER_IF_AP, ...
by ihouses
Mon Jan 04, 2021 1:38 pm
Forum: ESP-ADF
Topic: How to get the sdcard handler in the ADF read MP3 from sdcard example
Replies: 3
Views: 4697

How to get the sdcard handler in the ADF read MP3 from sdcard example

Hi, I am working with the ADF example play_sdcard_mp3_example in the Lyrat board. I can play the test.mp3 but now I want to do operations with the SDcard like open files, list files... etc. Since the SDcard was initialized in audio_board_sdcard_init(), how can I get the sdcard handler that is used i...
by ihouses
Mon Jan 04, 2021 12:23 pm
Forum: Sample Code
Topic: how to list files in the SDCARD
Replies: 2
Views: 7131

how to list files in the SDCARD

Hello

How can I list all the files and folders in the SDCARD?

The examples only open/rename/close a filename and path that must be already known.