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
Merge branch 'release_internal' into release_external
* release_internal: (30 commits)
Ignore ns_monitor when receiving Ack (#2417)
Add support for Ethernet RA dns configuration
Iotthd 4239 (#2414)
add empty function for ws_stack_info_get
Changed RADIUS shared secret length to 16-bit value
Added information API to Wi-SUN and border router
EDFE error handling update
Fix adaptation interface unit tests (#2409)
FHSS_WS: Fixed reading unicast remaining slots (#2408)
Border Router RADIUS client basic authentication functionality (#2406)
Adaptation IF: Allocate fragmentation buffer only if needed (#2407)
Added storing of PAN version to NVM on BR
Iotthd 4224 (#2403)
BR EUI-64 is now selected for 4WH using PMKID on 4WH Message 1
Timing tool traces (#2401)
Fixed new PD data request for check if EDFE exchange is active.
Extented Frame exchange support
Add missing test method to ws_empty_functions
Add EDFE mode to Socket API setsockopt
Test API to adjust 6LoWPAN fragmentation MTU size (#2398)
...
* 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