kaleidoscope-builder: Support config files in the sketch dir too

If there's a config file in the sketch dir, load BOARD & FQBN from it, so we can
compile for different boards from within the same repo.

Fixes #425.

Signed-off-by: Gergely Nagy <algernon@keyboard.io>
pull/426/head
Gergely Nagy 6 years ago
parent 76da3dc006
commit 0462ae141d
No known key found for this signature in database
GPG Key ID: AC1E90BAC433F68F

@ -195,6 +195,19 @@ compile () {
ARDUINO_PACKAGES="-hardware \"${ARDUINO_PACKAGE_PATH}\""
fi
SKETCH_DIR="$(find_sketch)"
SAVED_BOARD="${BOARD}"
SAVED_FQBN="${FQBN}"
if [ -e "${SKETCH_DIR}/.kaleidoscope-builder.conf" ]; then
# shellcheck disable=SC1090
BOARD="$(. "${SKETCH_DIR}"/.kaleidoscope-builder.conf && echo "${BOARD}")"
# shellcheck disable=SC1090
FQBN="$(. "${SKETCH_DIR}"/.kaleidoscope-builder.conf && echo "${FQBN}")"
if [ "${SAVED_FQBN}" = "${FQBN}" ] || [ -z "${FQBN}" ]; then
FQBN="keyboardio:avr:${BOARD}"
fi
fi
# SC2091: We do not care if quotes or backslashes are not respected.
# SC2086: We want word splitting.
# shellcheck disable=SC2086,SC2090
@ -217,7 +230,7 @@ compile () {
-warnings all \
${ARDUINO_VERBOSE} \
${ARDUINO_AVR_GCC_PREFIX_PARAM} \
"$(find_sketch)/${SKETCH}.ino"
"${SKETCH_DIR}/${SKETCH}.ino"
cp "${BUILD_PATH}/${SKETCH}.ino.hex" "${HEX_FILE_PATH}"
cp "${BUILD_PATH}/${SKETCH}.ino.elf" "${ELF_FILE_PATH}"
@ -229,6 +242,9 @@ compile () {
else
rm -rf "${BUILD_PATH}"
fi
BOARD="${SAVED_BOARD}"
FQBN="${SAVED_FQBN}"
}
_find_all () {

Loading…
Cancel
Save