stm32 maple mini usb hacks
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 d27077245b Fix NDIS oid query 11 months ago
RTT init 2 years ago
libopencm3 git subrepo clone https://github.com/libopencm3/libopencm3 2 years ago
openocd RDNIS skeleton 2 years ago
src Fix NDIS oid query 11 months ago
.editorconfig init 2 years ago
.gitignore init 2 years ago
CMakeLists.txt RDNIS skeleton 2 years ago
CMakePresets.json init 2 years ago
README.md Build libopencm3 2 years ago
generated.STM32F103C8T6.ld 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 -G Ninja

Build libopencm3

cmake --build build --verbose -t libopencm3

Build project 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