Home
last modified time | relevance | path

Searched refs:major (Results 1 – 2 of 2) sorted by relevance

/hal_nordic-latest/nrfx/drivers/
Dnrfx_common.h127 #define NRFX_RELEASE_VER_AT_LEAST(major, minor, micro) \ argument
128 (((NRFX_RELEASE_VER_MAJOR > (major))) || \
129 ((NRFX_RELEASE_VER_MAJOR == major) && (NRFX_RELEASE_VER_MINOR > (minor))) || \
130 ((NRFX_RELEASE_VER_MAJOR == major) && (NRFX_RELEASE_VER_MINOR == minor) && \
149 #define NRFX_API_VER_AT_LEAST(major, minor, micro) \ argument
150 (((NRFX_CONFIG_API_VER_MAJOR > (major))) || \
151 ((NRFX_CONFIG_API_VER_MAJOR == major) && (NRFX_CONFIG_API_VER_MINOR > (minor))) || \
152 ((NRFX_CONFIG_API_VER_MAJOR == major) && (NRFX_CONFIG_API_VER_MINOR == minor) && \
/hal_nordic-latest/nrfx/mdk/
Dcompiler_abstraction.h447 #define NRF_MDK_VERSION_ASSERT_AT_LEAST(major, minor, micro) \ argument
450 (major < MDK_MAJOR_VERSION) || \
451 (major == MDK_MAJOR_VERSION && minor < MDK_MINOR_VERSION) || \
452 … (major == MDK_MAJOR_VERSION && minor == MDK_MINOR_VERSION && micro < MDK_MICRO_VERSION) \
455 #define NRF_MDK_VERSION_ASSERT_EXACT(major, minor, micro) \ argument
458 (major != MDK_MAJOR_VERSION) || \
459 (major != MDK_MAJOR_VERSION) || \
460 (major != MDK_MAJOR_VERSION) \