first commit

This commit is contained in:
2026-08-30 18:53:38 -07:00
parent d6c7d24359
commit 92e8b401a4
+4 -3
View File
@@ -66,11 +66,12 @@ Run these commands from the workspace root:
```powershell ```powershell
$board = "stm32f4_disco" $board = "stm32f4_disco"
$project = "kconfig_hello"
west build -p always ` west build -p always `
-s apps\kconfig_hello ` -s apps\$project `
-d build\kconfig_hello ` -d build\$project `
-b $board -b $board
west flash -d build\kconfig_hello west flash -d build\$project
``` ```