This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/sh | |
# Start a new libopencm3 based project for Blue Pill STM32F103C8 board. | |
# Takes project name as a parameter. | |
EXAMPLES_MASTER=\ | |
"https://raw.githubusercontent.com/libopencm3/libopencm3-examples/master" | |
mkdir "$1" | |
cd "$1" |