Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ SoftDevice properties

* nRF54L15: 0x162000 (``s115_nrf54l15_9.0.0-4.prototype_softdevice.hex``).

* The Firmware ID of this SoftDevice is 0x30B5.
* The Firmware ID of this SoftDevice is 0x30B9.

New Features
-------------
Expand Down
4 changes: 2 additions & 2 deletions components/softdevice/s115/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
description: SoftDevice
git_revision: 5959b145f3ea4ae9923a2aa7585acd51092b8430
timestamp: '2025-10-27T15:36:27Z'
git_revision: 7711953bf2d7977582f922ac1e3c75aa55ef6135
timestamp: '2025-10-31T11:47:49Z'
Binary file not shown.
Binary file not shown.
4 changes: 3 additions & 1 deletion components/softdevice/s115/s115_API/include/nrf_sdm.h
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,8 @@ typedef struct
for the device being used for more information.*/
uint8_t accuracy; /**< External clock accuracy used in the LL to compute timing
windows, see @ref NRF_CLOCK_LF_ACCURACY.*/
uint16_t hfclk_latency; /**< Ramp-up time of the high-frequency crystal oscillator in microseconds.
@note Using a value smaller than the actual ramp-up time needed will cause asserts. */
uint8_t hfint_ctiv; /**< HFINT calibration interval in seconds (1-255).
@note To ensure correct operation, 10 degrees Celsius is the
maximum temperature change allowed in one calibration timer
Expand Down Expand Up @@ -296,7 +298,7 @@ typedef void (*nrf_fault_handler_t)(uint32_t id, uint32_t pc, uint32_t info);
* - Chosen low frequency clock source will be running.
*
* @param p_clock_lf_cfg Low frequency clock source and accuracy.
* If NULL the clock will be configured as an RC source with rc_ctiv = 16, .rc_temp_ctiv = 2, .hfint_ctiv = 4
* If NULL the clock will be configured as an RC source with rc_ctiv = 16, .rc_temp_ctiv = 2, .hfclk_latency = 1500, .hfint_ctiv = 4
* In the case of XTAL source, the PPM accuracy of the chosen clock source must be greater than or equal to the actual characteristics of your XTAL clock.
* @param fault_handler Callback to be invoked in case of fault, cannot be NULL.
*
Expand Down
1 change: 0 additions & 1 deletion components/softdevice/s115/s115_API/include/nrf_soc.h
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,6 @@ SVCALL(SD_TEMP_GET, uint32_t, sd_temp_get(int32_t * p_temp));
* @retval ::NRF_ERROR_INVALID_ADDR Tried to write to a non existing flash address, or p_dst or p_src was unaligned.
* @retval ::NRF_ERROR_BUSY The previous command has not yet completed.
* @retval ::NRF_ERROR_INVALID_LENGTH Size was 0.

* @retval ::NRF_ERROR_FORBIDDEN Tried to write to an address outside the application flash area.
* @retval ::NRF_SUCCESS The command was accepted.
*/
Expand Down
Loading
Loading