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 315d8fdce0f44fcffe9b446caf6c6af4af9b0efc
parent 4053d27676676562e6700de86a9eca7e7ee5bfff
Author: mehdi-norouzi <mehdeenoroozi@gmail.com>
Date:   Mon, 24 Feb 2025 01:15:37 +0330

fix make commands formating in readme

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

diff --git a/README.md b/README.md @@ -41,12 +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 + - `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.