diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | .vscode/settings.json | 5 | ||||
-rw-r--r-- | .vscode/tasks.json | 6 | ||||
-rw-r--r-- | docs/docs/dev-setup.md | 2 |
4 files changed, 10 insertions, 4 deletions
@@ -3,3 +3,4 @@ bootloader/ modules/ tools/ zephyr/ +build/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..096a82c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "*.overlay": "dts" + } +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 0902d0e..080ffea 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -6,7 +6,7 @@ { "label": "Build", "type": "shell", - "command": "west build", + "command": "cd app && west build", "group": { "kind": "build", "isDefault": true @@ -15,13 +15,13 @@ { "label": "Flash", "type": "shell", - "command": "west flash", + "command": "cd app && west flash", "group": "test" }, { "label": "Debug", "type": "shell", - "command": "west debug", + "command": "cd app && west debug", "group": "test" } ] diff --git a/docs/docs/dev-setup.md b/docs/docs/dev-setup.md index 5eacd87..6f26182 100644 --- a/docs/docs/dev-setup.md +++ b/docs/docs/dev-setup.md @@ -155,7 +155,7 @@ west zephyr-export #### Install Zephyr Python Dependencies ```bash -pip3 install --user -r zephyr/scripts/requirements.txt +pip3 install --user -r zephyr/scripts/requirements-base.txt ``` ### Environment Variables |