Search found 57 matches

by cruvus
Sun Jan 28, 2024 7:33 pm
Forum: General Discussion
Topic: Direct radio communication between ESP32 and NRF24L01+
Replies: 0
Views: 647

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

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

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

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

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

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).
by cruvus
Thu Jan 12, 2023 10:25 am
Forum: ESP-IDF
Topic: How to use MQTT with SSL/TLS without using a certificate
Replies: 5
Views: 5005

Re: How to use MQTT with SSL/TLS without using a certificate

Is there a way to do this in runtime, temporarily?
by cruvus
Mon Jan 09, 2023 11:22 pm
Forum: ESP-IDF
Topic: Using rmt for addressable LEDs causes an error.
Replies: 8
Views: 3735

Re: Using rmt for addressable LEDs causes an error.

You can increase the stack size of the main task in sdkconfig.
by cruvus
Sat Dec 10, 2022 12:04 am
Forum: ESP-IDF
Topic: bridge from sta to ap
Replies: 9
Views: 4494

Re: bridge from sta to ap

AFAIK, bridging between STA and AP is not possible with the ESP32. Only ETH <-> AP.
Of course, you can use NAT, but not real bridge mode between STA and AP.
So, the devices connected to the AP have to be in a different subnet than your router.
by cruvus
Thu Nov 10, 2022 7:09 pm
Forum: General Discussion
Topic: curious about why an almost equivalent C code can avoid LoadProhibited error
Replies: 2
Views: 1503

Re: curious about why an almost equivalent C code can avoid LoadProhibited error

In most cases this is a sign of a buffer overflow or some screwup with an interrupt handler or a similar problem in the rest(!) of your code. Take a detailed look at the core dump. If you change the source, even if it is equivalent, the resulting assembler code might be longer or shorter or quicker ...