Skip to content

Commit 1454cdd

Browse files
committed
Fixed broken links
1 parent dc8c49b commit 1454cdd

6 files changed

Lines changed: 15 additions & 14 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Fixes
22
<!-- List the GitHub issue this PR resolves -->
3-
- [#<issue-number>](https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution/issues/<issue-number>)
3+
- #<issue-number> (for example: #123)
44

55
## Changes
66
<!-- List the changes this PR introduces -->

.github/lychee.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ exclude = [
3535

3636
# Exclude paths from getting checked. The values are treated as regular expressions
3737
exclude_path = [
38-
"\\.txt$", # skip .txt extensions
39-
"\\.html$", # skip .html extensions
40-
"test-data/", # skip directories named "test",
41-
"test-results/", # skip directories named "test",
42-
"test-workspace/", # skip directories named "test"
38+
"CHANGELOG.md", # skip PR template placeholders
39+
"\\.txt$", # skip .txt extensions
40+
"\\.html$", # skip .html extensions
41+
"test-data/", # skip directories named "test",
42+
"test-results/", # skip directories named "test",
43+
"test-workspace/", # skip directories named "test"
4344
]

DEVELOPMENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Before running a release, check the following:
111111

112112
`<version>` must match a [project manager schemas tag](https://github.com/Open-CMSIS-Pack/devtools/releases)
113113

114-
2. User guide is up-to-date at [MDK-Packs/vscode-cmsis-solution-docs@main](https://github.com/MDK-Packs/vscode-cmsis-solution-docs/tree/main/site).
114+
2. User guide is up-to-date at [MDK-Packs/vscode-cmsis-solution-docs@main](https://github.com/MDK-Packs/vscode-cmsis-solution-docs/tree/main/docs).
115115

116116
3. Update and review [CHANGELOG.md](CHANGELOG.md)
117117

@@ -172,7 +172,7 @@ When a new RPC method or data type is needed:
172172
3. **Implement the server side** in [`ProjMgrRpcServer.cpp`](https://github.com/Open-CMSIS-Pack/devtools/blob/main/tools/projmgr/src/ProjMgrRpcServer.cpp) in the `devtools` repository.
173173

174174
4. **Implement the client side** in this extension:
175-
- Copy the regenerated `rpc-interface.ts` into [src/json-rpc/interface/](src/json-rpc/interface/) and update [version.txt](src/json-rpc/interface/version.txt) to the new API version.
175+
- Copy the regenerated `rpc-interface.ts` into `src/json-rpc/interface/` and update `src/json-rpc/interface/version.txt` to the new API version.
176176
- Expose the new method via `CsolutionService` in [src/json-rpc/csolution-rpc-client.ts](src/json-rpc/csolution-rpc-client.ts).
177177
- Use the method from the relevant data source or manager in [src/data-manager/](src/data-manager/).
178178

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Arm CMSIS Solution provides the following views:
2222
- [Manage Solution view](#manage-solution-view): Manage your solutions with multiple targets, projects, and build types to define the scope of your applications.
2323
- [Software Components view](#software-components-view): Access reusable building blocks that are provided in software packs.
2424

25-
[Settings](https://mdk-packs.github.io/vscode-cmsis-solution-docs/configuration.html#configure-the-extension): Configure features like pack download, [clangd](https://marketplace.visualstudio.com/items?itemName=llvm-vs-code-extensions.vscode-clangd), or usage of web services. When **Use Web Services** is enabled, Arm CMSIS Solution gets from [keil.arm.com](https://www.keil.arm.com/packs/) information about devices, boards, and examples that are provided in software packs.
25+
[Settings](https://mdk-packs.github.io/vscode-cmsis-solution-docs/installation.html#configure-the-extension): Configure features like pack download, [clangd](https://marketplace.visualstudio.com/items?itemName=llvm-vs-code-extensions.vscode-clangd), or usage of web services. When **Use Web Services** is enabled, Arm CMSIS Solution gets from [keil.arm.com](https://www.keil.arm.com/packs/) information about devices, boards, and examples that are provided in software packs.
2626

2727
Arm CMSIS Solution works as a standalone tool and can also interact with other VS Code extensions:
2828

@@ -114,9 +114,9 @@ The YML syntax support in the editor detects errors, provides auto completion, a
114114

115115
## Run and Debug
116116

117-
Arm CMSIS Solution generates the [Run and Debug configuration](https://mdk-packs.github.io/vscode-cmsis-solution-docs/conf_debug.html) files including files `.vscode/launch.json` and `.vscode/tasks.json` for the [Arm CMSIS Debugger](https://marketplace.visualstudio.com/items?itemName=Arm.vscode-cmsis-debugger) and various debug adapters (such as CMSIS-DAP, ULINK, JLink, and ST-Link). The [Manage Solution view](#manage-solution-view) simplifies the setup and supports single-core and multi-core configurations.
117+
Arm CMSIS Solution generates the [Run and Debug configuration](https://mdk-packs.github.io/vscode-cmsis-solution-docs/debug.html#configure-run-and-debug) files including files `.vscode/launch.json` and `.vscode/tasks.json` for the [Arm CMSIS Debugger](https://marketplace.visualstudio.com/items?itemName=Arm.vscode-cmsis-debugger) and various debug adapters (such as CMSIS-DAP, ULINK, JLink, and ST-Link). The [Manage Solution view](#manage-solution-view) simplifies the setup and supports single-core and multi-core configurations.
118118

119-
The [Run and Debug configuration](https://mdk-packs.github.io/vscode-cmsis-solution-docs/configuration.html#configure-run-and-debug) is stored in the `csolution.yml` file under `target-set:` as shown below:
119+
The [Run and Debug configuration](https://mdk-packs.github.io/vscode-cmsis-solution-docs/debug.html#configure-run-and-debug) is stored in the `csolution.yml` file under `target-set:` as shown below:
120120

121121
```yml
122122
target-types:

docs/third-party-licenses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Report prepared at: 03/03/2026, 10:51:48
1313
|@vscode/codicons|0.0.44|https://github.com/microsoft/vscode-codicons|https://github.com/microsoft/vscode-codicons/blob/main/LICENSE|
1414
|@vscode/webview-ui-toolkit|1.4.0|https://github.com/microsoft/vscode-webview-ui-toolkit|https://github.com/microsoft/vscode-webview-ui-toolkit/blob/main/LICENSE|
1515
|antd|5.29.3|https://ant.design|https://github.com/ant-design/ant-design/blob/master/LICENSE|
16-
|async-mutex|0.5.0|https://https://github.com/DirtyHairy/async-mutex|https://github.com/DirtyHairy/async-mutex/blob/master/LICENSE|
16+
|async-mutex|0.5.0|https://github.com/DirtyHairy/async-mutex|https://github.com/DirtyHairy/async-mutex/blob/master/LICENSE|
1717
|eta|4.5.1|https://github.com/eta-dev/eta|https://github.com/eta-dev/eta/blob/main/LICENSE|
1818
|fetch-blob|4.0.0|https://github.com/node-fetch/fetch-blob|https://github.com/node-fetch/fetch-blob/blob/main/LICENSE|
1919
|formdata-polyfill|4.0.10|https://github.com/jimmywarting/FormData|https://github.com/jimmywarting/FormData/blob/master/LICENSE|

src/ARCHITECTURE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ The Solution Outline docks into the left panel presenting a tree view for the se
2727

2828
The Create Solution dialog shall present boards, devices, and draft projects to the user. The draft project shall be used to initialize a new solution workspace.
2929

30-
[TO BE DOCUMENTED](views/create-solution)
30+
[TO BE DOCUMENTED](views/create-solutions)
3131

3232
### Configure Solution
3333

3434
[TO BE DOCUMENTED](views/manage-layers)
3535

3636
### Context Selection
3737

38-
[TO BE DOCUMENTED](views/context-selection)
38+
[TO BE DOCUMENTED](views/manage-solution)
3939

4040
### Manage Components
4141

0 commit comments

Comments
 (0)