@@ -801,8 +801,8 @@ void nrf_802154_promiscuous_set(bool enabled);
801801/**
802802 * @brief Checks if the radio is in the promiscuous mode.
803803 *
804- * @retval True Radio is in the promiscuous mode.
805- * @retval False Radio is not in the promiscuous mode.
804+ * @retval true Radio is in the promiscuous mode.
805+ * @retval false Radio is not in the promiscuous mode.
806806 */
807807bool nrf_802154_promiscuous_get (void );
808808
@@ -833,8 +833,8 @@ void nrf_802154_auto_ack_set(bool enabled);
833833/**
834834 * @brief Checks if the auto ACK is enabled.
835835 *
836- * @retval True Auto ACK is enabled.
837- * @retval False Auto ACK is disabled.
836+ * @retval true Auto ACK is enabled.
837+ * @retval false Auto ACK is disabled.
838838 */
839839bool nrf_802154_auto_ack_get (void );
840840
@@ -926,8 +926,8 @@ void nrf_802154_src_addr_matching_method_set(nrf_802154_src_addr_match_t match_m
926926 * @param[in] length Length of @p p_data.
927927 * @param[in] data_type Type of data to be set. Refer to the @ref nrf_802154_ack_data_t type.
928928 *
929- * @retval True Address successfully added to the list.
930- * @retval False Not enough memory to store this address in the list.
929+ * @retval true Address successfully added to the list.
930+ * @retval false Not enough memory to store this address in the list.
931931 */
932932bool nrf_802154_ack_data_set (const uint8_t * p_addr ,
933933 bool extended ,
@@ -953,8 +953,8 @@ bool nrf_802154_ack_data_set(const uint8_t * p_addr,
953953 * @param[in] extended If the given address is an extended MAC address or a short MAC address.
954954 * @param[in] data_type Type of data to be removed. Refer to the @ref nrf_802154_ack_data_t type.
955955 *
956- * @retval True Address removed from the list.
957- * @retval False Address not found in the list.
956+ * @retval true Address removed from the list.
957+ * @retval false Address not found in the list.
958958 */
959959bool nrf_802154_ack_data_clear (const uint8_t * p_addr ,
960960 bool extended ,
@@ -1007,8 +1007,8 @@ void nrf_802154_auto_pending_bit_set(bool enabled);
10071007 * @param[in] p_addr Array of bytes containing the address of the node (little-endian).
10081008 * @param[in] extended If the given address is an extended MAC address or a short MAC address.
10091009 *
1010- * @retval True The address is successfully added to the list.
1011- * @retval False Not enough memory to store the address in the list.
1010+ * @retval true The address is successfully added to the list.
1011+ * @retval false Not enough memory to store the address in the list.
10121012 */
10131013bool nrf_802154_pending_bit_for_addr_set (const uint8_t * p_addr , bool extended );
10141014
@@ -1027,8 +1027,8 @@ bool nrf_802154_pending_bit_for_addr_set(const uint8_t * p_addr, bool extended);
10271027 * @param[in] p_addr Array of bytes containing the address of the node (little-endian).
10281028 * @param[in] extended If the given address is an extended MAC address or a short MAC address.
10291029 *
1030- * @retval True The address is successfully removed from the list.
1031- * @retval False No such address in the list.
1030+ * @retval true The address is successfully removed from the list.
1031+ * @retval false No such address in the list.
10321032 */
10331033bool nrf_802154_pending_bit_for_addr_clear (const uint8_t * p_addr , bool extended );
10341034
@@ -1533,6 +1533,23 @@ void nrf_802154_cst_writer_period_set(uint16_t period);
15331533 */
15341534void nrf_802154_cst_writer_anchor_time_set (uint64_t anchor_time );
15351535
1536+ /**
1537+ * @brief Returns if the radio has PA modulation fix enabled.
1538+ *
1539+ * @retval true PA modulation fix is enabled.
1540+ * @retval false PA modulation fix is disabled.
1541+ */
1542+ bool nrf_802154_pa_modulation_fix_get (void );
1543+
1544+ /**
1545+ * @brief Enables or disables the PA modulation fix.
1546+ *
1547+ * @note The PA modulation fix is enabled by default on the chips that require it.
1548+ *
1549+ * @param[in] enabled If the PA modulation fix is to be enabled.
1550+ */
1551+ void nrf_802154_pa_modulation_fix_set (bool enable );
1552+
15361553/**
15371554 * @}
15381555 * @defgroup nrf_802154_test_modes Test modes
0 commit comments