1 /*
2  * Copyright (c) 2017 Oticon A/S
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef _NRF_HW_MODEL_AAR_H
7 #define _NRF_HW_MODEL_AAR_H
8 
9 #include "nrfx.h"
10 
11 #ifdef __cplusplus
12 extern "C"{
13 #endif
14 
15 extern NRF_AAR_Type NRF_AAR_regs;
16 
17 void nrf_aar_init();
18 void nrf_aar_clean_up();
19 
20 void nrf_aar_TASK_START();
21 void nrf_aar_TASK_STOP() ;
22 void nrf_aar_regw_sideeffects_INTENSET();
23 void nrf_aar_regw_sideeffects_INTENCLR();
24 void nrf_aar_regw_sideeffects_TASKS_START();
25 void nrf_aar_regw_sideeffects_TASKS_STOP();
26 
27 void nrf_aar_timer_triggered();
28 
29 #ifdef __cplusplus
30 }
31 #endif
32 
33 #endif
34