mirror of
https://github.com/esphome/esphome.git
synced 2025-02-01 02:31:00 +00:00
Make generating combined binary output verbose (#3127)
This commit is contained in:
parent
f376a39e55
commit
dd554bcdf4
@ -1,12 +1,15 @@
|
|||||||
# Source https://github.com/letscontrolit/ESPEasy/pull/3845#issuecomment-1005864664
|
# Source https://github.com/letscontrolit/ESPEasy/pull/3845#issuecomment-1005864664
|
||||||
|
|
||||||
import esptool
|
import esptool
|
||||||
|
from SCons.Script import ARGUMENTS
|
||||||
|
|
||||||
# pylint: disable=E0602
|
# pylint: disable=E0602
|
||||||
Import("env") # noqa
|
Import("env") # noqa
|
||||||
|
|
||||||
|
|
||||||
def esp32_create_combined_bin(source, target, env):
|
def esp32_create_combined_bin(source, target, env):
|
||||||
|
verbose = bool(int(ARGUMENTS.get("PIOVERBOSE", "0")))
|
||||||
|
if verbose:
|
||||||
print("Generating combined binary for serial flashing")
|
print("Generating combined binary for serial flashing")
|
||||||
app_offset = 0x10000
|
app_offset = 0x10000
|
||||||
|
|
||||||
@ -24,15 +27,18 @@ def esp32_create_combined_bin(source, target, env):
|
|||||||
"--flash_size",
|
"--flash_size",
|
||||||
flash_size,
|
flash_size,
|
||||||
]
|
]
|
||||||
|
if verbose:
|
||||||
print(" Offset | File")
|
print(" Offset | File")
|
||||||
for section in sections:
|
for section in sections:
|
||||||
sect_adr, sect_file = section.split(" ", 1)
|
sect_adr, sect_file = section.split(" ", 1)
|
||||||
|
if verbose:
|
||||||
print(f" - {sect_adr} | {sect_file}")
|
print(f" - {sect_adr} | {sect_file}")
|
||||||
cmd += [sect_adr, sect_file]
|
cmd += [sect_adr, sect_file]
|
||||||
|
|
||||||
print(f" - {hex(app_offset)} | {firmware_name}")
|
|
||||||
cmd += [hex(app_offset), firmware_name]
|
cmd += [hex(app_offset), firmware_name]
|
||||||
|
|
||||||
|
if verbose:
|
||||||
|
print(f" - {hex(app_offset)} | {firmware_name}")
|
||||||
print()
|
print()
|
||||||
print(f"Using esptool.py arguments: {' '.join(cmd)}")
|
print(f"Using esptool.py arguments: {' '.join(cmd)}")
|
||||||
print()
|
print()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user