Thanks for the hint.
Search found 23 matches
- Wed Nov 19, 2025 8:02 am
- Forum: ESP-IDF
- Topic: User UART0 for LOG and UART1 for comms in ESP32S3
- Replies: 2
- Views: 1273
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.
Thanks for the hint.
- Tue Nov 18, 2025 10:28 pm
- Forum: ESP-IDF
- Topic: User UART0 for LOG and UART1 for comms in ESP32S3
- Replies: 2
- Views: 1273
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 ...
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 ...
- Fri Oct 03, 2025 7:43 pm
- Forum: IDEs for ESP-IDF
- Topic: Espressif IDE
- Replies: 3
- Views: 8498
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:
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:
- Tue Sep 30, 2025 2:00 pm
- Forum: IDEs for ESP-IDF
- Topic: Espressif IDE
- Replies: 3
- Views: 8498
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 ...
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 ...
- Mon Jul 26, 2021 8:08 pm
- Forum: Hardware
- Topic: Use only PSRAM instead of FLASH and PSRAM
- Replies: 1
- Views: 2798
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 ...
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 ...
- Sun Mar 14, 2021 12:34 pm
- Forum: General Discussion
- Topic: Using features of different frameworks
- Replies: 0
- Views: 1839
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!
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!
- Wed Feb 03, 2021 1:35 pm
- Forum: ESP-IDF
- Topic: It is possible to use FATFS over SPIFF?
- Replies: 0
- Views: 2045
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 ...
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 ...
- 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: 14885
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! :!
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! :!
- 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: 14885
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
Where can I find the files where I can modify the required paths:?
idf.customExtraPaths
idf.customExtraVars
- Sun Jan 24, 2021 8:14 pm
- Forum: General Discussion
- Topic: query the WIFI IP in IDF
- Replies: 2
- Views: 3518
Re: query the WIFI IP in IDF
Oh I see!!!
With TCPIP_ADAPTER_IF_STA the IP is as expected.
Thanks!
With TCPIP_ADAPTER_IF_STA the IP is as expected.
Thanks!