lora hacks using stm32f103 maple mini
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Arti Zirk f42810f299 Add better RTT telnet watch command 2 years ago
RTT Add some code that does nothing 2 years ago
include LoRa Send and Receive works 2 years ago
libopencm3@6763681c26 init 2 years ago
openocd LoRa Send and Receive works 2 years ago
src LoRa Send and Receive works 2 years ago
.editorconfig init 2 years ago
.gitignore init 2 years ago
.gitmodules init 2 years ago
CMakeLists.txt LoRa Send and Receive works 2 years ago
CMakePresets.json init 2 years ago
README.md Add better RTT telnet watch command 2 years ago
generated.STM32F103C8T6.ld Add linker script 2 years ago
print_vars.mk init 2 years ago
rules.mk init 2 years ago
toolchain-STM32F1.cmake init 2 years ago

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 if nc -z localhost 9090; then telnet localhost 9090; else sleep 1; fi; done