1
mirror of https://github.com/valentineus/kp3s-lgvl.git synced 2025-04-29 01:31:24 +03:00
Georgiy Bondarenko e8701195e6 Initial commit
2021-03-04 22:54:23 +05:00

15 lines
356 B
Python

# Generate the firmware as OpenBLT needs
import os,sys
from os.path import join
Import("env")
env.AddPostAction(
"$BUILD_DIR/${PROGNAME}.elf",
env.VerboseAction(" ".join([
"$OBJCOPY", "-O", "srec",
"\"$BUILD_DIR/${PROGNAME}.elf\"", "\"$BUILD_DIR/${PROGNAME}.srec\""
]), "Building " + join("$BUILD_DIR","${PROGNAME}.srec"))
)