Hi,
I am wondering what is the default function of the XPD_DCDC pin. I know this pin can be used as GPIO16 and also for waking up the chip from deep sleep. But that is not the default function that is configured after resetting the chip.
Also, even after a software reset, when all other GPIOs are ...
Search found 60 matches
- Thu Nov 28, 2024 2:04 pm
- Forum: ESP8266
- Topic: XPD_DCDC (= GPIO16) default function and reset behavior
- Replies: 0
- Views: 9711
- Fri Aug 02, 2024 6:10 pm
- Forum: ESP-IDF
- Topic: Validity of ESP32 erratum 3.14 in 2024
- Replies: 1
- Views: 1566
Re: Validity of ESP32 erratum 3.14 in 2024
The example included in the IDF also uses the edge interrupts in a completely natural way, as if the erratum did not exist:
https://github.com/espressif/esp-idf/bl ... ple_main.c
https://github.com/espressif/esp-idf/bl ... ple_main.c
- Fri Aug 02, 2024 10:52 am
- Forum: ESP-IDF
- Topic: Validity of ESP32 erratum 3.14 in 2024
- Replies: 1
- Views: 1566
Validity of ESP32 erratum 3.14 in 2024
I wonder if the ESP32 erratum 3.14 is still something to worry about when using newer IDF versions:
https://www.espressif.com/sites/default/files/documentation/esp32_errata_en.pdf
The .pdf file still mentions it, but when I use e.g. GPIO_INTR_NEGEDGE in my code, there is no warning whatsoever. I am ...
https://www.espressif.com/sites/default/files/documentation/esp32_errata_en.pdf
The .pdf file still mentions it, but when I use e.g. GPIO_INTR_NEGEDGE in my code, there is no warning whatsoever. I am ...
- Fri May 24, 2024 11:11 pm
- Forum: ESP-IDF
- Topic: Dual core bootloader on a single core chip?
- Replies: 3
- Views: 2264
Re: Dual core bootloader on a single core chip?
I cannot determine that. People are running the app on the ESP32-U4WDH (the old one and the new one).
- Fri May 24, 2024 11:14 am
- Forum: ESP-IDF
- Topic: Dual core bootloader on a single core chip?
- Replies: 3
- Views: 2264
Dual core bootloader on a single core chip?
Can I use a bootloader compiled for dual core on a single core chip? The app is compiled for single core.
I somewhere read that we should not use a bootloader compiled for single core when the app is for dual core. But what about the other way round?
The bootloader documentation does not say ...
I somewhere read that we should not use a bootloader compiled for single core when the app is for dual core. But what about the other way round?
The bootloader documentation does not say ...
- Fri May 17, 2024 3:50 pm
- Forum: ESP-IDF
- Topic: Is ESP32-S3 compatible with the NORdic's ESB protocol?
- Replies: 4
- Views: 2408
Re: Is ESP32-S3 compatible with the NORdic's ESB protocol?
https://github.com/espressif/esp-idf/issues/13448
The BLE hardware should be compatible. But Espressif is unwilling.
The BLE hardware should be compatible. But Espressif is unwilling.
- Wed May 08, 2024 1:07 pm
- Forum: ESP8266
- Topic: wolfSSL TLS Example Updates for the ESP8266, including Kyber PQ
- Replies: 6
- Views: 8655
Re: wolfSSL TLS Example Updates for the ESP8266, including Kyber PQ
Maybe a tip: If you want to achieve more reach with your WolfSSL, why not put a NONOS fork online where MbedTLS has already been completely replaced, ready to use so to speak.
- Wed May 08, 2024 10:52 am
- Forum: ESP8266
- Topic: wolfSSL TLS Example Updates for the ESP8266, including Kyber PQ
- Replies: 6
- Views: 8655
Re: wolfSSL TLS Example Updates for the ESP8266, including Kyber PQ
RTOS is no option since it demands way too much flash memory. We have hundreds of devices with 1 MByte of flash. RTOS does not fit there. So we are stuck with the NONOS.
Also, RTOS has a newer mbedtls. I think, anyone using RTOS has no need in changing this component.
Also, RTOS has a newer mbedtls. I think, anyone using RTOS has no need in changing this component.
- Sat Apr 27, 2024 10:50 am
- Forum: ESP8266
- Topic: wolfSSL TLS Example Updates for the ESP8266, including Kyber PQ
- Replies: 6
- Views: 8655
Re: wolfSSL TLS Example Updates for the ESP8266, including Kyber PQ
So is it possible to replace mbedtls in the ESP8266_NONOS_SDK with this one? The existing mbedtls is quite outdated and does not support TLS 1.3 at all.
- Thu Apr 11, 2024 8:36 pm
- Forum: ESP-IDF
- Topic: idp.py: Changing the target programmatically
- Replies: 2
- Views: 2949
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 ...