Search found 23 matches

by ihouses
Wed Nov 19, 2025 8:02 am
Forum: ESP-IDF
Topic: User UART0 for LOG and UART1 for comms in ESP32S3
Replies: 2
Views: 1270

Re: User UART0 for LOG and UART1 for comms in ESP32S3

My bad, UART0 in my board was not connected to GPIO 0,1 but default GPIOs 43, 44 :(
Thanks for the hint.
by ihouses
Tue Nov 18, 2025 10:28 pm
Forum: ESP-IDF
Topic: User UART0 for LOG and UART1 for comms in ESP32S3
Replies: 2
Views: 1270

User UART0 for LOG and UART1 for comms in ESP32S3

Hi,

I want use UAR0 for LOGs and UART1 for other comms in Esp32S3. Uart1 will be connected to GPIO0 (TX) and GPIO1 (RX), the code looks something like this:

#include "driver/uart.h"
#include "esp_log.h"

#define UART_COMM_NUM UART_NUM_1
#define UART_COMM_TXD 0
#define UART_COMM_RXD 1
#define UART ...
by ihouses
Fri Oct 03, 2025 7:43 pm
Forum: IDEs for ESP-IDF
Topic: Espressif IDE
Replies: 3
Views: 8495

Re: Espressif IDE

Hi,

The debug executable path looks ok to me:
/Users/domitech/.espressif/tools/openocd-esp32/v0.12.0-esp32-20250707/openocd-esp32/bin/openocd

The error log is the following:
by ihouses
Tue Sep 30, 2025 2:00 pm
Forum: IDEs for ESP-IDF
Topic: Espressif IDE
Replies: 3
Views: 8495

Espressif IDE

Hello,

I have installed the expressive IDE:

Version: 3.6.0
Build id: 20250725-0706

I am trying to program a ESP32C3 mini board. So I connect the Mac to the USB type connector.

I just do a demo program like that:

void app_main(void)
{
esp_log_level_set(TAG, ESP_LOG_INFO);

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

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 ...
by ihouses
Sun Mar 14, 2021 12:34 pm
Forum: General Discussion
Topic: Using features of different frameworks
Replies: 0
Views: 1837

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: 2043

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 ...
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: 14883

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: 14883

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: 3516

Re: query the WIFI IP in IDF

Oh I see!!!

With TCPIP_ADAPTER_IF_STA the IP is as expected. :D

Thanks!

Go to advanced search