Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hello-nrfcloud/proto-map
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v16.2.6
Choose a base ref
...
head repository: hello-nrfcloud/proto-map
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v16.3.0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 24, 2025

  1. feat(lwm2m): add object to describe connection quality

    coderbyheart committed Feb 24, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    e2fa861 View commit details
Showing with 54 additions and 0 deletions.
  1. +54 −0 lwm2m/14501.xml
54 changes: 54 additions & 0 deletions lwm2m/14501.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<LWM2M xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://openmobilealliance.org/tech/profiles/LWM2M-v1_1.xsd">
<Object ObjectType="MODefinition">
<Name>Connection Quality</Name>
<Description1><![CDATA[Information about the connection quality.]]></Description1>
<ObjectID>14501</ObjectID>
<ObjectURN>urn:oma:lwm2m:x:14501</ObjectURN>
<MultipleInstances>Multiple</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Resources>
<Item ID="0">
<Name>Latency</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Integer</Type>
<RangeEnumeration/>
<Units>ms</Units>
<Description><![CDATA[The latency in milliseconds. Example: 52, 2708.]]></Description>
</Item>
<Item ID="1">
<Name>Packet loss</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Integer</Type>
<RangeEnumeration>0..100</RangeEnumeration>
<Units>V</Units>
<Description><![CDATA[Packet loss in percent. Examples: 3, 97.]]></Description>
</Item>
<Item ID="2">
<Name>Throughput</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Integer</Type>
<RangeEnumeration/>
<Units>bytes/s</Units>
<Description><![CDATA[The throughput in bytes per second. Example: 11, 275.]]></Description>
</Item>
<Item ID="99">
<Name>Timestamp</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Mandatory</Mandatory>
<Type>Time</Type>
<RangeEnumeration/>
<Units/>
<Description><![CDATA[The timestamp of when the measurement was performed.]]></Description>
</Item>
</Resources>
<Description2/>
</Object>
</LWM2M>