pill_blink icon indicating copy to clipboard operation
pill_blink copied to clipboard

examples of blinking the STM32F103C8 "blue pill" development board (LED on PC13) using various methods ⛺

Results 6 pill_blink issues
Sort by recently updated
recently updated
newest added

Running `make all` after manually cloning libopencm3 via `git submodule update --init`, the following error presents: ``` arm-none-eabi-gcc -mcpu=cortex-m3 -mthumb -nostartfiles -Llibopencm3/lib -Wl,-T,bluepill.ld -o pill_blink.elf pill_blink.o -lopencm3_stm32f1 -lc -lnosys /opt/arm-gnu-toolchain-12.3/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/bin/ld:...

`make libopencm3` gives an error. ``` > make libopencm3 if [ ! -f libopencm3/Makefile ]; then \ git submodule init; \ git submodule update; \ fi Submodule path 'libopencm3': checked...

Running `make clean` gives an error I can't quite understand. Tested on bare-metal and opencm. ``` rm: invalid option -- 'n' Try 'rm --help' for more information make: [Makefile:25: clean]...

https://hackaday.io/project/158262-using-blue-pill-stm32f103c8t6-as-st-link You can upgrage ST-Link v2 to ST-Link v2.1 This makes it possible to use simultaneously VCP, UART, Mass Storage for upload firmware on one "Blue Pill"

Hey, I really love the write up you did and I'm trying to expand on it using CMake It's working, but kinda WIP - https://geokon-gh.github.io/bluepill/ (and I need to add...