We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0829046 commit 50eab17Copy full SHA for 50eab17
ntn-udp-payload/parse.ts
@@ -80,6 +80,10 @@ export const parse = (
80
81
const objects: Array<LwM2MObjectInstance> = []
82
83
+ let brdV = 'keysight_demo'
84
+ if (operator === 90198) brdV = 'skylo_demo'
85
+ if (operator === 90197) brdV = 'sateliot'
86
+
87
const deviceInfo: DeviceInformation_14204 = {
88
ObjectID: LwM2MObjectID.DeviceInformation_14204,
89
ObjectVersion: '1.0',
@@ -88,7 +92,7 @@ export const parse = (
92
// 1: SIM ICCID ?
93
2: '0.0.0-development', // Modem firmware version
90
94
3: '0.0.0-development', // Application firmware version
91
- 4: operator === 90198 ? 'skylo_demo' : 'keysight_demo',
95
+ 4: brdV,
96
99: tsInSeconds,
97
},
98
}
0 commit comments