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.
|
4 months ago | |
---|---|---|
RTT | 4 months ago | |
datasheets | 4 months ago | |
libopencm3 | 4 months ago | |
openocd | 4 months ago | |
src | 4 months ago | |
.gitignore | 4 months ago | |
CMakeLists.txt | 4 months ago | |
CMakePresets.json | 4 months ago | |
README.md | 4 months ago | |
generated.STM32F103C8T6.ld | 4 months ago | |
print_vars.mk | 4 months ago | |
rules.mk | 4 months ago | |
toolchain-STM32F1.cmake | 4 months ago |
README.md
RC Car using LoRa
Build
First time:
git submodule update --init
make -C libopencm3
cmake -S . --preset=default
or older cmake:
cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=toolchain-STM32F1.cmake
And then to build an .elf
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
Print libopencm3 variables
make -f print_vars.mk print_genlink_vars
Build linker file
make -f print_vars.mk generated.STM32F103C8T6.ld