stm32f4-uart-bootloader

Simple UART bootloader for STM32F4 MCU's
git clone git://git.mdnr.space/stm32f4-uart-bootloader
Log | Files | Refs | Submodules | README | LICENSE

commit 4053d27676676562e6700de86a9eca7e7ee5bfff
parent 11861d205160bfc5fd70cee8ba3838dc9d86a53d
Author: mehdi-norouzi <mehdeenoroozi@gmail.com>
Date:   Mon, 24 Feb 2025 01:14:40 +0330

fix recursive code block in readme

Diffstat:
MREADME.md | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -41,14 +41,12 @@ Currently the flash memory of the MCU is divided as below: The root directory Makefile takes care of compiling both binaries for bootloader and application and flashing them in the corresponding addresses. - ``` `make all`: compile both application and bootloader binaries `make app`: compile application binary `make bl`: compile bootloader binary `make flash`: flash both application and bootloader to MCU `make flash-bl`: flash bootloader only without touching the application `make flash-app`: flash application only without touching the bootloader - ``` Also there are 2 debug targets `(make fw-debug and make bl-debug)` for debugging the bootlaoder and application remotely on the target.