Skip to content

Commit bf6eee3

Browse files
martintvtmon-nordic
authored andcommitted
mpsl: rev 8cf19ecc3441d7a70ef75914bb2bd7677fbbbeeb
CHANGELOG.rst contains the list of changes. Signed-off-by: Martin Tverdal <[email protected]>
1 parent 5da9fba commit bf6eee3

File tree

11 files changed

+18
-11
lines changed

11 files changed

+18
-11
lines changed

mpsl/CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,17 @@ Main branch
1111
***********
1212
All the notable changes included in the main branch are documented in this section.
1313

14+
Added
15+
=====
16+
17+
* The bool parameter :c:parameter:`tx_power_ceiling` to the external model used by the :c:func:`mpsl_fem_tx_power_split` function.
18+
When enabled, the function returns the ceiling value instead of the floor.
19+
1420
Bug fixes
1521
=========
1622

1723
* Fixed a rare issue which could cause a scheduler assert if two roles were running (DRGN-18308).
24+
* Fixed a rare issue which could cause an assert when requesting timeslots with type ``MPSL_TIMESLOT_REQ_TYPE_EARLIEST`` (DRGN-18555).
1825

1926
nRF Connect SDK v2.2.0
2027
**********************

mpsl/include/mpsl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ extern "C" {
4040
/** @brief Bitmask of (D)PPI channels reserved for MPSL. */
4141
#if defined(PPI_PRESENT)
4242
#define MPSL_RESERVED_PPI_CHANNELS ((1UL << 19) | (1UL << 30) | (1UL << 31))
43-
#elif defined(DPPI_PRESENT) || defined(DPPIC_PRESENT)
43+
#elif defined(DPPIC_PRESENT)
4444
#define MPSL_RESERVED_PPI_CHANNELS ((1UL << 0) | (1UL << 1) | (1UL << 2))
4545
#else
4646
#error Unknown NRF series.

mpsl/include/protocol/mpsl_dppi_protocol_api.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define MPSL_DPPI_PROTOCOL_API_H__
99

1010
#include "nrf_peripherals.h"
11-
#if (defined DPPI_PRESENT || defined DOXYGEN)
11+
#if (defined DPPIC_PRESENT || defined DOXYGEN)
1212

1313
/**
1414
* @file mpsl_dppi_protocol_api.h
@@ -64,5 +64,5 @@ void mpsl_dppi_fixed_channels_clear(void);
6464

6565
/**@} */
6666

67-
#endif // DPPI_PRESENT || DOXYGEN
67+
#endif // DPPIC_PRESENT || DOXYGEN
6868
#endif // MPSL_DPPI_PROTOCOL_API_H__
508 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
description: Multi-Protocol Service Layer (MPSL)
2-
git_revision: 4bf561a900000337da6a9e803ae677daf37c2b82
3-
timestamp: '2023-02-14T13:27:16Z'
2+
git_revision: 8cf19ecc3441d7a70ef75914bb2bd7677fbbbeeb
3+
timestamp: '2023-02-20T14:42:12Z'
568 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
description: Multi-Protocol Service Layer (MPSL)
2-
git_revision: 4bf561a900000337da6a9e803ae677daf37c2b82
3-
timestamp: '2023-02-14T13:27:05Z'
2+
git_revision: 8cf19ecc3441d7a70ef75914bb2bd7677fbbbeeb
3+
timestamp: '2023-02-20T14:43:04Z'
576 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
description: Multi-Protocol Service Layer (MPSL)
2-
git_revision: 4bf561a900000337da6a9e803ae677daf37c2b82
3-
timestamp: '2023-02-14T13:27:05Z'
2+
git_revision: 8cf19ecc3441d7a70ef75914bb2bd7677fbbbeeb
3+
timestamp: '2023-02-20T14:43:04Z'
580 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)