8000 nrf5/bluetooth: Updating old references to 'sdk' to use the new folde… · godlygeek/circuitpython@56d1065 · GitHub
[go: up one dir, main page]

Skip to content

Commit 56d1065

Browse files
committed
nrf5/bluetooth: Updating old references to 'sdk' to use the new folder name 'bluetooth' in makefiles.
1 parent 9e36242 commit 56d1065

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

nrf5/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ else
3131
include ../py/mkenv.mk
3232
include boards/$(BOARD)/mpconfigboard_$(SD_LOWER).mk
3333

34-
include sdk/bluetooth_common.mk
34+
include bluetooth/bluetooth_common.mk
3535
endif
3636

3737
# qstr definitions (must come before including py.mk)

nrf5/bluetooth/bluetooth_common.mk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ else ifeq ($(SD), s132)
1717
CFLAGS += -DBLUETOOTH_SD=132
1818
SOFTDEV_HEX_NAME = s132_nrf52_3.0.0_softdevice.hex
1919
#else ifeq ($(SD), s1xx)
20-
# include sdk/iot_0.9.0/sdk.mk
20+
# include bluetooth/iot_0.9.0/sdk.mk
2121
else
2222
$(error Incorrect softdevice set flag)
2323
endif
2424

2525
SOFTDEV_HEX = $(lastword $(wildcard $(SDK_ROOT)/components/softdevice/$(SD)/hex/$(SOFTDEV_HEX_NAME)))
2626

27-
INC += -I./sdk
27+
INC += -I./bluetooth
2828

2929
SRC_C += \
30-
sdk/modble.c \
31-
sdk/ble_drv.c \
32-
sdk/ble_uart.c
30+
bluetooth/modble.c \
31+
bluetooth/ble_drv.c \
32+
bluetooth/ble_uart.c

0 commit comments

Comments
 (0)
0