Skip to content

Commit bec388f

Browse files
author
Seppo Takalo
authored
Merge pull request #11078 from bentcooke/52840_patch2
NRF52840: fix include path issues for ble pal cordio ll and gcc
2 parents 0e33dd7 + 4273221 commit bec388f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

features/FEATURE_BLE/targets/TARGET_CORDIO_LL/stack/controller/sources/ble/bb/bb_ble_reslist.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
#include "bb_ble_api.h"
2626
#include "bb_ble_api_reslist.h"
2727
#include "bb_ble_api_pdufilt.h"
28-
#include "pal_bb_ble.h"
29-
#include "pal_crypto.h"
28+
#include "stack/platform/include/pal_bb_ble.h"
29+
#include "stack/platform/include/pal_crypto.h"
3030
#include "wsf_assert.h"
3131
#include "ll_math.h"
3232
#include "util/bda.h"

features/FEATURE_BLE/targets/TARGET_CORDIO_LL/stack/controller/sources/ble/lctr/lctr_act_enc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include "wsf_msg.h"
2828
#include "wsf_trace.h"
2929
#include "util/bstream.h"
30-
#include "pal_crypto.h"
30+
#include "stack/platform/include/pal_crypto.h"
3131
#include <string.h>
3232

3333
/*************************************************************************************************/

features/FEATURE_BLE/targets/TARGET_CORDIO_LL/stack/controller/sources/ble/ll/ll_main_enc_slave.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include "ll_math.h"
2727
#include "wsf_msg.h"
2828
#include "wsf_trace.h"
29-
#include "pal_crypto.h"
29+
#include "stack/platform/include/pal_crypto.h"
3030
#include <string.h>
3131

3232
/*************************************************************************************************/

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/stack/sources/pal_bb_ble_rf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
/*************************************************************************************************/
2323

24-
#include "pal_types.h"
24+
#include "stack/platform/include/pal_types.h"
2525

2626
/**************************************************************************************************
2727
Macros

0 commit comments

Comments
 (0)