aboutsummaryrefslogtreecommitdiff
path: root/source/core/comm
AgeCommit message (Expand)Author
2016-06-27First cut at consolidated alpha releng.Rob Austein
2015-10-26 15:18:58 -0400 Based on user/ft/stm32-dev-bridge, without the project-specific build' href='/sw/stm32/commit/bin/flash-target?h=rsa_timing&id=26f12903dab2fafeaaefb02349763618ce96d070'>26f1290
785863c

26f1290
bce99ca
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






















                                                                            

                                      
 
                                                                                          
#!/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
#OPENOCD_PROC_FILE=st_nucleo_f4.cfg

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