1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Note: This header is private to the RADIO HW model 7 */ 8 #ifndef _NRF_RADIO_TIMINGS_H 9 #define _NRF_RADIO_TIMINGS_H 10 11 #include <stdint.h> 12 #include <stdbool.h> 13 #include "bs_types.h" 14 15 #ifdef __cplusplus 16 extern "C"{ 17 #endif 18 19 void nrfra_timings_init(void); 20 bs_time_t nhwra_timings_get_rampup_time(bool TxNotRx, bool from_hw_TIFS); 21 bs_time_t nhwra_timings_get_Rx_chain_delay(void); 22 bs_time_t nhwra_timings_get_RX_rampdown_time(void); 23 bs_time_t nhwra_timings_get_TX_rampdown_time(void); 24 bs_time_t nhwra_timings_get_TX_chain_delay(void); 25 26 #ifdef __cplusplus 27 } 28 #endif 29 30 #endif 31