Search found 9041 matches

by ESP_Sprite
Tue Sep 14, 2021 1:33 am
Forum: Hardware
Topic: Are all the old ESP32 versions with the outdated secure boot discontinued?
Replies: 4
Views: 3405

Re: Are all the old ESP32 versions with the outdated secure boot discontinued?

You could still use the old SecureBoot; the V3 still supports that and we fixed the issues that made the process glitchable in earlier versions. SecureBoot V2 is a bit more secure (as it uses public/private keypairs for signing the bootloader, meaning it's physically impossible to get the signing ke...
by ESP_Sprite
Tue Sep 14, 2021 1:26 am
Forum: Hardware
Topic: ESP32-C3 Devkit Maximum supply voltage
Replies: 2
Views: 3320

Re: ESP32-C3 Devkit Maximum supply voltage

From what I can read online, it's good till 20V, however I can imagine it will burn off too much power if you try that with the load the ESP32C3 gives you... from an AMS1117 (which is in the same package, so the comparison works I think) they give a thermal resistance of 50'ish C/W for the case of t...
by ESP_Sprite
Tue Sep 14, 2021 1:08 am
Forum: Hardware
Topic: ESP32-S3-WROOM-1 preferred PINs for I2C and CAN
Replies: 3
Views: 9625

Re: ESP32-S3-WROOM-1 preferred PINs for I2C and CAN

You can; it's OK to use input-only pins for input-only functionality. (Thanks for pointing that out, it slipped my mind that CAN has a RX pin before the transceiver.)
by ESP_Sprite
Mon Sep 13, 2021 9:48 am
Forum: ESP-IDF
Topic: ESP download modes
Replies: 5
Views: 7567

Re: ESP download modes

(Hm, did you post this question earlier as well? I'd swear I saw it before...) I'm not a secureboot expert, so I'll leave the majority of the questions to my colleagues. I can tell you that technically, 'ROM download mode' refers to any way to (generally) send new code to the ESP32 that is in ROM; y...
by ESP_Sprite
Mon Sep 13, 2021 9:40 am
Forum: Hardware
Topic: esp32-pico-mini-02 number of UARTs
Replies: 2
Views: 2287

Re: esp32-pico-mini-02 number of UARTs

No need to look at the GPIO pinout; the GPIO matrix allows you to route any signal of any of the 3 UARTs to any (compatible, so no TX on an input-only pad and not otherwise used by e.g. the internal flash) GPIO. The GPIO pinout does nothing more than effectively tell you the *default* GPIOs for this.
by ESP_Sprite
Mon Sep 13, 2021 9:37 am
Forum: Hardware
Topic: ESP32-S3 dual-mode Bluetooth 5.0 (BR/EDR + BLE)
Replies: 14
Views: 17462

Re: ESP32-S3 dual-mode Bluetooth 5.0 (BR/EDR + BLE)

Yes. The only chip we have at this moment which does BT Classic is the (non-C, non-S, original) ESP32.
by ESP_Sprite
Mon Sep 13, 2021 6:40 am
Forum: IDEs for ESP-IDF
Topic: (solved) Error flagged on this line of code:
Replies: 4
Views: 3840

Re: Error flagged on this line of code:

What IDE is this? Does the IDE flag the code, or does the compiler?
by ESP_Sprite
Mon Sep 13, 2021 6:37 am
Forum: General Discussion
Topic: ESP32 devkit V4 current consumption
Replies: 3
Views: 2571

Re: ESP32 devkit V4 current consumption

There is, in the form of light sleep, deep sleep, DFS etc. I'm unsure if the Arduino environment supports all of those, though. You could also take a look at the ESP32C3; if you don't need all the ESP32 peripherals that may push the power requirements down a bit lower.
by ESP_Sprite
Mon Sep 13, 2021 1:00 am
Forum: ESP32 Arduino
Topic: Re-Map SPI-OUTPUT-GPIOS
Replies: 4
Views: 2190

Re: Re-Map SPI-OUTPUT-GPIOS

Hm, yeah, then you want to look for something in the direction of the GPIO matrix... not sure if Arduino has dedicated calls for that, but given it's built on ESP-IDF, you may be able to use the esp_rom_gpio_connect_out_signal() call for this.
by ESP_Sprite
Sun Sep 12, 2021 11:45 am
Forum: General Discussion
Topic: is printf from newlib?
Replies: 10
Views: 4558

Re: is printf from newlib?

Sorry, I'm decently sure printf has locks somewhere in the pipeline, but I can't tell you for sure where...