Search found 9042 matches

by ESP_Sprite
Wed Apr 27, 2022 1:20 am
Forum: Hardware
Topic: Why does JTAG fail on ESP32-S3-DevKitC-1 ?
Replies: 1
Views: 1119

Re: Why does JTAG fail on ESP32-S3-DevKitC-1 ?

By default, the JTAG is connected to the internal USB-serial-JTAG converter, accessible over the micro-USB port labeled 'USB'. You can use that, but if you do not want to, you need to blow an eFuse to change that. The docs do a pretty good job at explaining the details.
by ESP_Sprite
Wed Apr 27, 2022 1:14 am
Forum: General Discussion
Topic: HTTP client detect if resourse has been updated
Replies: 1
Views: 975

Re: HTTP client detect if resourse has been updated

Purely looking at the HTTP protocol itself, you could either use a HEAD (instead of a GET) request to get only the headers of the page and then look at the 'last-modified' header, or you could use an If-Modified-Since field to tell the webserver to only return a result if the file has changed after ...
by ESP_Sprite
Tue Apr 26, 2022 1:29 am
Forum: Hardware
Topic: Will ESP32-WROOM-32U be damaged if operated without an antenna?
Replies: 6
Views: 8542

Re: Will ESP32-WROOM-32U be damaged if operated without an antenna?

As long as you don't use any of the WiFi or BT functions, you should be OK.
by ESP_Sprite
Tue Apr 26, 2022 1:15 am
Forum: General Discussion
Topic: Microsecond Bus or DSPI on ESP32
Replies: 1
Views: 960

Re: Microsecond Bus or DSPI on ESP32

What a curious bus. Yes, at first glance I think this should be doable. You can use the GPIO matrix to net you a 2nd inverted MOSI /SCK output for the SPI bus, giving you a differential signal without external components. Current/voltage limiting on the differential pairs can likely be done using se...
by ESP_Sprite
Tue Apr 26, 2022 1:06 am
Forum: General Discussion
Topic: ESP32 - Crash detection
Replies: 1
Views: 966

Re: ESP32 - Crash detection

Not exactly what you want, but perhaps the rollback feature is good enough?
by ESP_Sprite
Tue Apr 26, 2022 1:01 am
Forum: Hardware
Topic: How to order ESP32-PICO-D4 with ECO V3 revision
Replies: 6
Views: 3153

Re: How to order ESP32-PICO-D4 with ECO V3 revision

Pico-D4 always is v1 silicon, from what I know. You probably want to migrate to Pico-V3, which always is V3 silicon. Do keep in mind that some things are changed between the two (check the V3 datasheet, it has a list of changes).
by ESP_Sprite
Tue Apr 26, 2022 12:57 am
Forum: Hardware
Topic: Boot esp32-s3-wroom-2 doubts
Replies: 11
Views: 7809

Re: Boot esp32-s3-wroom-2 doubts

Then how are you flashing the binary? Are you invoking `idf.py flash` or using esptool.py manually?
by ESP_Sprite
Tue Apr 26, 2022 12:53 am
Forum: General Discussion
Topic: i80_controller_example missing lvgl.h
Replies: 2
Views: 1818

Re: i80_controller_example missing lvgl.h

How are you compiling this example? Normally, you'd expect esp-idf to use the component manager to automatically fetch lvgl. Can you run `idf.py reconfigure` and see if that resolves the issue?
by ESP_Sprite
Mon Apr 25, 2022 1:15 am
Forum: General Discussion
Topic: Flashing esp32-c3-wroom-02
Replies: 6
Views: 3653

Re: Flashing esp32-c3-wroom-02

USB actually is 3.3V on the datalines. Only the power is 5V.
by ESP_Sprite
Mon Apr 25, 2022 1:13 am
Forum: ESP32 Arduino
Topic: ESP8266 Core for user code
Replies: 1
Views: 919

Re: ESP8266 Core for user code

Note that this forum is for ESP32 chips and their ilk, but since your question could also be applicable to e.g. an ESP32C3 which also has a single core: In our SDK, the WiFi and user code parts are linked into the same executable, executed by the same CPU. FreeRTOS is also linked into that executabl...