stm32f103rb_hal_blink

Non-blocking, event triggered blink example using HAL library
Index Commits Files Refs README
commit 4d16627044ee0c568b875645f7e9a05452daf8fe
parent f545365fad496420ef208555791264f83530e9d9
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date:   Sat, 14 Mar 2026 20:37:09 -0300

updated `README.md`

Diffstat:
MREADME.md | 17+++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
diff --git a/README.md b/README.md
@@ -1,16 +1,13 @@
-# Stm32 blink example
+# Non-blocking blink example
 
-## Execution stack
+This is an example/template of a bare metal, event triggered application that
+runs tasks secuentally for STM32 boards using HAL library, in particular
+STM32F103RB on NUCLEO-F103RB board.
 
-The main loop calls the main app and then this app executes the tasks
-secuentially in order
+## Execution stack
 
-```text
-app
-`- task_sensor
-`- task_system
-`- task_actuator
-```
+The main loop calls the main app and then this app executes the attached tasks
+secuentially in order: `task_sensor`, `task_system` and `task_actuator`.
 
 ## Debug