Skip to content

Commit 5ce3ccb

Browse files
committed
Update links from to CMSIS-Pack/vscode-cmsis-solution
1 parent 8b4f91f commit 5ce3ccb

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Action buttons allow you to build, run, and debug your application, [edit *csolu
5353

5454
The **CMSIS** view displays the name of the current *csolution project* and offers several action buttons.
5555

56-
![Action buttons](https://github.com/ARM-software/vscode-cmsis-csolution/raw/main/docs/images/ActionButtons.png)
56+
![Action buttons](https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution/raw/main/docs/images/ActionButtons.png)
5757

5858
| Action | Description |
5959
|--------|-------------|
@@ -69,7 +69,7 @@ The **CMSIS** view displays the name of the current *csolution project* and offe
6969

7070
## Create Solution view
7171

72-
![Create Solution](https://github.com/ARM-software/vscode-cmsis-csolution/raw/main/docs/images/CreateNewSolution.png)
72+
![Create Solution](https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution/raw/main/docs/images/CreateNewSolution.png)
7373

7474
To start a new *csolution project*, select a [board](https://www.keil.arm.com/boards/) or [device](https://www.keil.arm.com/devices/) and choose from the following project types:
7575

@@ -82,33 +82,33 @@ Then create the *csolution project* on the selected folder on your Host computer
8282

8383
## Configure Solution view
8484

85-
![Configure Solution](https://github.com/ARM-software/vscode-cmsis-csolution/raw/main/docs/images/ConfigureSolution.png)
85+
![Configure Solution](https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution/raw/main/docs/images/ConfigureSolution.png)
8686

8787
When using a [reference application](https://open-cmsis-pack.github.io/cmsis-toolbox/ReferenceApplications/) select compatible software layers for your solution from this view.
8888

8989
## Software Components view
9090

91-
![Software Components](https://github.com/ARM-software/vscode-cmsis-csolution/raw/main/docs/images/SoftwareComponents.png)
91+
![Software Components](https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution/raw/main/docs/images/SoftwareComponents.png)
9292

9393
Select reusable software components for your application from this view.
9494

9595
[CMSIS-Packs](https://open-cmsis-pack.github.io/Open-CMSIS-Pack-Spec/main/html/index.html) provide software components with other optional items such as configuration files, documentation, and user code templates. A software component typically interfaces with other software components or with device peripherals. The list of software components depends on the device or board selected.
9696

9797
## Manage Solution view
9898

99-
![Manage Solution](https://github.com/ARM-software/vscode-cmsis-csolution/raw/main/docs/images/ManageSolution.png)
99+
![Manage Solution](https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution/raw/main/docs/images/ManageSolution.png)
100100

101101
Select the [target](https://open-cmsis-pack.github.io/cmsis-toolbox/build-overview/#target-production-hardware) and configure [related projects](https://open-cmsis-pack.github.io/cmsis-toolbox/build-overview/#configure-related-projects) for your application from this view. A Target Set stores settings for projects, images and debug adapter. You might need different build types or load settings, for example to reduce the debug overhead. Refer also to [Run and Debug](#run-and-debug) below.
102102

103103
## Configuration Wizard
104104

105-
![Configuration Wizard](https://github.com/ARM-software/vscode-cmsis-csolution/raw/main/docs/images/ConfigWizard.png)
105+
![Configuration Wizard](https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution/raw/main/docs/images/ConfigWizard.png)
106106

107107
Many configuration files have annotations for the [CMSIS Configuration Wizard](https://open-cmsis-pack.github.io/Open-CMSIS-Pack-Spec/main/html/configWizard.html). Using the **Open Preview** button in the editor allows you to modify options in a graphical view.
108108

109109
## YML Editor Support
110110

111-
![YML Editor Support](https://github.com/ARM-software/vscode-cmsis-csolution/raw/main/docs/images/SyntaxYML.png)
111+
![YML Editor Support](https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution/raw/main/docs/images/SyntaxYML.png)
112112

113113
The YML syntax support in the editor detects errors, provides auto completion, and documentation links on hover over.
114114

@@ -138,4 +138,4 @@ The [Run and Debug configuration](https://mdk-packs.github.io/vscode-cmsis-solut
138138
139139
## Submit feedback or report issues
140140
141-
To submit feedback or report issues on the Arm CMSIS Solution extension, please use [GitHub issues](https://github.com/ARM-software/vscode-cmsis-csolution/issues) in the extension repository.
141+
To submit feedback or report issues on the Arm CMSIS Solution extension, please use [GitHub issues](https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution/issues) in the extension repository.

api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ triggering build tasks.
77
Example for getting access to the API v2 from another extension:
88

99
```typescript
10-
import type { CsolutionExtension } from '@arm-software/vscode-cmsis-csolution';
10+
import type { CsolutionExtension } from '@Open-CMSIS-Pack/vscode-cmsis-solution';
1111
const csolutionExtension = vscode.extensions.getExtension<CsolutionExtension>('Arm.cmsis-csolution');
1212
if (csolutionExtension) {
1313
const api = (await csolutionExtension.activate()).getApi(2);

api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.60.0",
44
"description": "API for the Arm.cmsis-csolution VS Code extension",
55
"types": "csolution.d.ts",
6-
"repository": "https://github.com/arm-software/vscode-cmsis-csolution",
6+
"repository": "https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution",
77
"files": [
88
"*.d.ts"
99
],

docs/third-party-licenses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TPIP Report for vscode-cmsis-csolution
1+
# TPIP Report for vscode-cmsis-solution
22

33
Report prepared at: 03/03/2026, 10:51:48
44

docs/tpip-header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# TPIP Report for vscode-cmsis-csolution
1+
# TPIP Report for vscode-cmsis-solution

0 commit comments

Comments
 (0)