aboutsummaryrefslogblamecommitdiff
path: root/bin/reset
blob: 1c57f97de56abc19bc483f98bfe162c83b987c44 (plain) (tree)





















                                                                            


                                           

                                                                                    
#!/bin/sh

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
    OPENOCD_PROC_FILE=st_nucleo_f4.cfg
fi

$OPENOCD -f $OPENOCD_BOARD_DIR/$OPENOCD_PROC_FILE -c "init" -c "reset run" -c "exit"
m"> * @code * #define NUM_PORTS 7 * #if (NUM_PORTS > 4) * #error "NUM_PORTS must be less than 4" * #endif * @endcode * * Reporting Run-Time Errors: * To generate a fatal run-time error, you can use the mbed error() function. * * @code * error("That shouldn't have happened!"); * @endcode * * If the mbed running the program executes this function, it will print the * message via the USB serial port, and then die with the blue lights of death! * * The message can use printf-style formatting, so you can report variables in the * message too. For example, you could use this to check a run-time condition: * * @code * if(x >= 5) { * error("expected x to be less than 5, but got %d", x); * } * #endcode */ #ifdef __cplusplus extern "C" { #endif void error(const char* format, ...); #ifdef __cplusplus } #endif #endif