nucleo-f042k6 0.5.0

Board support crate for the STM32 Nucleo-F042K6 microcontroller board
Documentation
#!/bin/sh
if (( $# != 1 )); then
        echo "Usage:"
        echo "$0 <filename of firmware in ELF format>"
        exit 1
fi

openocd -f nucleo.cfg -c "init" -c "targets" -c "reset halt" -c "program $1 verify reset exit"