Skip to content

Commit

Permalink
softdevice_controller: rev 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
Browse files Browse the repository at this point in the history
CHANGELOG.rst contains the list of changes.

Signed-off-by: Ivan Iushkov <[email protected]>
  • Loading branch information
ivaniushkov committed Dec 4, 2024
1 parent b28aa75 commit 1fc8f4c
Show file tree
Hide file tree
Showing 33 changed files with 64 additions and 27 deletions.
39 changes: 38 additions & 1 deletion softdevice_controller/include/sdc.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,18 @@ extern "C" {
/** @brief Default ISO TX PDU buffer per stream count. */
#define SDC_DEFAULT_ISO_TX_PDU_BUFFER_PER_STREAM_COUNT 0

/** @brief Default maximum number of concurrent connections supporting CS procedure */
/** @brief Default maximum number of concurrent connections supporting Channel Sounding procedure */
#define SDC_DEFAULT_CS_COUNT 0

/** @brief Default maximum number of antenna paths supported in Channel Sounding. */
#define SDC_DEFAULT_CS_MAX_ANTENNA_PATHS_SUPPORTED 1

/** @brief Default number of antennas supported by the local device in Channel Sounding. */
#define SDC_DEFAULT_CS_NUM_ANTENNAS_SUPPORTED 1

/** @brief Default optional support for Channel Sounding step mode-3. */
#define SDC_DEFAULT_CS_STEP_MODE3_SUPPORTED false

/** @brief Size of build revision array in bytes. */
#define SDC_BUILD_REVISION_SIZE 20

Expand Down Expand Up @@ -414,6 +423,8 @@ enum sdc_cfg_type
SDC_CFG_TYPE_ISO_BUFFER_CFG,
/** See @ref sdc_cfg_t::cs_count. */
SDC_CFG_TYPE_CS_COUNT,
/** See @ref sdc_cfg_t::cs_cfg. */
SDC_CFG_TYPE_CS_CFG,
};


Expand Down Expand Up @@ -529,6 +540,27 @@ typedef struct
} sdc_cfg_iso_buffer_cfg_t;


typedef struct
{
/** Configures the maximum number of antenna paths supported in Channel Sounding.
* Valid range [1, 4].
*
* Default: @ref SDC_DEFAULT_CS_MAX_ANTENNA_PATHS_SUPPORTED.
*/
uint8_t max_antenna_paths_supported;
/** Configures the number of antennas supported by the local device in Channel Sounding.
* Valid range [1, @ref max_antenna_paths_supported].
*
* Default: @ref SDC_DEFAULT_CS_NUM_ANTENNAS_SUPPORTED.
*/
uint8_t num_antennas_supported;
/** Configures support of optional step mode-3 in Channel Sounding.
*
* Default: @ref SDC_DEFAULT_CS_STEP_MODE3_SUPPORTED.
*/
bool step_mode3_supported;
} sdc_cfg_cs_cfg_t;

/** @brief SoftDevice Controller configuration. */
typedef union
{
Expand Down Expand Up @@ -662,6 +694,11 @@ typedef union
* Default: @ref SDC_DEFAULT_CS_COUNT.
*/
sdc_cfg_role_count_t cs_count;
/** Configures the capabilities enabled in the Channel Sounding feature.
*
* Default: See @ref sdc_cfg_cs_cfg_t.
*/
sdc_cfg_cs_cfg_t cs_cfg;
} sdc_cfg_t;


Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf52/hard-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x1063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:52:35Z'
timestamp: '2024-12-04T15:38:50Z'
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf52/soft-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x1063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:52:35Z'
timestamp: '2024-12-04T15:38:50Z'
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf52/softfp-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x1063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:52:35Z'
timestamp: '2024-12-04T15:38:50Z'
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf53/soft-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x2063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:53:37Z'
timestamp: '2024-12-04T15:40:03Z'
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf54h/hard-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x4063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:54:45Z'
timestamp: '2024-12-04T15:41:19Z'
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf54h/soft-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x4063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:54:45Z'
timestamp: '2024-12-04T15:41:19Z'
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf54h/softfp-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x4063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:54:45Z'
timestamp: '2024-12-04T15:41:19Z'
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf54l/hard-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x3063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:55:55Z'
timestamp: '2024-12-04T15:42:39Z'
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf54l/soft-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x3063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:55:55Z'
timestamp: '2024-12-04T15:42:39Z'
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf54l/softfp-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x3063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:55:55Z'
timestamp: '2024-12-04T15:42:39Z'
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf54l_ns/hard-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x3063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:56:59Z'
timestamp: '2024-12-04T15:43:48Z'
Binary file not shown.
4 changes: 2 additions & 2 deletions softdevice_controller/lib/nrf54l_ns/soft-float/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x3063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:56:59Z'
timestamp: '2024-12-04T15:43:48Z'
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description: SoftDevice Controller
git_revision: 93c4537c2712c49dfcfb766faa19da5c77bed391
git_revision: 5e894059db09d7b704e6678dc1e38ccc0ce19cd3
ll_subversion_number: '0x3063'
ll_version_number: '0x0E'
timestamp: '2024-12-04T07:56:59Z'
timestamp: '2024-12-04T15:43:48Z'

0 comments on commit 1fc8f4c

Please sign in to comment.