Skip to content

Commit 52fe0ba

Browse files
thomas-m-johansennordicjm
authored andcommitted
softdevice_controller: rev d88c12a0e7ce6cc3e0908cee97e4f964505ba375
CHANGELOG.rst contains the list of changes. Signed-off-by: Thomas Johansen <thomas.johansen@nordicsemi.no>
1 parent e7b3381 commit 52fe0ba

33 files changed

+58
-42
lines changed

softdevice_controller/include/sdc.h

+19-3
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ extern "C" {
209209
*
210210
* @param[in] num_links Total number of peripheral and central links supported.
211211
*/
212-
#define SDC_MEM_SUBRATING(num_links) ((num_links) > 0 ? (11 + (num_links) * 119) : 0)
212+
#define SDC_MEM_SUBRATING(num_links) ((num_links) > 0 ? (12 + (num_links) * 112) : 0)
213213

214214
/** @brief Maximum memory required when supporting periodic advertising sync transfer.
215215
*
@@ -379,6 +379,17 @@ typedef void (*sdc_fault_handler_t)(const char * file, const uint32_t line);
379379
*/
380380
typedef void (*sdc_callback_t)(void);
381381

382+
#define CS_ANTENNA_SWITCH_CALLBACK_TYPE_DEFINED
383+
384+
/** @brief Function prototype for antenna switching callback in Channel Sounding.
385+
*
386+
* See also @ref sdc_support_channel_sounding
387+
*
388+
* @param[in] antenna_index The index of the antenna being switched to.
389+
* Valid range [0, @ref sdc_cfg_cs_cfg_t::num_antennas_supported - 1]
390+
*/
391+
typedef void (*sdc_cs_antenna_switch_callback_t)(uint8_t antenna_index);
392+
382393

383394
enum sdc_cfg_type
384395
{
@@ -1354,17 +1365,22 @@ int32_t sdc_support_channel_sounding_test(void);
13541365

13551366
/** @brief Support LE Channel Sounding
13561367
*
1357-
* After this API is called, the controller will support the HCI command
1368+
* After this API is called, the controller will support the HCI commands
13581369
* related to Channel Sounding.
13591370
*
13601371
* The application shall call @ref sdc_support_channel_sounding_test() to enable
13611372
* support for Channel Sounding test command.
13621373
*
1374+
* @param[in] antenna_switch_cb Antenna Switching callback used to control an antennna switch
1375+
* in the case of a multiantenna application. May be NULL if no
1376+
* antenna switching is needed. See
1377+
* @ref sdc_cfg_cs_cfg_t::num_antennas_supported.
1378+
*
13631379
* @retval 0 Success
13641380
* @retval -NRF_EPERM This API must be called before @ref sdc_cfg_set() or @ref sdc_enable().
13651381
* @retval -NRF_EOPNOTSUPP Channel Sounding is not supported
13661382
*/
1367-
int32_t sdc_support_channel_sounding(void);
1383+
int32_t sdc_support_channel_sounding(sdc_cs_antenna_switch_callback_t antenna_switch_cb);
13681384

13691385
#ifdef __cplusplus
13701386
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x10AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x10B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:52:30Z'
5+
timestamp: '2025-02-21T13:09:16Z'
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x10AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x10B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:52:30Z'
5+
timestamp: '2025-02-21T13:09:16Z'
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x10AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x10B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:52:30Z'
5+
timestamp: '2025-02-21T13:09:16Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x20AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x20B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:53:33Z'
5+
timestamp: '2025-02-21T13:10:17Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x40AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x40B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:54:42Z'
5+
timestamp: '2025-02-21T13:10:59Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x40AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x40B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:54:42Z'
5+
timestamp: '2025-02-21T13:10:59Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x40AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x40B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:54:42Z'
5+
timestamp: '2025-02-21T13:10:59Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x30AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x30B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:55:53Z'
5+
timestamp: '2025-02-21T13:12:00Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x30AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x30B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:55:53Z'
5+
timestamp: '2025-02-21T13:12:00Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x30AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x30B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:55:53Z'
5+
timestamp: '2025-02-21T13:12:00Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x30AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x30B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:58:58Z'
5+
timestamp: '2025-02-21T13:15:06Z'
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x30AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x30B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:58:58Z'
5+
timestamp: '2025-02-21T13:15:06Z'
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: a400249e5d068afcfe0aa9d0c2f03aff28590c94
3-
ll_subversion_number: '0x30AB'
2+
git_revision: d88c12a0e7ce6cc3e0908cee97e4f964505ba375
3+
ll_subversion_number: '0x30B2'
44
ll_version_number: '0x0E'
5-
timestamp: '2025-02-14T10:58:58Z'
5+
timestamp: '2025-02-21T13:15:06Z'

0 commit comments

Comments
 (0)