Skip to content

Commit fe7fe2e

Browse files
authored
Minor build error fix (#62)
Signed-off-by: Adam BZH <[email protected]>
1 parent 678dd62 commit fe7fe2e

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ add_custom_target(
6666
set(PYTHON_RUNNER ${PROJECT_BINARY_DIR}/venv/bin/python)
6767
add_custom_target(
6868
${CMAKE_PROJECT_NAME}_PYENV
69-
COMMAND python -m venv ${PROJECT_BINARY_DIR}/venv
69+
COMMAND python -m venv ${PROJECT_BINARY_DIR}/venv --system-site-packages
7070
COMMAND ${PROJECT_BINARY_DIR}/venv/bin/pip install -r ${DIR_UTILS}/requirements.txt
7171
)
7272

app/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ static void ble_evt_handler(const ble_evt_t* p_ble_evt, void* p_context)
13831383
if ( request_service_changed )
13841384
{
13851385
request_service_changed = false;
1386-
app_sched_event_put(NULL, NULL, send_service_changed);
1386+
app_sched_event_put(NULL, 0, send_service_changed);
13871387
}
13881388
break;
13891389

utils/nrfutil

-1.65 MB
Binary file not shown.

0 commit comments

Comments
 (0)