summaryrefslogtreecommitdiff
path: root/src/libs/mynewt-nimble
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2022-03-17 21:22:59 +0100
committerJF <JF002@users.noreply.github.com>2022-03-21 20:53:46 +0100
commita8b7fbe48b4a86238f38ed0f084b277b44c428fb (patch)
tree070b088fdff4942266a2946dcbd6e13a71b25d9d /src/libs/mynewt-nimble
parentcd1f218dd8710f61238307a9fa5b0d11e229bffa (diff)
New changes according to the review : Priority 0 for display, 1 for system, timer and ble host, and 2 for ble LL
Diffstat (limited to 'src/libs/mynewt-nimble')
-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 205831a9..49834db1 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, 3, &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, 2, &host_task_h);
+ NULL, 1, &host_task_h);
}