Skip to content

Commit

Permalink
docs: up version and add changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
boundlesscalm committed Feb 24, 2025
1 parent ab1a164 commit 69033fe
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 2.4.3 - Unreleased

### Changed

- nRF54L15 DK: Only valid Transmit Power values (-8 dBm to 8 dBm) are now
displayed.

### Fixed

- Issue where the Transmit Power slider would disallow setting valid values.

## 2.4.2 - 2024-11-11

### Changed
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-dtm",
"version": "2.4.2",
"version": "2.4.3",
"displayName": "Direct Test Mode",
"description": "RF PHY testing of Bluetooth Low Energy devices",
"homepage": "https://github.com/NordicSemiconductor/pc-nrfconnect-dtm",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/boards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const nRF52840 = { ...defaultDevice };

const nRF54L15 = {
...defaultDevice,
txPower: Constants.dbmValues.filter(tx => tx < -8),
txPower: Constants.dbmValues.filter(tx => tx >= -8),
};

function fromPCA(board: string | null) {
Expand Down

0 comments on commit 69033fe

Please sign in to comment.