Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NCD-927: Add support for nRF54L15-PDF r0.7.0 #110

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.3.2 - UNRELEASED

EXPERIMENTAL RELEASE

### Added

- Support for nRF54L15-PDK r0.7.0.

## 0.3.1 - 2024-05-28

EXPERIMENTAL RELEASE
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pc-nrfconnect-board-configurator",
"version": "0.3.1",
"version": "0.3.2",
"description": "Configuration tool for Nordic Development Kits",
"displayName": "Board Configurator",
"homepage": "https://github.com/NordicSemiconductor/pc-nrfconnect-board-configurator",
Expand Down
12 changes: 8 additions & 4 deletions src/features/Configuration/boardDefinitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,18 @@ export function getBoardDefinition(
switch (device?.devkit?.boardVersion) {
case 'PCA10156':
// nRF54L15
if (boardRevision === '0.3.0') {
if (
boardRevision === '0.1.0' || // Probably r0.2.0 with a firmware configuration error
boardRevision === '0.2.0' ||
boardRevision === '0.2.1'
) {
return {
boardControllerConfigDefinition: typednrf54l15v030json,
boardControllerConfigDefinition: typednrf54l15v020json,
};
}

// Default is revision 0.2.0 or 0.2.1
return { boardControllerConfigDefinition: typednrf54l15v020json };
// Default is revision 0.3.0 or higher
return { boardControllerConfigDefinition: typednrf54l15v030json };

case 'PCA10153':
// nRF9161
Expand Down