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: (26 commits)
Fix function spelling mistake in Thread
Fix function spelling mistake in border_router.c
Fix function spelling mistake in iphc_decompress.c
Fix function spelling mistake in lowpan_context.c
Fix function spelling mistake in lowpan_context.h
Fixed typo 'thead' in thread_neighbor_class.h
Changed nanostack API network size to be a range of values
NEW API for Validation RX Unicast schedule channel.
Channel Mask update ,support for excluded Channels and FHSS API pdate
Start sending PAS message after EAPOL parent TX fails.
Implemented 802.15.4 mode setting (ARMmbed#2328)
Added missing configuration api empty functions
Added configuration storage (ARMmbed#2283)
Removed mbedTLS internal include file
Changed certificate error message wording to be less fatal
Add network property API to Nanostack (ARMmbed#2318)
Fixed Route cost calculation
Added opeation mode validation for detect unsupported values.
Enabled RPL candidate list filtering and only certificate setup accept without limit.
Wi-sun address registration trigger update
...
Copy file name to clipboardExpand all lines: nanostack/platform/arm_hal_phy.h
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,8 @@ typedef enum {
79
79
PHY_EXTENSION_SET_RF_CONFIGURATION, /**< Set RF configuration using phy_rf_channel_configuration_s structure */
80
80
PHY_EXTENSION_FILTERING_SUPPORT, /**< Return filtering modes that can be supported by the PHY driver. See phy_link_filters_e */
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
-
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 */
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
+
PHY_EXTENSION_SET_802_15_4_MODE/**< Set IEEE 802.15.4 mode as defined by phy_802_15_4_mode_t*/
83
84
} phy_extension_type_e;
84
85
85
86
/** Address types */
@@ -172,6 +173,15 @@ typedef enum {
172
173
MODULATION_INDEX_UNDEFINED///< Modulation index undefined
0 commit comments