File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
8
## 2.0.0 - 2023-09-29
2
9
3
10
### Added
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " pc-nrfconnect-cellularmonitor" ,
3
- "version" : " 2.0.0 " ,
3
+ "version" : " 2.0.1 " ,
4
4
"description" : " Capture and analyze modem traces" ,
5
5
"displayName" : " Cellular Monitor" ,
6
6
"homepage" : " https://github.com/NordicSemiconductor/pc-nrfconnect-cellularmonitor" ,
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import type {
16
16
DeviceTraits ,
17
17
} from '@nordicsemiconductor/pc-nrfconnect-shared/nrfutil' ;
18
18
19
+ import { is9161DK } from '../features/programSample/programSample' ;
19
20
import {
20
21
removeShellParser ,
21
22
setTerminalSerialPort as setUartSerialPort ,
@@ -90,6 +91,12 @@ const openDevice =
90
91
91
92
dispatch ( autoSetTraceSerialPort ( device ) ) ;
92
93
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
+ }
93
100
} ;
94
101
95
102
const autoSetTraceSerialPort =
You can’t perform that action at this time.
0 commit comments