File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ It provides lightweight, efficient low‐level hardware access via STM32 Low‑L
15
15
- [ 2. Project Layout] ( #2-project-layout )
16
16
- [ 3. Configure Include Paths] ( #3-configure-include-paths )
17
17
- [ 4. Define Platform Config] ( #4-define-platform-config )
18
+ - [ Examples] ( #examples )
18
19
- [ Building] ( #building )
19
20
- [ STM32CubeIDE] ( #stm32cubeide )
20
21
- [ Makefile / CMake] ( #makefile--cmake )
46
47
│ ├── Libs/ # External libraries
47
48
│ │ └── VL53L0X
48
49
│ └── Utility/ # Utility modules
49
- │ └── Led_animation
50
+ │ │ └── Led_animation
51
+ └── Examples/
52
+ └── Blink_LED/ # Example: Custom CLI + LED blink
50
53
```
51
54
52
55
## Getting Started
@@ -107,6 +110,18 @@ Add preprocessor define in ordef for the framework to pick up configuration `pla
107
110
108
111
---
109
112
113
+ ## Examples
114
+
115
+ ` /Examples ` folder contains preffered file structure with ready‑to‑build demos.
116
+ To test framework, build and upload ` /Blink_LED ` example, transmit over UART fallowing message. You should see onboard LED blinking
117
+
118
+ ``` text
119
+ project_led_blink:x,y,z
120
+ x - LED number (1)
121
+ y - blink time (s) (1 ÷ 59)
122
+ z - blink frequency (Hz) (2 ÷ 100)
123
+ ```
124
+
110
125
## Building
111
126
112
127
PDF supports build systems:
You can’t perform that action at this time.
0 commit comments