mirror of
https://github.com/valentineus/kp3s-lgvl.git
synced 2025-04-28 01:31:23 +03:00
15 lines
356 B
Python
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"))
|
|
)
|