ESP32-H2-DevKit-LiPo - chip revision

Started by harryzz, January 31, 2024, 03:30:45 PM

Previous topic - Next topic

harryzz

Hi,
What is chip revision of module?

regards,
Zahari

LubOlimex

I programmed the board with this Arduino code:

https://github.com/espressif/arduino-esp32/blob/master/libraries/ESP32/examples/ChipID/GetChipID/GetChipID.ino

and it reports the following:

ESP32 Chip model = ESP32-H2 Rev 1
This chip has 1 cores
Chip ID: 16776800
Technical support and documentation manager at Olimex

harryzz

Hi
Thank you. As i know there two revisions exist 0.1 and 0.2.
I need info from boot log "Chip rev"

I (309) cpu_start: Pro cpu start user code
I (309) cpu_start: cpu freq: 96000000 Hz
I (310) cpu_start: Application information:
I (312) cpu_start: Project name:     light_bulb
I (317) cpu_start: App version:      1
I (321) cpu_start: Compile time:     Jan 31 2024 13:50:52
I (327) cpu_start: ELF file SHA256:  061a6023bf40f4ea...
I (333) cpu_start: ESP-IDF:          v5.1.2
I (338) cpu_start: Min chip rev:     v0.0
I (343) cpu_start: Max chip rev:     v0.99
I (348) cpu_start: Chip rev:         v0.1
I (352) heap_init: Initializing. RAM available for dynamic allocation:

or from these functions:
efuse_hal_chip_revision()
or
efuse_hal_get_major_chip_version and efuse_hal_get_minor_chip_version

explained here:
https://docs.espressif.com/projects/esp-idf/en/latest/esp32h2/api-reference/system/chip_revision.html#_CPPv432efuse_hal_get_major_chip_versionv.

regards,
Zahari

LubOlimex

It says

I (215) cpu_start: Pro cpu start user code
I (215) cpu_start: cpu freq: 96000000 Hz
I (216) cpu_start: Application information:
I (218) cpu_start: Project name: hello_world
I (223) cpu_start: App version: v5.3-dev-277-gc8243465e4
I (230) cpu_start: Compile time: Feb 1 2024 15:59:51
I (236) cpu_start: ELF file SHA256: ef270f3cd...
I (241) cpu_start: ESP-IDF: v5.3-dev-277-gc8243465e4
I (247) cpu_start: Min chip rev: v0.0
I (252) cpu_start: Max chip rev: v0.99
I (257) cpu_start: Chip rev: v0.1
Technical support and documentation manager at Olimex

harryzz

Quote from: LubOlimex on February 01, 2024, 04:09:35 PMIt says

I (215) cpu_start: Pro cpu start user code
I (215) cpu_start: cpu freq: 96000000 Hz
I (216) cpu_start: Application information:
I (218) cpu_start: Project name: hello_world
I (223) cpu_start: App version: v5.3-dev-277-gc8243465e4
I (230) cpu_start: Compile time: Feb 1 2024 15:59:51
I (236) cpu_start: ELF file SHA256: ef270f3cd...
I (241) cpu_start: ESP-IDF: v5.3-dev-277-gc8243465e4
I (247) cpu_start: Min chip rev: v0.0
I (252) cpu_start: Max chip rev: v0.99
I (257) cpu_start: Chip rev: v0.1

Thank you.