scripts/dfuutil: add support for DfuSe devices

Add DFUUTIL_DFUSE_ADDR to the list of dfu-util environment variables,
which can be used to flash DfuSe devices (e.g. STM32 based MCUs).

Change-Id: I39fdc338f7f034376ce50b648b06f39fee3169a7
Signed-off-by: Ricardo Salveti <ricardo.salveti@linaro.org>
This commit is contained in:
Ricardo Salveti 2017-03-22 20:46:09 -03:00
commit 4f92c18ebf

View file

@ -39,6 +39,11 @@ do_flash() {
done
fi
# Allow DfuSe based devices by checking for DFUUTIL_DFUSE_ADDR
if [ -n "${DFUUTIL_DFUSE_ADDR}" ]; then
DFUUTIL_CMD="${DFUUTIL_CMD} -s ${DFUUTIL_DFUSE_ADDR}:leave"
fi
# Flash DFU device with specified image
# Do NOT reset with -R, to avoid random 'error resetting after download'
$DFUUTIL_CMD -a $DFUUTIL_ALT -D $DFUUTIL_IMG