Skip to content

Commit 7eefe44

Browse files
Merge pull request #390 from NordicSemiconductor/feat/9161-reset-warning
Feat/9161 reset warning
2 parents 48d163a + 746401c commit 7eefe44

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

Changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2.0.1 - 2023-10-12
2+
3+
### Added
4+
5+
- Warning for known issue when resetting nRF9161 DK multiple times during a
6+
trace.
7+
18
## 2.0.0 - 2023-09-29
29

310
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pc-nrfconnect-cellularmonitor",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Capture and analyze modem traces",
55
"displayName": "Cellular Monitor",
66
"homepage": "https://github.com/NordicSemiconductor/pc-nrfconnect-cellularmonitor",

src/components/DeviceSelector.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import type {
1616
DeviceTraits,
1717
} from '@nordicsemiconductor/pc-nrfconnect-shared/nrfutil';
1818

19+
import { is9161DK } from '../features/programSample/programSample';
1920
import {
2021
removeShellParser,
2122
setTerminalSerialPort as setUartSerialPort,
@@ -90,6 +91,12 @@ const openDevice =
9091

9192
dispatch(autoSetTraceSerialPort(device));
9293
dispatch(autoSetUartSerialPort(device));
94+
95+
if (is9161DK(device)) {
96+
logger.warn(
97+
'Modem tracing can become unresponsive when resetting the device multiple times. An automatic firmware update is being worked on.'
98+
);
99+
}
93100
};
94101

95102
const autoSetTraceSerialPort =

0 commit comments

Comments
 (0)