No Map file is generated for ESP32

Fix error for ESP32. Scripts checks if exists and generates only in target folder if there
This commit is contained in:
Jason2866 2020-04-17 16:15:41 +02:00 committed by Javier Arigita
parent ee98151834
commit 22e05c2e27
1 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ def bin_map_copy(source, target, env):
shutil.copy(str(target[0]), bin_file)
# copy firmware.map to map/<variant>.map
shutil.copy("firmware.map", map_file)
if os.path.isfile("firmware.map"):
shutil.move("firmware.map", map_file)
env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", [bin_map_copy])