Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chip_id is not supported for esp32 #63

Open
dreinhardt opened this issue Feb 3, 2023 · 1 comment
Open

chip_id is not supported for esp32 #63

dreinhardt opened this issue Feb 3, 2023 · 1 comment

Comments

@dreinhardt
Copy link

dreinhardt commented Feb 3, 2023

I use the Chip Type: ESP32D0WDQ6
The ESP32 board is from Joy-IT
https://joy-it.net/en/products/SBC-NodeMCU-ESP32

When trying to flash, I get the error: "chip_id is not supported for esp32"

with other ESP32 boards it works. Somebody can help?

@thepapermen
Copy link
Contributor

thepapermen commented Sep 6, 2023

@dreinhardt, @ricki-z I have created a fork with (supposedly) feature that you need, BUT it need's testing because I don't have ESP32 boards.

master...thepapermen:airrohr-firmware-flasher:esp32support

def get_chip_id(esp):
    """
    A shim to fix firmware flashing for ESP-32
    """
    try:
        return esp.chip_id()
    except NotSupportedError:
        return esp.read_mac()

Here you can download firmware executables for your OS:
https://github.com/thepapermen/airrohr-firmware-flasher/actions/runs/6093268890

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants