manifest: openthread upmerge to d9abe30
openthread upmerge to `d9abe30` Signed-off-by: Piotr Jasiński <piotr.jasinski@nordicsemi.no>
This commit is contained in:
parent
84fd596062
commit
9efd52fb90
3 changed files with 26 additions and 10 deletions
|
@ -87,11 +87,17 @@ config OPENTHREAD_CSL_RECEIVE_TIME_AHEAD
|
|||
int "CSL receiver wake up margin in microseconds"
|
||||
default 5000
|
||||
|
||||
config OPENTHREAD_CSL_MIN_RECEIVE_ON
|
||||
int "Minimum CSL receive window"
|
||||
default 5696
|
||||
config OPENTHREAD_MIN_RECEIVE_ON_AHEAD
|
||||
int "Minimum receiving time before start of MHR"
|
||||
default 192
|
||||
help
|
||||
The minimum CSL receive window (in microseconds) required to receive a full IEEE 802.15.4 frame
|
||||
The minimum time (microseconds) that radio has to be in receive mode before the start of the MHR.
|
||||
|
||||
config OPENTHREAD_MIN_RECEIVE_ON_AFTER
|
||||
int "Minimum receiving time after start of MHR"
|
||||
default 5504
|
||||
help
|
||||
The minimum time (microseconds) that radio should be in receive mode after the start of the MHR.
|
||||
|
||||
config OPENTHREAD_PLATFORM_CSL_UNCERT
|
||||
int "CSL uncertainty"
|
||||
|
|
|
@ -285,14 +285,24 @@
|
|||
#endif /* CONFIG_OPENTHREAD_CSL_RECEIVE_TIME_AHEAD */
|
||||
|
||||
/**
|
||||
* @def OPENTHREAD_CONFIG_CSL_MIN_RECEIVE_ON
|
||||
* @def OPENTHREAD_CONFIG_MIN_RECEIVE_ON_AHEAD
|
||||
*
|
||||
* The minimum CSL receive window (in microseconds) required to receive an IEEE 802.15.4 frame.
|
||||
* The minimum time (microseconds) that radio has to be in receive mode before the start of the MHR.
|
||||
*
|
||||
*/
|
||||
#ifdef CONFIG_OPENTHREAD_CSL_MIN_RECEIVE_ON
|
||||
#define OPENTHREAD_CONFIG_CSL_MIN_RECEIVE_ON CONFIG_OPENTHREAD_CSL_MIN_RECEIVE_ON
|
||||
#endif /* CONFIG_OPENTHREAD_CSL_MIN_RECEIVE_ON */
|
||||
#ifdef CONFIG_OPENTHREAD_MIN_RECEIVE_ON_AHEAD
|
||||
#define OPENTHREAD_CONFIG_MIN_RECEIVE_ON_AHEAD CONFIG_OPENTHREAD_MIN_RECEIVE_ON_AHEAD
|
||||
#endif /* CONFIG_OPENTHREAD_MIN_RECEIVE_ON_AHEAD */
|
||||
|
||||
/**
|
||||
* @def OPENTHREAD_CONFIG_MIN_RECEIVE_ON_AFTER
|
||||
*
|
||||
* The minimum time (microseconds) that radio has to be in receive mode after the start of the MHR .
|
||||
*
|
||||
*/
|
||||
#ifdef CONFIG_OPENTHREAD_MIN_RECEIVE_ON_AFTER
|
||||
#define OPENTHREAD_CONFIG_MIN_RECEIVE_ON_AFTER CONFIG_OPENTHREAD_MIN_RECEIVE_ON_AFTER
|
||||
#endif /* CONFIG_OPENTHREAD_MIN_RECEIVE_ON_AFTER */
|
||||
|
||||
/**
|
||||
* @def OPENTHREAD_CONFIG_CSL_TIMEOUT
|
||||
|
|
2
west.yml
2
west.yml
|
@ -210,7 +210,7 @@ manifest:
|
|||
revision: 233fb29c52ffa7733ba132a2b5987a8201ba8ec6
|
||||
path: modules/lib/open-amp
|
||||
- name: openthread
|
||||
revision: 1203ea6426a906d62a3921b6d4c6a4a6c8e0abde
|
||||
revision: d9abe3071c0131a4adb5d7e7451319b735e6d855
|
||||
path: modules/lib/openthread
|
||||
- name: picolibc
|
||||
path: modules/lib/picolibc
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue