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 7ba285b commit 1f1ea9aCopy full SHA for 1f1ea9a
esptool/cmds.py
@@ -1626,6 +1626,11 @@ def run_stub(esp: ESPLoader) -> ESPLoader:
1626
"Stub flasher is not supported in Secure Download Mode, "
1627
"it has been disabled. Set --no-stub to suppress this warning."
1628
)
1629
+ elif esp.CHIP_NAME == "ESP32-C3" and esp.get_secure_boot_enabled():
1630
+ log.warning(
1631
+ "Stub flasher is not supported on ESP32-C3 with Secure Boot, "
1632
+ "it has been disabled. Set --no-stub to suppress this warning."
1633
+ )
1634
elif not esp.IS_STUB and esp.stub_is_disabled:
1635
log.warning(
1636
"Stub flasher has been disabled for compatibility, "
0 commit comments