Skip to content

Commit 0b621f4

Browse files
committed
nrf_802154: fix all Doxygen issues
Fix all Doxygen issues found in nrf_802154. Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent 05472e8 commit 0b621f4

File tree

8 files changed

+9
-11
lines changed

8 files changed

+9
-11
lines changed

nrf_802154/common/include/nrf_802154_config.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,8 +503,8 @@ extern "C" {
503503
*
504504
* Enables ECB peripheral to be used as hardware accelerator for on-the-fly AES-CCM* encryption.
505505
*/
506-
#ifndef NRF_802154_ENCRYPTION_ACCELERATOR_ECB
507-
#if defined(NRF52_SERIES) || defined(NRF5340_XXAA)
506+
#if !defined(NRF_802154_ENCRYPTION_ACCELERATOR_ECB) || defined(__DOXYGEN__)
507+
#if defined(NRF52_SERIES) || defined(NRF5340_XXAA) || defined(__DOXYGEN__)
508508
#define NRF_802154_ENCRYPTION_ACCELERATOR_ECB 1
509509
#elif defined(NRF54H_SERIES) || defined(NRF54L_SERIES)
510510
#define NRF_802154_ENCRYPTION_ACCELERATOR_ECB 0
@@ -594,6 +594,8 @@ extern "C" {
594594
#define NRF_802154_REQUEST_IMPL NRF_802154_REQUEST_IMPL_SWI
595595
#endif
596596

597+
/** @} */
598+
597599
/**
598600
*@}
599601
**/
16 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

nrf_802154/driver/src/mac_features/nrf_802154_delayed_trx.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#include "nrf_802154_config.h"
4343
#include "nrf_802154_types.h"
4444

45-
#if NRF_802154_DELAYED_TRX_ENABLED
45+
#if NRF_802154_DELAYED_TRX_ENABLED || defined(__DOXYGEN__)
4646

4747
/**
4848
* @defgroup nrf_802154_delayed_trx Delayed transmission and reception window features
@@ -95,10 +95,6 @@ bool nrf_802154_delayed_trx_transmit(uint8_t * p
9595
*/
9696
bool nrf_802154_delayed_trx_transmit_cancel(void);
9797

98-
/**
99-
*@}
100-
**/
101-
10298
/**
10399
* @brief Requests the reception of a frame at a given time.
104100
*

nrf_802154/driver/src/mac_features/nrf_802154_ie_writer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void nrf_802154_ie_writer_cst_period_set(uint16_t period);
157157
/**
158158
* @brief Sets the anchor time based on which the next CST window time and the CST phase is calculated.
159159
*
160-
* @param[in] period Anchor time value.
160+
* @param[in] anchor_time Anchor time value.
161161
*/
162162
void nrf_802154_ie_writer_cst_anchor_time_set(uint64_t anchor_time);
163163

nrf_802154/driver/src/nrf_802154_peripherals.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ extern "C" {
180180

181181
#if NRF_802154_NOTIFICATION_IMPL == NRF_802154_NOTIFICATION_IMPL_SWI
182182
/**
183-
* @def NRF_802154_EGU_NOTIFICATION_SWI_CHANNEL_NO
183+
* @def NRF_802154_EGU_NOTIFICATION_CHANNEL_NO
184184
*
185185
* The channel number of the @ref NRF_802154_EGU_INSTANCE used by the
186186
* "swi" implementation of the "notification" module.
@@ -266,7 +266,7 @@ extern "C" {
266266
NRF_802154_EGU_RAMP_UP_CHANNEL_NO)
267267

268268
/**
269-
* @def NRF_802154_EGU_CHANNELS_MASK
269+
* @def NRF_802154_EGU_USED_CHANNELS_MASK
270270
*
271271
* The mask of fixed channels of the @ref NRF_802154_EGU_INSTANCE used by the
272272
* nRF 802.15.4 Radio Driver.

nrf_802154/driver/src/nrf_802154_rssi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ int8_t nrf_802154_rssi_dbm_from_energy_level_calculate(uint8_t energy_level);
114114
*
115115
* @note Performs temperature correction internally.
116116
*
117-
* @param[int] ed_sample The hardware reported value.
117+
* @param[in] ed_sample The hardware reported value.
118118
*
119119
* @return Result of the energy detection procedure in dBm.
120120
*/

0 commit comments

Comments
 (0)