Skip to content

Commit d6c96e8

Browse files
committed
nrf_802154: rev 0f15f609554dbafc942bd7d86e83829a86f480d3
This commit updates revision of the nrf_802154 component. Signed-off-by: Dawid Przybylo <dawid.przybylo@nordicsemi.no>
1 parent fa010b8 commit d6c96e8

12 files changed

Lines changed: 16 additions & 10 deletions

File tree

nrf_802154/common/include/nrf_802154_config_soc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080

8181
#if defined (NRF54L05_XXAA) || defined (NRF54LV10A_ENGA_XXAA) || defined (NRF54L10_XXAA) \
8282
|| defined (NRF54L15_XXAA) || defined (NRF54LM20A_ENGA_XXAA) || defined (NRF54LM20B_XXAA) \
83-
|| defined (NRF54LV10A_XXAA) || defined (NRF54LM20A_XXAA)
83+
|| defined (NRF54LV10A_XXAA) || defined (NRF54LM20A_XXAA) || defined (NRF54LC10A_XXAA)
8484
#define NRF_802154_SOC_NRF54L_SERIES
8585
#define NRF_802154_SOC_SUPPORTED
8686
#endif

nrf_802154/common/include/nrf_802154_types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ typedef struct
180180
*/
181181
typedef uint8_t nrf_802154_ack_data_t;
182182

183-
#define NRF_802154_ACK_DATA_PENDING_BIT 0x00 /**< Frame Pending bit should be set in the Ack. */
184-
#define NRF_802154_ACK_DATA_IE 0x01 /**< Header Information Element should be set in the Ack. */
183+
#define NRF_802154_ACK_DATA_PENDING_BIT 0x00 /**< Frame Pending bit should be set in the ACK. */
184+
#define NRF_802154_ACK_DATA_IE 0x01 /**< Header Information Element should be set in the ACK. */
185185

186186
/**
187187
* @brief Methods of source address matching.

nrf_802154/doc/CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ nRF Connect SDK v3.3.0 - nRF 802.15.4 Radio Driver
1616
Added
1717
=====
1818

19+
* Added experimental support for the nRF54LC10A SoC (CPU application, secure and non-secure).
20+
21+
nRF Connect SDK v3.3.0 - nRF 802.15.4 Radio Driver
22+
**************************************************
23+
24+
Added
25+
=====
26+
1927
* The following optional API functions:
2028

2129
* :c:func:`nrf_802154_pan_id_get` for reading the current PAN ID.

nrf_802154/driver/src/mac_features/ack_generator/nrf_802154_ack_data.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -738,8 +738,7 @@ void nrf_802154_ack_data_src_addr_matching_method_set(nrf_802154_src_addr_match_
738738

739739
}
740740

741-
bool nrf_802154_ack_data_pending_bit_should_be_set(
742-
const nrf_802154_frame_t * p_frame_data)
741+
bool nrf_802154_ack_data_pending_bit_should_be_set(const nrf_802154_frame_t * p_frame_data)
743742
{
744743
bool ret;
745744

nrf_802154/driver/src/mac_features/ack_generator/nrf_802154_ack_data.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
void nrf_802154_ack_data_init(void);
5454

5555
/**
56-
* @brief Enables or disables the ACK data generator module.
56+
* @brief Enable or disable the ACK data generator module.
5757
*
5858
* @param[in] enabled True if the module is to be enabled. False otherwise.
5959
*/
@@ -129,8 +129,7 @@ void nrf_802154_ack_data_src_addr_matching_method_set(nrf_802154_src_addr_match_
129129
* @retval true Pending bit is to be set.
130130
* @retval false Pending bit is to be cleared.
131131
*/
132-
bool nrf_802154_ack_data_pending_bit_should_be_set(
133-
const nrf_802154_frame_t * p_frame_data);
132+
bool nrf_802154_ack_data_pending_bit_should_be_set(const nrf_802154_frame_t * p_frame_data);
134133

135134
/**
136135
* @brief Get the IE data stored in the list for the source address of the provided frame.

nrf_802154/driver/src/mac_features/ack_generator/nrf_802154_imm_ack_generator.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ void nrf_802154_imm_ack_generator_reset(void)
6767
uint8_t * nrf_802154_imm_ack_generator_create(
6868
const nrf_802154_frame_t * p_frame_data)
6969
{
70-
#if NRF_802154_IE_WRITER_ENABLED
70+
#if NRF_802154_IE_WRITER_ENABLED
7171

7272
/* The IE writer module can be in the IE_WRITER_PREPARE state if
7373
* the previous transmission failed at an early stage.
@@ -77,7 +77,7 @@ uint8_t * nrf_802154_imm_ack_generator_create(
7777
*/
7878
nrf_802154_ie_writer_reset();
7979

80-
#endif /* NRF_802154_IE_WRITER_ENABLED */
80+
#endif /* NRF_802154_IE_WRITER_ENABLED */
8181

8282
if (nrf_802154_frame_parse_level_get(p_frame_data) < PARSE_LEVEL_FULL)
8383
{
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)