Bluetooth: controller: Fix missing RADIO_TXP_DEFAULT define
Fix compile error due to missing include file that defined RADIO_TXP_DEFAULT. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
parent
a20ecb6722
commit
69ef82f22f
5 changed files with 10 additions and 2 deletions
|
@ -52,6 +52,10 @@ struct lll_scan_aux {
|
|||
uint8_t phy:3;
|
||||
|
||||
uint32_t window_size_us;
|
||||
|
||||
#if defined(CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL)
|
||||
int8_t tx_pwr_lvl;
|
||||
#endif /* CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL */
|
||||
};
|
||||
|
||||
int lll_scan_init(void);
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#include <bluetooth/hci.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
#include "hal/ticker.h"
|
||||
|
||||
#include "util/util.h"
|
||||
|
|
|
@ -12,8 +12,9 @@
|
|||
#include "util/memq.h"
|
||||
#include "util/mayfly.h"
|
||||
|
||||
#include "hal/ticker.h"
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
#include "hal/ticker.h"
|
||||
|
||||
#include "ticker/ticker.h"
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include <bluetooth/hci.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
#include "hal/ticker.h"
|
||||
|
||||
#include "util/util.h"
|
||||
|
|
|
@ -12,8 +12,9 @@
|
|||
#include "util/memq.h"
|
||||
#include "util/mayfly.h"
|
||||
|
||||
#include "hal/ticker.h"
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
#include "hal/ticker.h"
|
||||
|
||||
#include "ticker/ticker.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue