1 /*
2  * Copyright (c) 2017 Oticon A/S
3  * Copyright (c) 2023 Nordic Semiconductor ASA
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  *
7  * Private header between the RADIO and its bitcounter
8  */
9 #ifndef _NRF_RADIO_BITCOUNTER_H
10 #define _NRF_RADIO_BITCOUNTER_H
11 
12 #ifdef __cplusplus
13 extern "C"{
14 #endif
15 
16 void nrf_radio_bitcounter_reset();
17 void nrf_radio_bitcounter_cleanup();
18 void nrf_radio_stop_bit_counter();
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif
25