2019-08-10 17:57:26 +02:00
|
|
|
#!/usr/bin/env bash
|
2008-09-17 20:44:34 +02:00
|
|
|
#############################################################################
|
2019-08-14 14:34:18 +02:00
|
|
|
# boards/arm/lpc214x/mcu123-lpc214x/lpc21isp.sh
|
2008-09-17 20:44:34 +02:00
|
|
|
#
|
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
|
2008-09-17 20:44:34 +02:00
|
|
|
#
|
2021-03-17 18:14:12 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2008-09-17 20:44:34 +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.
|
2008-09-17 20:44:34 +02:00
|
|
|
#
|
|
|
|
#############################################################################
|
|
|
|
#set -x
|
|
|
|
|
|
|
|
# The path to the built lpc21isp binary
|
|
|
|
|
|
|
|
lpc21isp=../lpc2148/lpc21isp/lpc21isp
|
|
|
|
|
|
|
|
# lpc21ips options
|
|
|
|
|
2008-09-18 01:14:42 +02:00
|
|
|
options="-bin -control -verify"
|
2008-09-17 20:44:34 +02:00
|
|
|
|
2008-09-18 01:14:42 +02:00
|
|
|
# The path to the NuttX raw binary format binary
|
2008-09-17 20:44:34 +02:00
|
|
|
|
2008-09-18 01:14:42 +02:00
|
|
|
hxfile=nuttx.bin
|
2008-09-17 20:44:34 +02:00
|
|
|
|
|
|
|
# The TTY to use for the download
|
|
|
|
|
|
|
|
tty=/dev/ttyS0
|
|
|
|
|
|
|
|
# The BAUD rate supported by the lpc214x board
|
|
|
|
|
|
|
|
baud=38400
|
|
|
|
|
|
|
|
# The LPC214X crystal frequency in KHz
|
|
|
|
|
|
|
|
osckhz=12000
|
|
|
|
|
|
|
|
# Do it!
|
|
|
|
|
|
|
|
sudo $lpc21isp $options $hxfile $tty $baud $osckhz
|