lora hacks using stm32f103 maple mini
Go to file
Arti Zirk 5f0cf28755 Add some code that does nothing 2021-09-06 10:18:20 +03:00
RTT Add some code that does nothing 2021-09-06 10:18:20 +03:00
include Add some code that does nothing 2021-09-06 10:18:20 +03:00
libopencm3@6763681c26 init 2021-09-04 20:30:56 +03:00
src Add some code that does nothing 2021-09-06 10:18:20 +03:00
.editorconfig init 2021-09-04 20:30:56 +03:00
.gitignore init 2021-09-04 20:30:56 +03:00
.gitmodules init 2021-09-04 20:30:56 +03:00
CMakeLists.txt Add some code that does nothing 2021-09-06 10:18:20 +03:00
CMakePresets.json init 2021-09-04 20:30:56 +03:00
README.md init 2021-09-04 20:30:56 +03:00
openocd.cfg init 2021-09-04 20:30:56 +03:00
print_vars.mk init 2021-09-04 20:30:56 +03:00
rules.mk init 2021-09-04 20:30:56 +03:00
toolchain-STM32F1.cmake init 2021-09-04 20:30:56 +03:00

README.md

Build

First time:

  1. git submodule update --init
  2. make -C libopencm3
  3. cmake -S . --preset=default

or older cmake:

  1. cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=toolchain-STM32F1.cmake

And then to build an .elf

  1. cmake --build build --verbose

RTT debug console

run this while openocd is running

while true; do telnet localhost 9090; sleep 1; done