1 /*
2  * Copyright (c) 2024 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef NRFS_CONFIG_H
8 #define NRFS_CONFIG_H
9 
10 
11 #ifdef CONFIG_NRFS_TEMP_SERVICE_ENABLED
12 #define NRFS_TEMP_SERVICE_ENABLED
13 #endif
14 
15 #ifdef CONFIG_NRFS_MRAM_SERVICE_ENABLED
16 #define NRFS_MRAM_SERVICE_ENABLED
17 #endif
18 
19 #ifdef CONFIG_NRFS_RESET_SERVICE_ENABLED
20 #define NRFS_RESET_SERVICE_ENABLED
21 #endif
22 
23 #ifdef CONFIG_NRFS_VBUS_DETECTOR_SERVICE_ENABLED
24 #define NRFS_VBUS_DETECTOR_SERVICE_ENABLED
25 #endif
26 
27 #ifdef CONFIG_NRFS_PMIC_SERVICE_ENABLED
28 #define NRFS_PMIC_SERVICE_ENABLED
29 #endif
30 
31 #ifdef CONFIG_NRFS_DVFS_SERVICE_ENABLED
32 #define NRFS_DVFS_SERVICE_ENABLED
33 #endif
34 
35 #ifdef CONFIG_NRFS_DIAG_SERVICE_ENABLED
36 #define NRFS_DIAG_SERVICE_ENABLED
37 #endif
38 
39 #ifdef CONFIG_NRFS_CLOCK_SERVICE_ENABLED
40 #define NRFS_CLOCK_SERVICE_ENABLED
41 #endif
42 
43 #ifdef CONFIG_NRFS_GDPWR_SERVICE_ENABLED
44 #define NRFS_GDPWR_SERVICE_ENABLED
45 #endif
46 
47 #ifdef CONFIG_NRFS_CLOCK_SERVICE_ENABLED
48 #define NRFS_CLOCK_SERVICE_ENABLED
49 #endif
50 
51 #ifdef CONFIG_NRFS_GDFS_SERVICE_ENABLED
52 #define NRFS_GDFS_SERVICE_ENABLED
53 #endif
54 
55 #ifdef CONFIG_SOC_POSIX
56 #define NRFS_UNIT_TESTS_ENABLED
57 #endif
58 
59 #endif /* NRFS_CONFIG_H */
60