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:
parent
8e27ad430e
commit
4f92c18ebf
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue