mirror of
https://github.com/espressif/esp-nimble.git
synced 2026-08-05 01:27:56 +00:00
nimble/ll: Fix build with DTM enabled
#include<> is used to search for system headers so it does not look in current directory. This failed when building FreeRTOS port, not sure why does not fail on Mynewt.
This commit is contained in:
@@ -43,7 +43,7 @@
|
||||
#include "ble_ll_conn_priv.h"
|
||||
|
||||
#if MYNEWT_VAL(BLE_LL_DIRECT_TEST_MODE) == 1
|
||||
#include <ble_ll_dtm_priv.h>
|
||||
#include "ble_ll_dtm_priv.h"
|
||||
#endif
|
||||
|
||||
/* XXX:
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
#include "ble_ll_conn_priv.h"
|
||||
|
||||
#if MYNEWT_VAL(BLE_LL_DIRECT_TEST_MODE) == 1
|
||||
#include <ble_ll_dtm_priv.h>
|
||||
#include "ble_ll_dtm_priv.h"
|
||||
#endif
|
||||
|
||||
static void ble_ll_hci_cmd_proc(struct ble_npl_event *ev);
|
||||
|
||||
Reference in New Issue
Block a user