Skip to content

Commit d82bde0

Browse files
KievDevelgreg-fer
andauthored
Add Thingy:53 to the known devices (#1059)
* Add Thingy:53 to the known devices * up version to 227 Co-authored-by: Grzegorz Ferenc <[email protected]> --------- Co-authored-by: Grzegorz Ferenc <[email protected]>
1 parent fb240ae commit d82bde0

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ This project does _not_ adhere to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html) but contrary to it
88
every new version is a new major version.
99

10+
## 227.0.0 - unreleased
11+
12+
### Added
13+
14+
- Added Nordic Thingy:53 to known devices.
15+
1016
## 226.0.0 - 2025-09-10
1117

1218
### Changed

ipc/device.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export const knownDevicePcas = [
1515
'PCA10100',
1616
'PCA10121',
1717
'PCA20020',
18+
'PCA20053',
1819
'PCA20035',
1920
'PCA10143',
2021
'PCA10152',

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nordicsemiconductor/pc-nrfconnect-shared",
3-
"version": "226.0.0",
3+
"version": "227.0.0",
44
"description": "Shared commodities for developing pc-nrfconnect-* packages",
55
"repository": {
66
"type": "git",

src/Device/deviceInfo/deviceInfo.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,17 @@ const devicesByPca: { [P in KnownDevicePCA]: DeviceInfo } = {
166166
'https://www.nordicsemi.com/About-us/BuyOnline?search_token=nRF6936&series_token=nRF52832',
167167
},
168168
},
169+
PCA20053: {
170+
name: 'Nordic Thingy:53',
171+
cores: 1,
172+
icon: nrf53logo,
173+
website: {
174+
productPage:
175+
'https://www.nordicsemi.com/Products/Development-hardware/Nordic-Thingy-53',
176+
buyOnline:
177+
'https://www.nordicsemi.com/About-us/BuyOnline?search_token=thingy53',
178+
},
179+
},
169180
PCA20035: {
170181
name: 'Nordic Thingy:91',
171182
cores: 1,
@@ -316,6 +327,9 @@ const deviceByUsb = (device: Device) => {
316327
if (device.usb?.product?.startsWith('PPK')) {
317328
return ppkDeviceInfo(device);
318329
}
330+
if (device.usb?.product?.includes('Thingy:53')) {
331+
return devicesByPca.PCA20053;
332+
}
319333
if (device.serialNumber?.startsWith('THINGY91X')) {
320334
return devicesByPca.PCA20049;
321335
}

0 commit comments

Comments
 (0)