aboutsummaryrefslogtreecommitdiff
path: root/hal_io_i2c.c
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2017-03-06 17:11:21 -0500
committerRob Austein <sra@hactrn.net>2017-03-06 17:11:21 -0500
commit2abfa2b7fdd1498d49022141b9a44add1fecafe6 (patch)
tree603d68faaffa30f082280dfa7b6596a373574cc3 /hal_io_i2c.c
parent89e84c71f760203a350dd51cad100c425dc3a1c3 (diff)
Bump size of some static tables, particuarly pkey slots.
Diffstat (limited to 'hal_io_i2c.c')
0 files changed, 0 insertions, 0 deletions
mitter Rob Austein <sra@hactrn.net> 2016-06-14 23:31:47 -0400 Whack shell scripts to work on Debian Jessie too.' href='/sw/stm32/commit/bin/flash-target?h=auto_zeroise&id=e961e9818193acbb18c503830a554e52285e096b'>e961e98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38


                     


















                                                                            
                                      
                                           




                                                       
  
 






                                                                                            
#!/bin/sh

PROJ="${1?'project'}"
OPENOCD=openocd

# location of OpenOCD Board .cfg files (only used with 'make flash-target')
#
# This path is from Ubuntu 14.04.
#
OPENOCD_BOARD_DIR=/usr/share/openocd/scripts/board

# Configuration (cfg) file containing programming directives for OpenOCD
#
# If you are using an STLINK v2.0 from an STM32 F4 DISCOVERY board,
# set this variable to "stm32f4discovery.cfg".
#
# If you are using an STLINK v2.1 from an STM32 F4 NUCLEO board,
# set this variable to "st_nucleo_f401re.cfg".
#
# If you are using something else, look for a matching configuration file in
# the OPENOCD_BOARD_DIR directory.
#
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

# This used to be "... verify reset exit", but that fails on Debian Jessie.
# The Net of a Million Lies claims that the "exit" is unnecessary, so the
# simplest solution is just to omit it.  Should this turn out to be a mistake,
# well, we'll have to do something more clever to deal with these silly version
# skew problems between the several versions of openocd in current use.

$OPENOCD -f $OPENOCD_BOARD_DIR/$OPENOCD_PROC_FILE -c "program $PROJ.elf verify reset" # exit