lora hacks using stm32f103 maple mini
Go to file
Arti Zirk 8f5dcffa16 Add linker script 2021-09-30 14:47:41 +03:00
RTT Add some code that does nothing 2021-09-06 10:18:20 +03:00
include LoRa Send and Receive works 2021-09-30 13:28:58 +03:00
libopencm3@6763681c26 init 2021-09-04 20:30:56 +03:00
openocd LoRa Send and Receive works 2021-09-30 13:28:58 +03:00
src LoRa Send and Receive works 2021-09-30 13:28:58 +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 LoRa Send and Receive works 2021-09-30 13:28:58 +03:00
CMakePresets.json init 2021-09-04 20:30:56 +03:00
README.md init 2021-09-04 20:30:56 +03:00
generated.STM32F103C8T6.ld Add linker script 2021-09-30 14:47:41 +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