Skip to content

Commit 0fd01d6

Browse files
committed
SDK15: Writing to flash now works
1 parent b84b8b3 commit 0fd01d6

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

ChangeLog

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
Graphics.asBMP now takes account of bitmap rotation (fix #1672)
1414
Raspberry pi pin numbering the same if using wiringPi or filesystem GPIO (fix #1673)
1515
nRF52: Peer manager init errors from Nordic libs now not fatal
16+
SDK15: Writing to flash now works
1617

1718
2v03 : nRF5x: Fix issue when calling NRF.setAdvertising while connected via BLE (fix #1659)
1819
nRF5x: 'dump()' not outputs `NRF.setSecurity` line if it has been called.

make/common/NRF5X.make

+1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ else
186186
TARGETSOURCES += \
187187
$(NRF5X_SDK_PATH)/components/softdevice/common/nrf_sdh.c \
188188
$(NRF5X_SDK_PATH)/components/softdevice/common/nrf_sdh_ble.c \
189+
$(NRF5X_SDK_PATH)/components/softdevice/common/nrf_sdh_soc.c \
189190
$(NRF5X_SDK_PATH)/components/libraries/experimental_section_vars/nrf_section_iter.c \
190191
$(NRF5X_SDK_PATH)/components/libraries/fstorage/nrf_fstorage.c \
191192
$(NRF5X_SDK_PATH)/components/libraries/fstorage/nrf_fstorage_sd.c \

targets/nrf5x/bluetooth.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2151,7 +2151,7 @@ static void ble_stack_init() {
21512151
APP_ERROR_CHECK(err_code);
21522152

21532153

2154-
#else
2154+
#else // NRF_SD_BLE_API_VERSION>=5
21552155
ret_code_t err_code;
21562156

21572157
err_code = nrf_sdh_enable_request();

0 commit comments

Comments
 (0)