stm32f072b-disco 0.1.0

Board support crate for the STM32F072 discovery kit
Documentation
1
2
3
4
5
6
7
8
#!/bin/sh
if (( $# != 1 )); then
        echo "Usage:"
        echo "$0 <filename of firmware in ELF format>"
        exit 1
fi

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