#!/bin/sh PROJ="${1?'project'}" OPENOCD=openocd OPENOCD_BOARD_DIR=/usr/share/openocd/scripts/board OPENOCD_PROC_FILE=stm32f4discovery.cfg if [ "x`lsusb -d 0483:374b`" != "x" ]; then for fn in st_nucleo_f4.cfg st_nucleo_f401re.cfg; do if [ -f "$OPENOCD_BOARD_DIR/$fn" ]; then OPENOCD_PROC_FILE="$fn" fi done fi $OPENOCD -f $OPENOCD_BOARD_DIR/$OPENOCD_PROC_FILE & GDB=arm-none-eabi-gdb $GDB -ex "target remote localhost:3333" -ex "set remote hardware-breakpoint-limit 6" -ex "set remote hardware-watchpoint-limit 4" $PROJ.elf kill -9 $(pidof $OPENOCD) sw/thirdparty/ekermit
(Old) EKermit library once considered for HSM firmware uploadsgit repositories
summaryrefslogtreecommitdiff
path: root/.gitignore
blob: cb68b5f040151142ab109ea4e00830d7b2340e05 (plain) (blame)
1
2
alue='grep'>log msg







path: root/bin/debug
blob: 2cdda7b4068ea6beb414d9ea0c2f9ee9a51a6f2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14