You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Squashed 'connectivity/nanostack/sal-stack-nanostack/' changes from b3fe574..48609ae
48609ae Merge branch 'release_internal' into release_external
62d8586 Ignore ns_monitor when receiving Ack (#2417)
3323f36 Add support for Ethernet RA dns configuration
d8e7d40 Iotthd 4239 (#2414)
b46f3c6 add empty function for ws_stack_info_get
fc97980 Changed RADIUS shared secret length to 16-bit value
f827ffc Added information API to Wi-SUN and border router
8f1f9d5 EDFE error handling update
51bf94e Fix adaptation interface unit tests (#2409)
0860b57 FHSS_WS: Fixed reading unicast remaining slots (#2408)
4d8c03b Border Router RADIUS client basic authentication functionality (#2406)
fbfada9 Adaptation IF: Allocate fragmentation buffer only if needed (#2407)
66f1bff Added storing of PAN version to NVM on BR
89826ce Iotthd 4224 (#2403)
3fc1ae2 BR EUI-64 is now selected for 4WH using PMKID on 4WH Message 1
af8438e Timing tool traces (#2401)
7938795 Fixed new PD data request for check if EDFE exchange is active.
85ab8fd Extented Frame exchange support
86b1f27 Merge pull request #2399 from ARMmbed/IOTTHD-4220
fed69e0 Add missing test method to ws_empty_functions
6b58e26 Add EDFE mode to Socket API setsockopt
1283077 Test API to adjust 6LoWPAN fragmentation MTU size (#2398)
e787874 Init MAC MTU size based on driver MTU size (#2397)
bf8e89e Ignore neighbors using unsupported channel function (#2395)
1c263fd FHSS exclude channel usage from mask and Brazilian Domain support
841dcbe MAC: Configurable data whitening (#2393)
9a10d66 Fix global address detection (#2392)
f27fe86 Corrected network name and PAN ID change on auth start
bcce0ed Clarified border router routing table API description
e4630a4 Wi-SUN interface now informs address changes as interface events
2174374 Fix error found by coverity (#2389)
843254a MPL: traces for transmit and receive message (#2387)
git-subtree-dir: connectivity/nanostack/sal-stack-nanostack
git-subtree-split: 48609ae
* This function can be used to read CCA threshold table.
1148
+
* CCA threshold table structure contains number of channels and an array indicating the currently used CCA threshold value of each channel. CCA threshold values are updated by library continuously.
1149
+
* If channels are reconfigured, number of channels and table length are changed automatically. User should check the table length (number of channels) before reading the table.
1150
+
* Automatic CCA threshold feature may not be enabled before interface is up, causing function to return NULL.
1151
+
* Returned pointer to cca_threshold_table_s structure is valid until interface is destroyed. Re-reading the pointer with this function is allowed any time.
1152
+
*
1153
+
* \param interface_id Network interface ID.
1154
+
* \return NULL if automatic CCA threshold feature is not enabled, otherwise pointer to CCA threshold structure.
Copy file name to clipboardExpand all lines: nanostack/platform/arm_hal_phy.h
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,7 @@ typedef enum {
81
81
PHY_EXTENSION_SET_TX_POWER, /**< Set TX output power which is given as percentage of maximum. 0 is the lowest possible TX power and 100 is the highest possible TX power */
82
82
PHY_EXTENSION_SET_CCA_THRESHOLD, /**< Set CCA threshold which is given as percentage of maximum threshold. 0 is the lowest(strictest) possible threshold and 100 is the highest possible threshold */
83
83
PHY_EXTENSION_SET_CHANNEL_CCA_THRESHOLD, /**< Set CCA threshold which is given as dBm. This value is set in PHY_LINK_CCA_PREPARE callback and PHY driver should update the CCA threshold configuration */
84
+
PHY_EXTENSION_SET_DATA_WHITENING, /**< Enable or disable data whitening. Boolean true for enable, false for disable */
84
85
PHY_EXTENSION_SET_802_15_4_MODE/**< Set IEEE 802.15.4 mode as defined by phy_802_15_4_mode_t*/
0 commit comments