From cc139c77212bd1c8bf306048539eef20ad955f9a Mon Sep 17 00:00:00 2001 From: Nathaniel Graff Date: Thu, 13 Dec 2018 14:02:52 -0800 Subject: Support Building of MEE and MEE examples Signed-off-by: Nathaniel Graff --- scripts/debug | 34 ++++++++++++++++++++++++++++++++++ scripts/upload | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100755 scripts/debug create mode 100755 scripts/upload (limited to 'scripts') diff --git a/scripts/debug b/scripts/debug new file mode 100755 index 0000000..d02c42c --- /dev/null +++ b/scripts/debug @@ -0,0 +1,34 @@ +#!/bin/bash + +set -e +set -o pipefail + +unset elf +unset cfg +unset openocd +unset gdb +while [[ "$1" != "" ]] +do + case "$1" + in + --elf) elf="$2"; shift 2;; + --openocd) openocd="$2"; shift 2;; + --openocd-config) cfg="$2"; shift 2;; + --gdb) gdb="$2"; shift 2;; + *) echo "$0: Unknown argument $1"; exit 1;; + esac +done + +if [[ "$elf" == "" ]] +then + echo "$0: --elf is required" >&2 + exit 1 +fi + +export GDB_PORT=3333 + +$openocd -f $cfg & + +$gdb $elf -ex "set remotetimeout 240" -ex "target extended-remote localhost:${GDB_PORT}" + +kill %1 diff --git a/scripts/upload b/scripts/upload new file mode 100755 index 0000000..66e9ed8 --- /dev/null +++ b/scripts/upload @@ -0,0 +1,34 @@ +#!/bin/bash + +set -e +set -o pipefail + +unset elf +unset cfg +unset openocd +unset gdb +while [[ "$1" != "" ]] +do + case "$1" + in + --elf) elf="$2"; shift 2;; + --openocd) openocd="$2"; shift 2;; + --openocd-config) cfg="$2"; shift 2;; + --gdb) gdb="$2"; shift 2;; + *) echo "$0: Unknown argument $1"; exit 1;; + esac +done + +if [[ "$elf" == "" ]] +then + echo "$0: --elf is required" >&2 + exit 1 +fi + +export GDB_PORT=3333 + +$openocd -f $cfg & + +$gdb $elf --batch -ex "set remotetimeout 240" -ex "target extended-remote localhost:${GDB_PORT}" -ex "monitor reset halt" -ex "monitor flash protect 0 64 last off" -ex "load" -ex "monitor resume" -ex "monitor shutdown" -ex "quit" + +kill %1 -- cgit v1.2.1-18-gbd029