2019-08-10 17:57:26 +02:00
|
|
|
#!/usr/bin/env bash
|
2019-08-14 14:34:18 +02:00
|
|
|
#############################################################################
|
2012-07-09 22:55:31 +02:00
|
|
|
# flash.sh
|
|
|
|
#
|
2021-03-17 18:14:12 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2012-07-09 22:55:31 +02:00
|
|
|
#
|
2021-03-17 18:14:12 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2012-07-09 22:55:31 +02:00
|
|
|
#
|
2021-03-17 18:14:12 +01:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2012-07-09 22:55:31 +02:00
|
|
|
#
|
2019-08-14 14:34:18 +02:00
|
|
|
#############################################################################
|
2012-07-09 22:55:31 +02:00
|
|
|
set -x
|
|
|
|
|
|
|
|
USAGE="$0 <nuttx-path>"
|
|
|
|
|
|
|
|
# LPCXpresso 3.6 installed at /cygdrive/c/nxp/lpcxpresso_3.6"
|
|
|
|
BINDIR="/cygdrive/c/nxp/LPCXpresso_4.2.3_292/lpcxpresso/bin"
|
|
|
|
|
|
|
|
# RedSuite with LPC4330 support installed at /cygdrive/c/code_red/RedSuite_4.2.3_379 "
|
|
|
|
#BINDIR="/cygdrive/c/code_red/RedSuite_4.2.3_379/redsuite/bin"
|
|
|
|
|
|
|
|
TARGET=LPC4330
|
|
|
|
|
|
|
|
echo "############################################################################"
|
|
|
|
echo "# Assumptions:"
|
|
|
|
echo "#"
|
|
|
|
echo "# - Windows 7"
|
|
|
|
echo "# - Binaries installed at ${BINDIR}"
|
|
|
|
echo "# - AXF image built with Code Red"
|
|
|
|
echo "# - ${TARGET}"
|
|
|
|
echo "#"
|
|
|
|
echo "# You will need to edit this is any of the above are false"
|
|
|
|
echo "#"
|
|
|
|
echo "############################################################################"
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
# This is the default install location for binaries on Windows (note that this
|
|
|
|
# path could change with the Code Red version number)
|
|
|
|
|
|
|
|
if [ ! -d "${BINDIR}" ]; then
|
|
|
|
echo "Directory ${BINDIR} does not exist"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# This is the relative path to the booLPCXpresso utility.
|
|
|
|
|
|
|
|
BOOTLPC="Scripts/bootLPCXpresso.cmd"
|
|
|
|
if [ ! -x "${BINDIR}/${BOOTLPC}" ]; then
|
|
|
|
echo "No executable at ${BINDIR}/${BOOTLPC}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# bootLPCXpresso arguments
|
|
|
|
|
|
|
|
BOOTLPC_ARG=winusb # Win7
|
|
|
|
|
|
|
|
# Use the LPC18xx/LPC43xx flash utility
|
|
|
|
|
|
|
|
FLASHUTIL="crt_emu_lpc18_43_nxp" # for LPC18xx/LPC43xx parts
|
|
|
|
|
|
|
|
if [ ! -x "${BINDIR}/${FLASHUTIL}" ]; then
|
|
|
|
echo "No executable file at ${BINDIR}/${FLASHUTIL}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-02-22 19:31:14 +01:00
|
|
|
# FLUSHUTIL arguments
|
2012-07-09 22:55:31 +02:00
|
|
|
|
|
|
|
WIRE="-wire=winusb" # for LPC-Link on Windows Vista/Windows 7)
|
|
|
|
|
|
|
|
# The nuttx directory must be provided as an argument
|
|
|
|
|
|
|
|
NUTTX=$1
|
|
|
|
if [ -z "${NUTTX}" ]; then
|
|
|
|
echo "Missing argument"
|
|
|
|
echo $USAGE
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d "${NUTTX}" ]; then
|
|
|
|
echo "Directory ${NUTTX} does not exist"
|
|
|
|
echo $USAGE
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The binary to download:
|
|
|
|
|
|
|
|
if [ ! -f "${NUTTX}/nuttx.axf" ]; then
|
|
|
|
if [ -f "${NUTTX}/nuttx" ]; then
|
|
|
|
echo "Renaming ${NUTTX}/nuttx to ${NUTTX}/nuttx.axf"
|
|
|
|
mv ${NUTTX}/nuttx ${NUTTX}/nuttx.axf
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [ -f "${NUTTX}/nuttx" ]; then
|
|
|
|
echo "Both ${NUTTX}/nuttx ${NUTTX}/nuttx.axf exist.."
|
|
|
|
echo " Deleting ${NUTTX}/nuttx.axf"
|
|
|
|
rm -f ${NUTTX}/nuttx.axf
|
|
|
|
echo "Renaming ${NUTTX}/nuttx to ${NUTTX}/nuttx.axf"
|
|
|
|
mv ${NUTTX}/nuttx ${NUTTX}/nuttx.axf
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
NUTTXPATH=`cygpath -w "${NUTTX}/nuttx.axf"`
|
|
|
|
|
|
|
|
# First of all boot the LPC-Link using the script: ${BINDIR}/${BOOTLPC}
|
|
|
|
|
|
|
|
cd ${BINDIR} || \
|
|
|
|
{ echo "Failed to CD to ${BINDIR}"; exit 1; }
|
|
|
|
./${BOOTLPC} ${BOOTLPC_ARG} || \
|
|
|
|
{ echo "'${BOOTLPC} ${BOOTLPC_ARG}' Failed"; }
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
echo "Wait a bit"
|
|
|
|
echo "5..."
|
|
|
|
sleep 1
|
|
|
|
echo "4..."
|
|
|
|
sleep 1
|
|
|
|
echo "3..."
|
|
|
|
sleep 1
|
|
|
|
echo "2..."
|
|
|
|
sleep 1
|
|
|
|
echo "1..."
|
|
|
|
sleep 1
|
|
|
|
echo "0..."
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
# Then program the FLASH
|
|
|
|
|
|
|
|
cd ${BINDIR} || \
|
|
|
|
{ echo "Failed to CD to ${BINDIR}"; exit 1; }
|
|
|
|
./${FLASHUTIL} ${WIRE} -p${TARGET} -flash-load-exec="${NUTTXPATH}"
|