Search found 51 matches

by cruvus
Thu Apr 11, 2024 8:36 pm
Forum: ESP-IDF
Topic: idp.py: Changing the target programmatically
Replies: 2
Views: 318

idp.py: Changing the target programmatically

I am using Windows, VSCode and the ESP-IDF extention. I need to compile a project for several targets, for example ESP32, ESP32-C3 and ESP32-S3. I can do this manually by clicking the "ESP-IDF: Set Espressif Device Target" command, then "ESP-IDF: Build Project", then copying the binaries, and so on....
by cruvus
Sat Mar 16, 2024 4:43 pm
Forum: ESP-IDF
Topic: Undo esp_rom_gpio_connect_out_signal
Replies: 5
Views: 838

Re: Undo esp_rom_gpio_connect_out_signal

That is the mystery. It is the MOSI pin, the one called mosi_io_num in spi_bus_config_t.
by cruvus
Sat Mar 16, 2024 12:01 am
Forum: ESP-IDF
Topic: Undo esp_rom_gpio_connect_out_signal
Replies: 5
Views: 838

Re: Undo esp_rom_gpio_connect_out_signal

I mean the exact same state as just before executing esp_rom_gpio_connect_out_signal(). The GPIOs are involved in a bus initialization (ESP-IDF API) I do not want to re-initialize the bus over and over again.
by cruvus
Wed Mar 13, 2024 11:18 pm
Forum: ESP-IDF
Topic: Undo esp_rom_gpio_connect_out_signal
Replies: 5
Views: 838

Undo esp_rom_gpio_connect_out_signal

Hi, I have to use the function esp_rom_gpio_connect_out_signal to combine two signals. There is no real documentation for this function. In esp_rom_gpio.h it just says "Combine a peripheral signal which tagged as output attribute with a GPIO. There's no limitation on the number of signals that a GPI...
by cruvus
Sun Jan 28, 2024 7:33 pm
Forum: General Discussion
Topic: Direct radio communication between ESP32 and NRF24L01+
Replies: 0
Views: 556

Direct radio communication between ESP32 and NRF24L01+

Hi,

suppose I have a device that sends packets that I normally receive with an NRF24L01+. Can this also be done with the ESP32, i.e. without a separate radio module? If so, is it also possible to send such packets? Has anyone researched this in more detail?
by cruvus
Sun Nov 05, 2023 3:23 pm
Forum: ESP8266
Topic: TLS 1.3 with NONOS SDK?
Replies: 0
Views: 15528

TLS 1.3 with NONOS SDK?

Are there any attempts to update mbedtls on the NONOS SDK? I wonder how hard this is. The current version is quite outdated and does not support TLS 1.3, which many servers require nowadays. More and more servers do not support TLS 1.2 or earlier.
by cruvus
Wed Nov 01, 2023 1:46 pm
Forum: ESP-IDF
Topic: How to maximize ESP-NOW range?
Replies: 3
Views: 1564

Re: How to maximize ESP-NOW range?

What is your power saving setting? In some early experiments I had to set

Code: Select all

esp_wifi_set_ps(WIFI_PS_NONE);
else I did not receive anything.
by cruvus
Mon Oct 09, 2023 8:55 am
Forum: ESP8266
Topic: Is the 8266 processor supported ?
Replies: 17
Views: 35160

Re: Is the 8266 processor supported ?

Very good question...
by cruvus
Fri Jul 07, 2023 5:43 pm
Forum: ESP-IDF
Topic: Hall sensor no longer supported in ESP-IDF 5.0 - MAJOR PROBLEM
Replies: 7
Views: 3289

Re: Hall sensor no longer supported in ESP-IDF 5.0 - MAJOR PROBLEM

Same question here. This is the main issue why we cannot go past IDF 4.* yet.
by cruvus
Fri Feb 03, 2023 3:53 pm
Forum: ESP-IDF
Topic: How do I create new partition when running App code?
Replies: 2
Views: 1512

Re: How do I create new partition when running App code?

I am looking for the same feature. I need it for the core dumps. Unfortunately, to save them to flash, there is no other way but a special "core dump" partition. The devices are in the field, so I cannot use esptool on them (and I cannot use uart for core dump either).