Skip to content

Commit ffebccd

Browse files
author
Arto Kinnunen
committed
Loosen Wi-SUN configuration value restrictions
Do not restrict Wi-SUN configuration values to adapt possible specification updates.
1 parent c18c32d commit ffebccd

File tree

1 file changed

+13
-19
lines changed

1 file changed

+13
-19
lines changed

features/nanostack/mbed-mesh-api/mbed_lib.json

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -116,29 +116,23 @@
116116
},
117117
"wisun-regulatory-domain": {
118118
"help": "Regulator domain value as specified in the Wi-SUN PHY Specification. Default value 3 is for EU region.",
119-
"value_min": 0,
120-
"value_max": 15,
121119
"value": "3"
122120
},
123121
"wisun-operating-class": {
124-
"help": "Operating class for the regulatory-domain as specified in the Wi-SUN PHY Specification. Default value 2 can be used in EU region.",
125-
"value_min": 0,
126-
"value_max": 42,
127-
"value": "2"
122+
"help": "Operating class for the regulatory-domain as specified in the Wi-SUN PHY Specification. Wi-SUN stack uses operating-class suitable for EU-region if value 255 is used.",
123+
"value": "255"
128124
},
129125
"wisun-operating-mode": {
130-
"help": "Operating mode as specified in the Wi-SUN PHY Specification. Default value 3 can be used in EU region and means 150ksymbol/s and modulation index 0.5.",
131-
"value": "3"
126+
"help": "Operating mode as specified in the Wi-SUN PHY Specification. Wi-SUN stack uses operating-mode suitable for EU-region if value 255 is used.",
127+
"value": "255"
132128
},
133129
"wisun-uc-channel-function": {
134-
"help": "Unicast channel function as specified in the Wi-SUN FAN specification.",
135-
"accepted_values": [0, 1, 2, 3],
136-
"value": 2
130+
"help": "Unicast channel function as specified in the Wi-SUN FAN specification. Wi-SUN stack will select channel function if value 255 is used.",
131+
"value": 255
137132
},
138133
"wisun-bc-channel-function": {
139-
"help": "Broadcast channel function as specified in the Wi-SUN FAN specification.",
140-
"accepted_values": [0, 1, 2, 3],
141-
"value": 2
134+
"help": "Broadcast channel function as specified in the Wi-SUN FAN specification. Wi-SUN stack will select channel function if value 255 is used.",
135+
"value": 255
142136
},
143137
"wisun-uc-fixed-channel": {
144138
"help": "Default 16-bit fixed channel for unicast. Used when channel hopping is not desired.",
@@ -151,16 +145,16 @@
151145
"value": 65535
152146
},
153147
"wisun-bc-interval": {
154-
"help": "Broadcast interval. Duration between broadcast dwell intervals. 32-bit, keep as 0 to learn the value from network.",
155-
"value": 0
148+
"help": "32-bit broadcast interval. Duration between broadcast dwell intervals.",
149+
"value": 1020
156150
},
157151
"wisun-bc-dwell-interval": {
158-
"help": "Broadcast dwell interval. Range: 15-255 milliseconds, keep as 0 to learn the value from network.",
152+
"help": "Broadcast dwell interval. Range: 15-255 milliseconds.",
159153
"value_max": 255,
160-
"value": 0
154+
"value": 255
161155
},
162156
"wisun-uc-dwell-interval": {
163-
"help": "Unicast dwell interval. Range: 15-255 milliseconds",
157+
"help": "Unicast dwell interval. Range: 15-255 milliseconds.",
164158
"value_min": 15,
165159
"value_max": 255,
166160
"value": 255

0 commit comments

Comments
 (0)