summaryrefslogtreecommitdiff
path: root/src/libs
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-03-30 07:04:11 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-03-30 07:04:11 (GMT)
commit1b6e0ea9f1e9d4ed7b22362588acd83ce3cd4644 (patch)
treef83a61ef965ae8fcb28fdd0ebc419ca37986514d /src/libs
parenta62b893469765923a113acdf85627ce39322880f (diff)
parent8f436e1d74ffdd497c68dc2f34f6a67e430a1932 (diff)
Merge remote-tracking branch 'upstream/develop' into develop
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/mynewt-nimble/porting/npl/freertos/src/nimble_port_freertos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/mynewt-nimble/porting/npl/freertos/src/nimble_port_freertos.c b/src/libs/mynewt-nimble/porting/npl/freertos/src/nimble_port_freertos.c
index b990278..49834db 100644
--- a/src/libs/mynewt-nimble/porting/npl/freertos/src/nimble_port_freertos.c
+++ b/src/libs/mynewt-nimble/porting/npl/freertos/src/nimble_port_freertos.c
@@ -38,7 +38,7 @@ nimble_port_freertos_init(TaskFunction_t host_task_fn)
* since it has compatible prototype.
*/
xTaskCreate(nimble_port_ll_task_func, "ll", configMINIMAL_STACK_SIZE + 200,
- NULL, configMAX_PRIORITIES - 1, &ll_task_h);
+ NULL, 2, &ll_task_h);
#endif
/*
@@ -47,5 +47,5 @@ nimble_port_freertos_init(TaskFunction_t host_task_fn)
* default queue it is just easier to make separate task which does this.
*/
xTaskCreate(host_task_fn, "ble", configMINIMAL_STACK_SIZE + 600,
- NULL, tskIDLE_PRIORITY + 1, &host_task_h);
+ NULL, 1, &host_task_h);
}