File tree Expand file tree Collapse file tree 6 files changed +13
-2
lines changed
subsys/bluetooth/controller/ll_sw
tests/bluetooth/controller/mock_ctrl/src Expand file tree Collapse file tree 6 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2018-2019 Nordic Semiconductor ASA
2
+ * Copyright (c) 2018-2025 Nordic Semiconductor ASA
3
3
*
4
4
* SPDX-License-Identifier: Apache-2.0
5
5
*/
6
6
7
+ #if DT_NODE_HAS_PROP (DT_NODELABEL (hfxo ), startup_time_us )
8
+ #define EVENT_OVERHEAD_XTAL_US DT_PROP(DT_NODELABEL(hfxo), startup_time_us)
9
+ #else
7
10
#define EVENT_OVERHEAD_XTAL_US 1500
11
+ #endif
8
12
#define EVENT_OVERHEAD_PREEMPT_US 0 /* if <= min, then dynamic preempt */
9
13
#define EVENT_OVERHEAD_PREEMPT_MIN_US 0
10
14
#define EVENT_OVERHEAD_PREEMPT_MAX_US EVENT_OVERHEAD_XTAL_US
Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
#include <stddef.h>
8
+
8
9
#include <zephyr/kernel.h>
9
- #include <soc .h>
10
+ #include <zephyr/devicetree .h>
10
11
#include <zephyr/bluetooth/hci_types.h>
11
12
#include <zephyr/sys/byteorder.h>
12
13
14
+ #include <soc.h>
15
+
13
16
#include "hal/cpu.h"
14
17
#include "hal/ecb.h"
15
18
#include "hal/ccm.h"
Original file line number Diff line number Diff line change 4
4
* SPDX-License-Identifier: Apache-2.0
5
5
*/
6
6
7
+ #include <zephyr/devicetree.h>
7
8
#include <zephyr/sys/byteorder.h>
8
9
#include <zephyr/sys/slist.h>
9
10
#include <zephyr/sys/util.h>
Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
#include <zephyr/types.h>
8
+ #include <zephyr/devicetree.h>
8
9
#include <zephyr/ztest.h>
9
10
10
11
#include <zephyr/bluetooth/hci.h>
Original file line number Diff line number Diff line change 7
7
#include <zephyr/ztest.h>
8
8
9
9
#include <zephyr/kernel.h>
10
+ #include <zephyr/devicetree.h>
10
11
11
12
#include "hal/ccm.h"
12
13
#include "hal/ticker.h"
Original file line number Diff line number Diff line change 7
7
#include <zephyr/ztest.h>
8
8
9
9
#include <zephyr/kernel.h>
10
+ #include <zephyr/devicetree.h>
10
11
#include <zephyr/bluetooth/buf.h>
11
12
#include <zephyr/sys/byteorder.h>
12
13
You can’t perform that action at this time.
0 commit comments