Skip to content

Commit d80f0a1

Browse files
committed
softdevice_controller: rev 51aa07f7ef8a09c357c081fa237de83747a5f64a
CHANGELOG.rst contains the list of changes. Signed-off-by: Ivan Iushkov <[email protected]>
1 parent d473223 commit d80f0a1

File tree

48 files changed

+39
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+39
-67
lines changed

softdevice_controller/CHANGELOG.rst

Lines changed: 10 additions & 0 deletions

softdevice_controller/include/sdc.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extern "C" {
2626

2727
#include <stdint.h>
2828
#include <stdbool.h>
29-
#include "nrf.h"
29+
#include "nrfx.h"
3030
#include "nrf_errno.h"
3131

3232
/** @brief Default resource configuration tag. */
@@ -148,9 +148,6 @@ extern "C" {
148148
/** @brief Size of build revision array in bytes. */
149149
#define SDC_BUILD_REVISION_SIZE 20
150150

151-
/** @brief Temporary define to support both old and new sdc_support APIs. */
152-
#define SDC_USE_NEW_SDC_SUPPORT_API 1
153-
154151
/**
155152
* @defgroup sdc_mem_defines Memory requirement defines
156153
*

softdevice_controller/include/sdc_hci_vs.h

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ enum sdc_hci_opcode_vs
107107
SDC_HCI_OPCODE_CMD_VS_CONN_ANCHOR_POINT_UPDATE_EVENT_REPORT_ENABLE = 0xfd1f,
108108
/** @brief See @ref sdc_hci_cmd_vs_enable_periodic_adv_event_counter_reports(). */
109109
SDC_HCI_OPCODE_CMD_VS_ENABLE_PERIODIC_ADV_EVENT_COUNTER_REPORTS = 0xfd20,
110-
/** @brief See @ref sdc_hci_cmd_vs_set_cs_event_length(). */
111-
SDC_HCI_OPCODE_CMD_VS_SET_CS_EVENT_LENGTH = 0xfd21,
112110
/** @brief See @ref sdc_hci_cmd_vs_cs_params_set(). */
113111
SDC_HCI_OPCODE_CMD_VS_CS_PARAMS_SET = 0xfd22,
114112
};
@@ -748,13 +746,6 @@ typedef struct __PACKED __ALIGN(1)
748746
uint8_t enable;
749747
} sdc_hci_cmd_vs_enable_periodic_adv_event_counter_reports_t;
750748

751-
/** @brief Set event length for CS events command parameter(s). */
752-
typedef struct __PACKED __ALIGN(1)
753-
{
754-
/** @brief Allocated CS event length in microseconds. */
755-
uint32_t cs_event_length_us;
756-
} sdc_hci_cmd_vs_set_cs_event_length_t;
757-
758749
/** @brief Set custom control parameters for CS command parameter(s). */
759750
typedef struct __PACKED __ALIGN(1)
760751
{
@@ -1716,32 +1707,6 @@ uint8_t sdc_hci_cmd_vs_conn_anchor_point_update_event_report_enable(const sdc_hc
17161707
*/
17171708
uint8_t sdc_hci_cmd_vs_enable_periodic_adv_event_counter_reports(const sdc_hci_cmd_vs_enable_periodic_adv_event_counter_reports_t * p_params);
17181709

1719-
/** @brief Set event length for CS events.
1720-
*
1721-
* Set the event length for CS events.
1722-
*
1723-
* In case the number of subevents per event is one, the event length the same as
1724-
* the subevent length.
1725-
*
1726-
* In case the number of subevents per event is greater than one, the event length is
1727-
* the total expected time occupied by all subevents and the spacing between them, given
1728-
* by the formula:
1729-
*
1730-
* event length = T_SUBEVENT_INTERVAL x (N_SUBEVENTS_PER_EVENT - 1) + T_SUBEVENT_LEN
1731-
*
1732-
* Some additional margin may also be needed.
1733-
*
1734-
* Event(s) generated (unless masked away):
1735-
* When the command has completed, an HCI_Command_Complete event shall be generated.
1736-
*
1737-
* @param[in] p_params Input parameters.
1738-
*
1739-
* @retval 0 if success.
1740-
* @return Returns value between 0x01-0xFF in case of error.
1741-
* See Vol 2, Part D, Error for a list of error codes and descriptions.
1742-
*/
1743-
uint8_t sdc_hci_cmd_vs_set_cs_event_length(const sdc_hci_cmd_vs_set_cs_event_length_t * p_params);
1744-
17451710
/** @brief Set custom control parameters for CS.
17461711
*
17471712
* Set various parameters for finer control of CS steps, events and procedures.

softdevice_controller/include/sdc_soc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extern "C" {
2828

2929
#include <stdint.h>
3030
#include <stdbool.h>
31-
#include "nrf.h"
31+
#include "nrfx.h"
3232

3333
#if defined(NRF52_SERIES)
3434
/* PPI channels 17 - 31, for the nRF52 Series */
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: SoftDevice Controller
2-
git_revision: 21ea25a1b88e8bb3c5e8592b01ff3d0509bad632
3-
ll_subversion_number: '0x109C'
2+
git_revision: 51aa07f7ef8a09c357c081fa237de83747a5f64a
3+
ll_subversion_number: '0x10A0'
44
ll_version_number: '0x0F'
5-
timestamp: '2025-10-02T12:03:45Z'
5+
timestamp: '2025-10-06T13:34:38Z'
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)