We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a846531 commit a03158cCopy full SHA for a03158c
esptool/__init__.py
@@ -846,6 +846,12 @@ def add_spi_flash_subparsers(
846
"setting --no-stub"
847
)
848
args.no_stub = True
849
+ elif esp.CHIP_NAME == "ESP32-C3" and esp.get_secure_boot_enabled():
850
+ print(
851
+ "WARNING: Stub flasher is not supported on ESP32-C3 "
852
+ "with Secure Boot, setting --no-stub"
853
+ )
854
+ args.no_stub = True
855
elif not esp.IS_STUB and esp.stub_is_disabled:
856
print(
857
"WARNING: Stub loader has been disabled for compatibility, "
0 commit comments