blob: 20cf6cece0e3e71d33ed04309e1a3f8ef95da708 [file] [log] [blame]
/*
* 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 */