@arm-software/vscode-cmsis-csolution
v1.46.0
Published
API for the Arm.cmsis-csolution VS Code extension
Downloads
552
Readme
CMSIS Solution Extension API
This API provides other VSCode extensions access to a subset of functionality implemented by the CMSIS Solution Extension, such as querying available boards, devices, and project drafts, as well as creating new solutions and triggering build tasks.
Example for getting access to the API v2 from another extension:
import type { CsolutionExtension } from '@arm-software/vscode-cmsis-csolution';
const csolutionExtension = vscode.extensions.getExtension<CsolutionExtension>('Arm.cmsis-csolution');
if (csolutionExtension) {
const api = (await csolutionExtension.activate()).getApi(2);
// use api calls as described below
}
API version 2
The API version 2 provides a more streamlined and efficient way to interact with the CMSIS components, making it easier to integrate and utilize these features in other extensions.
Query available boards
This function allows you to query the available boards based on optional filter arguments. It returns a list of boards that match the specified criteria, providing detailed information about each board, including its vendor, name, revision, and associated packs.
Example:
const filter: BoardFilter = { /* optional filter arguments */};
const boards = await api.getBoards(filter); // BoardData[]
console.log(`Available boards (${boards.length}):`);
for (board of boards) {
const pack = await board.pack;
let packId = ''
if (pack) {
let packVersion = ''
if (pack.version) {
packVersion = `@${pack.version}`
}
packId = ` (${pack.vendor}::${pack.name}${packVersion})`
}
console.log(` - ${board.vendor}::${board.name}:${board.rev ?? ''}${packId}`)
}
Query available devices
Similar to querying boards, this function allows you to query the available devices based on optional filter arguments. It returns a list of devices that match the specified criteria, providing detailed information about each device, including its vendor, name, and associated packs.
Example:
const filter: DeviceFilter = { /* optional filter arguments */};
const devices = await api.getDevices(filter); // DeviceData[]
console.log(`Available devices (${devices.length}):`);
for (device of devices) {
const pack = await device.pack;
let packId = ''
if (pack) {
let packVersion = ''
if (pack.version) {
packVersion = `@${pack.version}`
}
packId = ` (${device.pack.vendor}::${device.pack.name}${packVersion})`
}
console.log(` - ${device.vendor}::${device.name}${packId}`)
}
Query available project drafts
Retrieve a list of available project drafts for a selected board and/or device. This function helps you identify and select project drafts that are compatible with the specified hardware, providing a convenient way to kickstart new projects.
Example:
const boardId = boardData.id; // retrieved by api.getBoards()
const deviceId = deviceData.id; // retrieved by api.getDevices()
const drafts = await api.getDraftProjects(boardId, deviceId); // DraftProjectData[]
console.log(`Available project drafts (${drafts.length}):`);
for (draft of drafts) {
const pack = draft.pack;
let packId = ''
if (pack) {
let packVersion = ''
if (pack.version) {
packVersion = `@${pack.version}`
}
packId = ` (${pack.vendor}::${pack.name}${packVersion})`
}
console.log(` - ${draft.name}${packId}`)
}
Create a new solution from a project draft
This function allows you to create a new solution from a selected project draft. It copies the project draft into the specified folder, adapts it for the given board and device, and opens it in a new instance of the code editor. This streamlines the process of setting up new projects, ensuring that all necessary configurations are in place.
Example:
const board = boardData; // retrieved by api.getBoards()
const device = deviceData; // retrieved by api.getDevices()
const draft = draftProjectData; // retrieved by api.getDraftProjects()
const projectOptions : CreateNewSolutionOptions = {
draft, board, device,
folder: '/path/for/new/solution',
};
await api.createNewSolution(projectOptions);
Trigger build tasks
Build, rebuild, or clean tasks can be triggered via the API. This function allows you to specify options such as
--updateRte
and --packs
command line flags to cbuild, providing flexibility in how build tasks are executed. This
is useful for automating the build process and ensuring that all necessary dependencies and configurations are up to
date.
Example:
const buildOptions: CsolutionApiV2.BuildOptions = {
clean: false, // --clean
rebuild: false, // --rebuild
updateRte: false, // --update-rte
packs: false // --packs
};
await api.build(buildOptions);
API version 1 (broken, deprecated)
The API version 1 is broken and deprecated and should not be used any longer.
Broken API calls
The following calls changed their behavior.
getBoards
The APIv1::getBoards()
call now returns only boards found in locally installed packs instead of all indexed packs.
Consider using APIv2::getBoards()
instead.
getDevices
The APIv1::getDevices()
call now returns only devices found in locally installed packs instead of all indexed packs.
Consider using APIv2::getDevices()
instead.