From 064a6c78dc0ad2b3daf2042d609d306fe17da4d3 Mon Sep 17 00:00:00 2001 From: Greg Speer Date: Mon, 1 Jun 2026 13:18:06 +0300 Subject: [PATCH] docs: Update struct name Replace sl_bt_bluetooth_ll_priorities with sl_btctrl_ll_priorities in radio-task-priorities.md. --- sld272-bluetooth-system-performance/radio-task-priorities.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sld272-bluetooth-system-performance/radio-task-priorities.md b/sld272-bluetooth-system-performance/radio-task-priorities.md index a1c8a61..8ed3760 100644 --- a/sld272-bluetooth-system-performance/radio-task-priorities.md +++ b/sld272-bluetooth-system-performance/radio-task-priorities.md @@ -53,10 +53,10 @@ For more information about Bluetooth priority handling, see [Dynamic Multiprotoc The default priorities are chosen so that they can be used well in most use cases. However, default priorities may not always provide an optimal solution. For example, if in your application it is not important to connect quickly but it is very important to send data in every connection interval via an already established connection, you can lower the priority of the connection initiation process. -The minimum and maximum priorities of each task type can be defined in a `sl_bt_bluetooth_ll_priorities` structure (find the definition of the structure in sl_bt_ll_config.h). To overwrite the default priorities, add a new line to `SL_BT_CONFIG_DEFAULT` in sl_bluetooth_config.h, as you see below: +The minimum and maximum priorities of each task type can be defined in a `sl_btctrl_ll_priorities` structure (find the definition of the structure in sl_bt_ll_config.h). To overwrite the default priorities, add a new line to `SL_BT_CONFIG_DEFAULT` in sl_bluetooth_config.h, as you see below: ```c -sl_bt_bluetooth_ll_priorities ll_priorities = { 191, 143, //scan_min, scan_max +sl_btctrl_ll_priorities ll_priorities = { 191, 143, //scan_min, scan_max 175, 127, //adv_min, adv_max 135, 0, //conn_min, conn_max 55, 15, //init_min, init_max