We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23eb79c commit 1276c12Copy full SHA for 1276c12
ports/nrf/Makefile
@@ -6,7 +6,8 @@ $(error Invalid BOARD specified)
6
endif
7
8
# If SoftDevice is selected, try to use that one.
9
-SD ?=
+# Default to SD132 (exact version can be set with SOFTDEV_VERSION)
10
+SD ?= s132
11
SD_LOWER = $(shell echo $(SD) | tr '[:upper:]' '[:lower:]')
12
13
# TODO: Verify that it is a valid target.
ports/nrf/mpconfigport.h
@@ -274,8 +274,8 @@ extern const struct _mp_obj_module_t ble_module;
274
{ MP_ROM_QSTR (MP_QSTR_utime ), MP_ROM_PTR(&mp_module_utime) }, \
275
MUSIC_MODULE \
276
RANDOM_MODULE \
277
- /*BLE_MODULE \
278
- UBLUEPY_MODULE \*/
+ BLE_MODULE \
+ UBLUEPY_MODULE \
279
280
281
#define MICROPY_PORT_BUILTIN_MODULE_WEAK_LINKS \
0 commit comments