1 /* 2 * Copyright (c) 2022 - 2023, Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef NRFX_CONFIG_COMMON_H__ 8 #define NRFX_CONFIG_COMMON_H__ 9 10 #ifndef NRFX_CONFIG_H__ 11 #error "This file should not be included directly. Include nrfx_config.h instead." 12 #endif 13 14 /** @brief Symbol specifying major version of the nrfx API to be used. */ 15 #ifndef NRFX_CONFIG_API_VER_MAJOR 16 #define NRFX_CONFIG_API_VER_MAJOR 3 17 #endif 18 19 /** @brief Symbol specifying minor version of the nrfx API to be used. */ 20 #ifndef NRFX_CONFIG_API_VER_MINOR 21 #define NRFX_CONFIG_API_VER_MINOR 0 22 #endif 23 24 /** @brief Symbol specifying micro version of the nrfx API to be used. */ 25 #ifndef NRFX_CONFIG_API_VER_MICRO 26 #define NRFX_CONFIG_API_VER_MICRO 0 27 #endif 28 29 #endif /* NRFX_CONFIG_COMMON_H__ */ 30