48 lines
912 B
C
48 lines
912 B
C
/*
|
|
* Copyright (c) 2024 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef NRFS_CONFIG_H
|
|
#define NRFS_CONFIG_H
|
|
|
|
|
|
#ifdef CONFIG_NRFS_TEMP_SERVICE_ENABLED
|
|
#define NRFS_TEMP_SERVICE_ENABLED
|
|
#endif
|
|
|
|
#ifdef CONFIG_NRFS_MRAM_SERVICE_ENABLED
|
|
#define NRFS_MRAM_SERVICE_ENABLED
|
|
#endif
|
|
|
|
#ifdef CONFIG_NRFS_RESET_SERVICE_ENABLED
|
|
#define NRFS_RESET_SERVICE_ENABLED
|
|
#endif
|
|
|
|
#ifdef CONFIG_NRFS_VBUS_DETECTOR_SERVICE_ENABLED
|
|
#define NRFS_VBUS_DETECTOR_SERVICE_ENABLED
|
|
#endif
|
|
|
|
#ifdef CONFIG_NRFS_PMIC_SERVICE_ENABLED
|
|
#define NRFS_PMIC_SERVICE_ENABLED
|
|
#endif
|
|
|
|
#ifdef CONFIG_NRFS_DVFS_SERVICE_ENABLED
|
|
#define NRFS_DVFS_SERVICE_ENABLED
|
|
#endif
|
|
|
|
#ifdef CONFIG_NRFS_DIAG_SERVICE_ENABLED
|
|
#define NRFS_DIAG_SERVICE_ENABLED
|
|
#endif
|
|
|
|
#ifdef CONFIG_NRFS_CLOCK_SERVICE_ENABLED
|
|
#define NRFS_CLOCK_SERVICE_ENABLED
|
|
#endif
|
|
|
|
#ifdef CONFIG_SOC_POSIX
|
|
#define NRFS_UNIT_TESTS_ENABLED
|
|
#endif
|
|
|
|
#endif /* NRFS_CONFIG_H */
|