* reorder and extend platformio config * update gitignore * add processing extra_script * add makefile * update github workflow * update docker build * add release and debug targets * define custom_build debug * fix custom_build target * update README
79 lines
2.5 KiB
Python
79 lines
2.5 KiB
Python
""" PlatformIO POST script execution to copy artifacts """
|
|
|
|
Import("env")
|
|
import os
|
|
import shutil
|
|
from pathlib import Path
|
|
|
|
def get_board_name(env):
|
|
board = env.get('BOARD_MCU')
|
|
if env.get('BOARD') == 'esp32-solo1':
|
|
board = env.get('BOARD').replace('-', '')
|
|
return board
|
|
|
|
def create_target_dir(env):
|
|
board = get_board_name(env)
|
|
target_dir = env.GetProjectOption("custom_build") + '/' + board
|
|
if not os.path.exists(target_dir):
|
|
os.makedirs(target_dir)
|
|
return target_dir
|
|
|
|
def copy_files(source, target, env):
|
|
file = Path(target[0].get_abspath())
|
|
target_dir = create_target_dir(env)
|
|
board = get_board_name(env)
|
|
|
|
if "partitions.bin" in file.name:
|
|
shutil.copy(file, f"{target_dir}/nuki_hub.{file.name}")
|
|
elif "firmware" in file.stem:
|
|
shutil.copy(file, f"{target_dir}/nuki_hub_{board}{file.suffix}")
|
|
else:
|
|
shutil.copy(file, f"{target_dir}/{file.name}")
|
|
|
|
def merge_bin(source, target, env):
|
|
#if not env.get('BUILD_TYPE') in ['release']:
|
|
# return
|
|
|
|
if env.get('BOARD') in ['esp32-solo1']:
|
|
return
|
|
|
|
board = get_board_name(env)
|
|
chip = env.get('BOARD_MCU')
|
|
target_dir = create_target_dir(env)
|
|
target_file = f"{target_dir}/webflash_nuki_hub_{board}.bin"
|
|
|
|
app_position = "0x10000"
|
|
app_path = target[0].get_abspath()
|
|
|
|
flash_args = list()
|
|
flash_args.append(app_position)
|
|
flash_args.append(app_path)
|
|
|
|
for position, bin_file in env.get('FLASH_EXTRA_IMAGES'):
|
|
if "boot_app0.bin" in bin_file:
|
|
bin_file = "bin/boot_app0.bin"
|
|
flash_args.append(position)
|
|
flash_args.append(bin_file)
|
|
|
|
cmd = f"esptool.py --chip {chip} merge_bin -o {target_file} --flash_mode dio --flash_freq keep --flash_size keep " + " ".join(flash_args)
|
|
env.Execute(cmd)
|
|
|
|
def package_last_files(source, target, env):
|
|
files = ["bin/boot_app0.bin", "how-to-flash.txt"]
|
|
|
|
target_dir = create_target_dir(env)
|
|
for file in files:
|
|
file = Path(file)
|
|
shutil.copy(file, f"{target_dir}/{file.name}")
|
|
|
|
if env.GetProjectOption("custom_build") == 'release':
|
|
env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", merge_bin)
|
|
|
|
env.AddPostAction("$BUILD_DIR/firmware.bin", copy_files)
|
|
env.AddPostAction("$BUILD_DIR/firmware.bin", package_last_files)
|
|
env.AddPostAction("$BUILD_DIR/partitions.bin", copy_files)
|
|
env.AddPostAction("$BUILD_DIR/bootloader.bin", copy_files)
|
|
|
|
if env.GetProjectOption("custom_build") == 'debug':
|
|
env.AddPostAction("$BUILD_DIR/firmware.elf", copy_files)
|