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:
Andrzej Kaczmarek
2018-05-24 15:37:19 +02:00
parent c155820ccd
commit 66eaa96c2f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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:
+1 -1
View File
@@ -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);