Comment, clean up some PlatformIO scripts

This commit is contained in:
Scott Lahteine
2021-03-22 23:58:03 -05:00
parent 30e7e2c276
commit 832059967c
4 changed files with 23 additions and 10 deletions

View File

@ -1,5 +1,6 @@
# Generate the firmware as OpenBLT needs
#
# Convert the ELF to an SREC file suitable for some bootloaders
#
import os,sys
from os.path import join
@ -10,5 +11,5 @@ env.AddPostAction(
env.VerboseAction(" ".join([
"$OBJCOPY", "-O", "srec",
"\"$BUILD_DIR/${PROGNAME}.elf\"", "\"$BUILD_DIR/${PROGNAME}.srec\""
]), "Building " + join("$BUILD_DIR","${PROGNAME}.srec"))
]), "Building " + join("$BUILD_DIR", "${PROGNAME}.srec"))
)