![]() |
nrfx 4.5.0
|
Preprocessor utility macros. More...
Macros | |
| #define | NRFX_CHECK(module_enabled) |
| Macro for checking if the specified identifier is defined and it has a non-zero value. | |
| #define | NRFX_RELEASE_VER_AT_LEAST(major, minor, micro) |
| Macro for checking if the nrfx version is greater than or equal to the specified version. | |
| #define | NRFX_API_VER_AT_LEAST(major, minor, micro) |
| Macro for checking if the configured API version is greater than or equal to the specified API version. | |
| #define | NRFX_BIT(x) |
Macro for creating unsigned integer with bit position x set. | |
| #define | NRFX_BIT_MASK(x) |
Macro for returning bit mask or 0 if x is 0. | |
| #define | NRFX_BIT_SIZE(x) |
| Macro for returning size in bits for given size in bytes. | |
| #define | NRFX_CONCAT_2(p1, p2) |
| Macro for concatenating two tokens in macro expansion. | |
| #define | NRFX_CONCAT_2_(p1, p2) |
| Internal macro used by NRFX_CONCAT_2 to perform the expansion in two steps. | |
| #define | NRFX_CONCAT_3(p1, p2, p3) |
| Macro for concatenating three tokens in macro expansion. | |
| #define | NRFX_CONCAT_3_(p1, p2, p3) |
| Internal macro used by NRFX_CONCAT_3 to perform the expansion in two steps. | |
| #define | NRFX_ABS(a) |
| Macro for computing the absolute value of an integer number. | |
| #define | NRFX_DIFF(a, b) |
| Macro for computing the difference between two unsigned values. | |
| #define | NRFX_FEATURE_PRESENT(periph_name, feature_name) |
| Macro for checking whether any of the instance of the specified peripheral supports a given feature. | |
| #define | NRFX_FOREACH_ENABLED(periph_name, macro, sep, off_code, ...) |
| Macro for resolving provided user macro for enabled instances of a driver. | |
| #define | NRFX_FOREACH_INDEXED_PRESENT(periph_name, macro, sep, off_code, ...) |
| Macro for resolving provided user macro for present indexed instances of a peripheral. | |
| #define | NRFX_FOREACH_PRESENT(periph_name, macro, sep, off_code, ...) |
| Macro for resolving provided user macro for present instances of a peripheral. | |
| #define | NRFX_INSTANCE_CONCAT(periph_name, prefix, i, macro, ...) |
| Macro for resolving provided user macro on concatenated peripheral name and instance index. | |
| #define | NRFX_INSTANCE_ENUM_LIST(periph_name) |
| Macro for creating a content for enum which is listing enabled driver instances. | |
| #define | NRFX_INSTANCE_PRESENT_ENUM_LIST(periph_name) |
| Macro for creating a content for enum which is listing potential driver instances. | |
| #define | NRFX_REG_TO_INSTANCE(periph_name, reg) |
| Macro for translating peripheral address to its instance number. | |
| #define | NRFX_INSTANCE_IRQ_HANDLERS(periph_name, periph_name_small) |
| Macro for creating an interrupt handler for all enabled driver instances. | |
| #define | NRFX_INSTANCE_IRQ_HANDLERS_EXT(periph_name, periph_name_small, ext_macro) |
| Macro for creating an interrupt handler for all enabled driver instances with the specified extra parameter. | |
| #define | NRFX_INSTANCE_IRQ_HANDLERS_DECLARE(periph_name, periph_name_small) |
| Macro for declaring an interrupt handler for all enabled driver instances. | |
| #define | NRFX_INSTANCE_IRQ_HANDLERS_LIST(periph_name, periph_name_small) |
| Macro for generating comma-separated list of interrupt handlers for all enabled driver instances. | |
| #define | NRFX_INSTANCE_IRQ_HANDLER_DEFINE(periph_name_small, inst_idx, p_instance) |
| Macro for generating instance specific interrupt handler for a specific driver. | |
| #define | NRFX_INSTANCE_PRESENT(_inst) |
| Macro for checking if given peripheral instance is present on the target. | |
| #define | NRFX_MIN(a, b) |
| Macro for getting the smaller value between two arguments. | |
| #define | NRFX_MAX(a, b) |
| Macro for getting the larger value between two arguments. | |
| #define | NRFX_IN_RANGE(val, min, max) |
| Macro for checking if a given value is in a given range. | |
| #define | NRFX_ROUNDED_DIV(a, b) |
| Macro for performing rounded integer division (as opposed to truncating the result). | |
| #define | NRFX_CEIL_DIV(a, b) |
| Macro for performing integer division, making sure the result is rounded up. | |
| #define | NRFX_ARRAY_SIZE(array) |
| Macro for getting the number of elements in an array. | |
| #define | NRFX_OFFSETOF(type, member) |
| Macro for getting the offset (in bytes) from the beginning of a structure of the specified type to its specified member. | |
| #define | NRFX_IS_POWER_OF_TWO(val) |
| Macro for checking whether given number is power of 2. | |
| #define | NRFX_IS_EVEN(val) |
| Macro for checking whether a given number is even. | |
| #define | NRFX_EASYDMA_LENGTH_VALIDATE(peripheral, length1, length2) |
| Macro for checking if given lengths of EasyDMA transfers do not exceed the limit of the specified peripheral. | |
| #define | NRFX_WAIT_FOR(condition, attempts, delay_us, result) |
| Macro for waiting until condition is met. | |
| #define | NRFX_PERIPHERAL_ID_GET(base_addr) |
| Macro for getting the ID number of the specified peripheral. | |
| #define | NRFX_IRQ_NUMBER_GET(base_addr) |
| Macro for getting the interrupt number assigned to a specific peripheral. | |
| #define | NRFX_KHZ_TO_HZ(freq) |
| Macro for converting frequency in kHz to Hz. | |
| #define | NRFX_MHZ_TO_HZ(freq) |
| Macro for converting frequency in MHz to Hz. | |
| #define | NRFX_COND_CODE_1(_flag, _if_1_code, _else_code) |
Macro for inserting code depending on whether _flag exists and expands to 1 or not. | |
| #define | NRFX_COND_CODE_0(_flag, _if_0_code, _else_code) |
Macro for inserting code depending on whether _flag exists and expands to 0 or not. | |
| #define | NRFX_IS_ENABLED(config_macro) |
| Macro for checking for macro definition in compiler-visible expressions. | |
| #define | NRFX_LISTIFY(LEN, F, sep, ...) |
| Macro for generating a sequence of code with configurable separator. | |
| #define | NRFX_IS_EMPTY(arg) |
| Macro for checking if input argument is empty. | |
| #define | NRFX_NUM_VA_ARGS_LESS_1(...) |
| Macro for calculating number of arguments in the variable arguments list minus one. | |
| #define | NRFX_CONCAT(...) |
| Macro for concatenating multiple arguments. | |
| #define | NRFX_ARG_HAS_PARENTHESIS(x) |
| Macro for checking if argument starts with opening round bracket and contains matching closing bracket (parenthesis). | |
| #define | NRFX_FOR_EACH(F, sep, ...) |
Macro for calling a macro F on each provided argument with a given separator between each call. | |
| #define | NRFX_FOR_EACH_IDX(F, sep, ...) |
Call macro F on each provided argument, with the argument's index as an additional parameter. | |
| #define | NRFX_FOR_EACH_FIXED_ARG(F, sep, fixed_arg, ...) |
Macro for calling macro F on each provided argument, with an additional fixed argument as a parameter. | |
| #define | NRFX_FOR_EACH_IDX_FIXED_ARG(F, sep, fixed_arg, ...) |
Macro from calling macro F for each variable argument with an index and fixed argument. | |
| #define | NRFX_REVERSE_ARGS(...) |
| Macro for reversing arguments order. | |
| #define | NRFX_MAX_N(...) |
| Macro for getting the highest value from input arguments. | |
| #define | NRFX_BITMASK_TO_BITPOS(_bitmask) |
| Macro for getting a position of a bit in a bit mask with only one bit set. | |
Preprocessor utility macros.
| #define NRFX_ABS | ( | a | ) |
Macro for computing the absolute value of an integer number.
| [in] | a | Input value. |
| #define NRFX_API_VER_AT_LEAST | ( | major, | |
| minor, | |||
| micro ) |
Macro for checking if the configured API version is greater than or equal to the specified API version.
| [in] | major | Major API version. |
| [in] | minor | Minor API version. |
| [in] | micro | Micro API version. |
| true | Configured API version is greater than or equal to the specified API version. |
| false | Configured API version is smaller than the specified API version. |
| #define NRFX_ARG_HAS_PARENTHESIS | ( | x | ) |
Macro for checking if argument starts with opening round bracket and contains matching closing bracket (parenthesis).
| [in] | x | Input argument. |
| 1 | If input argument starts with opening bracket and contains closing bracket. |
| 0 | If input argument does not match above mentioned condition. |
| #define NRFX_ARRAY_SIZE | ( | array | ) |
Macro for getting the number of elements in an array.
| [in] | array | Name of the array. |
| #define NRFX_BIT | ( | x | ) |
Macro for creating unsigned integer with bit position x set.
| [in] | x | Bit position to be set. |
| #define NRFX_BIT_MASK | ( | x | ) |
Macro for returning bit mask or 0 if x is 0.
| [in] | x | Bit mask size. Bit mask has bits 0 through x-1 (inclusive) set. |
| #define NRFX_BIT_SIZE | ( | x | ) |
Macro for returning size in bits for given size in bytes.
| [in] | x | Size in bytes. |
| #define NRFX_BITMASK_TO_BITPOS | ( | _bitmask | ) |
Macro for getting a position of a bit in a bit mask with only one bit set.
Macro shall be used only on fixed value so that it can be resolved at compile time.
| _bitmask | 32 bit mask with one bit set. |
| #define NRFX_CEIL_DIV | ( | a, | |
| b ) |
Macro for performing integer division, making sure the result is rounded up.
A typical use case for this macro is to compute the number of objects with size b required to hold a number of bytes.
| [in] | a | Numerator. |
| [in] | b | Denominator. |
a by b, rounded up. | #define NRFX_CHECK | ( | module_enabled | ) |
Macro for checking if the specified identifier is defined and it has a non-zero value.
Normally, preprocessors treat all undefined identifiers as having the value zero. However, some tools, like static code analyzers, can issue a warning when such identifier is evaluated. This macro gives the possibility to suppress such warnings only in places where this macro is used for evaluation, not in the whole analyzed code.
| #define NRFX_CONCAT | ( | ... | ) |
Macro for concatenating multiple arguments.
Support up to 8 arguments.
| [in] | ... | Arguments to concatenate. |
| #define NRFX_CONCAT_2 | ( | p1, | |
| p2 ) |
Macro for concatenating two tokens in macro expansion.
| [in] | p1 | First token. |
| [in] | p2 | Second token. |
| #define NRFX_CONCAT_2_ | ( | p1, | |
| p2 ) |
Internal macro used by NRFX_CONCAT_2 to perform the expansion in two steps.
| #define NRFX_CONCAT_3 | ( | p1, | |
| p2, | |||
| p3 ) |
Macro for concatenating three tokens in macro expansion.
| [in] | p1 | First token. |
| [in] | p2 | Second token. |
| [in] | p3 | Third token. |
| #define NRFX_CONCAT_3_ | ( | p1, | |
| p2, | |||
| p3 ) |
Internal macro used by NRFX_CONCAT_3 to perform the expansion in two steps.
| #define NRFX_COND_CODE_0 | ( | _flag, | |
| _if_0_code, | |||
| _else_code ) |
Macro for inserting code depending on whether _flag exists and expands to 0 or not.
This is like NRFX_COND_CODE_1(), except that it tests whether _flag expands to the integer literal 0. It expands to _if_0_code if so, and _else_code otherwise; both of these must be enclosed in parentheses.
| [in] | _flag | Evaluated flag |
| [in] | _if_0_code | Result if _flag expands to 0; must be in parentheses |
| [in] | _else_code | Result otherwise; must be in parentheses |
| #define NRFX_COND_CODE_1 | ( | _flag, | |
| _if_1_code, | |||
| _else_code ) |
Macro for inserting code depending on whether _flag exists and expands to 1 or not.
To prevent the preprocessor from treating commas as argument separators, the _if_1_code and _else_code expressions must be inside brackets/parentheses: (). These are stripped away during macro expansion.
Example:
NRFX_COND_CODE_1(CONFIG_FLAG, (uint32_t x;), (there_is_no_flag();))
If CONFIG_FLAG is defined to 1, this expands to:
uint32_t x;
It expands to there_is_no_flag(); otherwise.
This could be used as an alternative to:
#if defined(CONFIG_FLAG) && (CONFIG_FLAG == 1) #define MAYBE_DECLARE(x) uint32_t x #else #define MAYBE_DECLARE(x) there_is_no_flag() #endif MAYBE_DECLARE(x);
However, the advantage of COND_CODE_1() is that code is resolved in place where it is used, while the #if method defines MAYBE_DECLARE on two lines and requires it to be invoked again on a separate line. This makes COND_CODE_1() more concise and also sometimes more useful when used within another macro's expansion.
_flag can be the result of preprocessor expansion, however _if_1_code is only expanded if _flag expands to the integer literal 1. Integer expressions that evaluate to 1, e.g. after doing some arithmetic, will not work.| [in] | _flag | Evaluated flag |
| [in] | _if_1_code | Result if _flag expands to 1; must be in parentheses |
| [in] | _else_code | Result otherwise; must be in parentheses |
| #define NRFX_DIFF | ( | a, | |
| b ) |
Macro for computing the difference between two unsigned values.
| [in] | a | First input value. |
| [in] | b | Second input value. |
| #define NRFX_EASYDMA_LENGTH_VALIDATE | ( | peripheral, | |
| length1, | |||
| length2 ) |
Macro for checking if given lengths of EasyDMA transfers do not exceed the limit of the specified peripheral.
| [in] | peripheral | Peripheral to check the lengths against. |
| [in] | length1 | First length to be checked. |
| [in] | length2 | Second length to be checked (pass 0 if not needed). |
| true | The length of buffers does not exceed the limit of the specified peripheral. |
| false | The length of buffers exceeds the limit of the specified peripheral. |
| #define NRFX_FEATURE_PRESENT | ( | periph_name, | |
| feature_name ) |
Macro for checking whether any of the instance of the specified peripheral supports a given feature.
Macro checks flags set in <device>_peripherals.h file.
Macro supports check on instances with following names:
| [in] | periph_name | Peripheral name, e.g. SPIM. |
| [in] | feature_name | Feature flag name suffix following an instance name, e.g. _FEATURE_HARDWARE_CSN_PRESENT. |
| 1 | At least one instance on current device supports a given feature. |
| 0 | None of peripheral instances supports a given feature. |
| #define NRFX_FOR_EACH | ( | F, | |
| sep, | |||
| ... ) |
Macro for calling a macro F on each provided argument with a given separator between each call.
Example:
#define F(x) int a##x NRFX_FOR_EACH(F, (;), 4, 5, 6);
This expands to:
int a4; int a5; int a6;
| F | Macro to invoke |
| sep | Separator (e.g. comma or semicolon). Must be in parentheses; this is required to enable providing a comma as a separator. |
| ... | Variable argument list. The macro F is invoked as F(element) for each element in the list. |
| #define NRFX_FOR_EACH_FIXED_ARG | ( | F, | |
| sep, | |||
| fixed_arg, | |||
| ... ) |
Macro for calling macro F on each provided argument, with an additional fixed argument as a parameter.
This is like NRFX_FOR_EACH(), except F should be a macro which takes two arguments: F(variable_arg, fixed_arg).
Example:
static void func(int val, void *dev); NRFX_FOR_EACH_FIXED_ARG(func, (;), dev, 4, 5, 6);
This expands to:
func(4, dev); func(5, dev); func(6, dev);
| F | Macro to invoke |
| sep | Separator (e.g. comma or semicolon). Must be in parentheses; this is required to enable providing a comma as a separator. |
| fixed_arg | Fixed argument passed to F as the second macro parameter. |
| ... | Variable argument list. The macro F is invoked as F(element, fixed_arg) for each element in the list. |
| #define NRFX_FOR_EACH_IDX | ( | F, | |
| sep, | |||
| ... ) |
Call macro F on each provided argument, with the argument's index as an additional parameter.
This is like NRFX_FOR_EACH(), except F should be a macro which takes two arguments: F(index, variable_arg).
Example:
#define F(idx, x) int a##idx = x NRFX_FOR_EACH_IDX(F, (;), 4, 5, 6);
This expands to:
int a0 = 4; int a1 = 5; int a2 = 6;
| F | Macro to invoke |
| sep | Separator (e.g. comma or semicolon). Must be in parentheses; this is required to enable providing a comma as a separator. |
| ... | Variable argument list. The macro F is invoked as F(index, element) for each element in the list. |
| #define NRFX_FOR_EACH_IDX_FIXED_ARG | ( | F, | |
| sep, | |||
| fixed_arg, | |||
| ... ) |
Macro from calling macro F for each variable argument with an index and fixed argument.
This is like the combination of NRFX_FOR_EACH_IDX() with NRFX_FOR_EACH_FIXED_ARG().
Example:
#define F(idx, x, fixed_arg) int fixed_arg##idx = x NRFX_FOR_EACH_IDX_FIXED_ARG(F, (;), a, 4, 5, 6);
This expands to:
int a0 = 4; int a1 = 5; int a2 = 6;
| F | Macro to invoke |
| sep | Separator (e.g. comma or semicolon). Must be in parentheses; This is required to enable providing a comma as a separator. |
| fixed_arg | Fixed argument passed to F as the third macro parameter. |
| ... | Variable list of arguments. The macro F is invoked as F(index, element, fixed_arg) for each element in the list. |
| #define NRFX_FOREACH_ENABLED | ( | periph_name, | |
| macro, | |||
| sep, | |||
| off_code, | |||
| ... ) |
Macro for resolving provided user macro for enabled instances of a driver.
Macro checks if driver instances are enabled for all potential instaces of a peripheral. It takes peripheral name and checks whether NRFX_<peripheral><id>_ENABLED is set to 1 and if yes then provided macro is evaluated for given instance.
Macro supports check on instances with following names:
| [in] | periph_name | Peripheral name, e.g. SPIM. |
| [in] | macro | Macro which is resolved if driver instance is enabled. Macro has following arguments: macro(periph_name, prefix, i, ...). |
| [in] | sep | Separator added between all evaluations, in parentheses. |
| [in] | off_code | Code injected for disabled instances, in parentheses. |
| #define NRFX_FOREACH_INDEXED_PRESENT | ( | periph_name, | |
| macro, | |||
| sep, | |||
| off_code, | |||
| ... ) |
Macro for resolving provided user macro for present indexed instances of a peripheral.
Macro checks if peripheral instances are present by checking if there is a token NRF_<periph_name><id> defined with wrapped in parenthesis value.
Macro supports check on instances with following names:
| [in] | periph_name | Peripheral name, e.g. SPIM. |
| [in] | macro | Macro which is resolved if peripheral instance is present. Macro has following arguments: macro(periph_name, prefix, i, ...). |
| [in] | sep | Separator added between all evaluations, in parentheses. |
| [in] | off_code | Code injected for disabled instances, in parentheses. |
| #define NRFX_FOREACH_PRESENT | ( | periph_name, | |
| macro, | |||
| sep, | |||
| off_code, | |||
| ... ) |
Macro for resolving provided user macro for present instances of a peripheral.
Macro checks if peripheral instances are present by checking if there is a token NRF_<periph_name><id> defined with wrapped in parenthesis value.
Macro supports check on instances with following names:
| [in] | periph_name | Peripheral name, e.g. SPIM. |
| [in] | macro | Macro which is resolved if peripheral instance is present. Macro has following arguments: macro(periph_name, prefix, i, ...). |
| [in] | sep | Separator added between all evaluations, in parentheses. |
| [in] | off_code | Code injected for disabled instances, in parentheses. |
| #define NRFX_IN_RANGE | ( | val, | |
| min, | |||
| max ) |
Macro for checking if a given value is in a given range.
val is evaluated twice.| [in] | val | A value to be checked. |
| [in] | min | The lower bound (inclusive). |
| [in] | max | The upper bound (inclusive). |
| true | The value is in the given range. |
| false | The value is out of the given range. |
| #define NRFX_INSTANCE_CONCAT | ( | periph_name, | |
| prefix, | |||
| i, | |||
| macro, | |||
| ... ) |
Macro for resolving provided user macro on concatenated peripheral name and instance index.
Execute provided macro with single argument <instance> that is the concatenation of periph_name, prefix and i.
| [in] | i | Instance index. |
| [in] | periph_name | Peripheral name, e.g. SPIM. |
| [in] | prefix | Prefix added before instance index, e.g. some device has instances named like SPIM00. First 0 is passed here as prefix. |
| [in] | macro | Macro which is executed. |
| [in] | ... | Variable length arguments passed to the macro. Macro has following arguments: macro(instance, ...). |
| #define NRFX_INSTANCE_ENUM_LIST | ( | periph_name | ) |
Macro for creating a content for enum which is listing enabled driver instances.
It creates comma separated list of entries like NRFX_<instance_name>INST_IDX, e.g. (NRFX_SPIM0_INST_IDX) for all enabled instances (NRFX<instance_name>_ENABLED is set to 1). It should be called within enum declaration. Created enum is used by the driver to index all enabled instances of the driver.
| [in] | periph_name | Peripheral name (e.g. SPIM). |
| #define NRFX_INSTANCE_IRQ_HANDLER_DEFINE | ( | periph_name_small, | |
| inst_idx, | |||
| p_instance ) |
Macro for generating instance specific interrupt handler for a specific driver.
This macro should be called in user code outside of function if user wants to use interrupts with given peripheral instance.
| [in] | periph_name_small | Peripheral name written with small letters, e.g. spim. |
| [in] | inst_idx | Instance index. |
| [in] | p_instance | Pointer to the driver instance object. |
| #define NRFX_INSTANCE_IRQ_HANDLERS | ( | periph_name, | |
| periph_name_small ) |
Macro for creating an interrupt handler for all enabled driver instances.
Macro creates a set of functions which calls generic irq_handler function with two parameters:
Generic interrupt handler function with above mentioned parameters named irq_handler must be implemented in the driver.
| [in] | periph_name | Peripheral name, e.g. SPIM. |
| [in] | periph_name_small | Peripheral name written with small letters, e.g. spim. |
| #define NRFX_INSTANCE_IRQ_HANDLERS_DECLARE | ( | periph_name, | |
| periph_name_small ) |
Macro for declaring an interrupt handler for all enabled driver instances.
Macro creates set of function declarations. It is intended to be used in the driver header.
| [in] | periph_name | Peripheral name, e.g. SPIM. |
| [in] | periph_name_small | Peripheral name written with small letters, e.g. spim. |
| #define NRFX_INSTANCE_IRQ_HANDLERS_EXT | ( | periph_name, | |
| periph_name_small, | |||
| ext_macro ) |
Macro for creating an interrupt handler for all enabled driver instances with the specified extra parameter.
Macro creates set of function which calls generic irq_handler function with three parameters:
ext_macro called with peripheral name suffix (e.g. 01 for TIMER01)Generic interrupt handler function with above mentioned parameters named irq_handler must be implemented in the driver.
| [in] | periph_name | Peripheral name, e.g. SPIM. |
| [in] | periph_name_small | Peripheral name written with small letters, e.g. rtc. |
| [in] | ext_macro | External macro to be executed for each instance. |
| #define NRFX_INSTANCE_IRQ_HANDLERS_LIST | ( | periph_name, | |
| periph_name_small ) |
Macro for generating comma-separated list of interrupt handlers for all enabled driver instances.
Interrupt handlers are generated using NRFX_INSTANCE_IRQ_HANDLERS. It is intended to be used to create a list which is used for passing an interrupt handler function to the PRS driver.
| [in] | periph_name | Peripheral name, e.g. SPIM. |
| [in] | periph_name_small | Peripheral name written with small letters, e.g. spim. |
| #define NRFX_INSTANCE_PRESENT | ( | _inst | ) |
Macro for checking if given peripheral instance is present on the target.
Macro utilizes the fact that for each existing instance a define is created which points to the memory mapped register set casted to a register set structure. It is wrapped in parenthesis and existance of parethesis wrapping is used to determine if instance exists. It if does not exist then token (e.g. NRF_SPIM10) is undefined so it does not have parenthesis wrapping.
Since macro returns literal 1 it can be used by other macros.
| [in] | _inst | Instance, .e.g SPIM10. |
| 1 | If instance is present. |
| 0 | If instance is not present. |
| #define NRFX_INSTANCE_PRESENT_ENUM_LIST | ( | periph_name | ) |
Macro for creating a content for enum which is listing potential driver instances.
It creates comma separated list of entries like NRFX_<instance_name>INST_IDX, e.g. (NRFX_SPIM0_INST_IDX) for all present instances (NRF<instance_name> is present). It should be called within enum declaration.
| [in] | periph_name | Peripheral name (e.g. SPIM). |
| #define NRFX_IRQ_NUMBER_GET | ( | base_addr | ) |
Macro for getting the interrupt number assigned to a specific peripheral.
For peripherals in Nordic SoCs, the IRQ number assigned to a peripheral is equal to its ID number. See the chapter "Peripheral interface" (sections "Peripheral ID" and "Interrupts") in the Product Specification.
| [in] | base_addr | Peripheral base address or pointer. |
| #define NRFX_IS_EMPTY | ( | arg | ) |
Macro for checking if input argument is empty.
Empty means that nothing is provided or provided value is resolved to nothing (e.g. empty define).
Macro idea is taken from P99 which is under Apache 2.0 license and described by Jens Gustedt https://gustedt.wordpress.com/2010/06/08/detect-empty-macro-arguments/
| arg | Argument. |
| 1 | if argument is empty. |
| 0 | if argument is not empty. |
| #define NRFX_IS_ENABLED | ( | config_macro | ) |
Macro for checking for macro definition in compiler-visible expressions.
It has the effect of taking a macro value that may be defined to "1" or may not be defined at all and turning it into a literal expression that can be handled by the C compiler instead of just the preprocessor.
That is, it works similarly to #if defined(CONFIG_FOO) except that its expansion is a C expression. Thus, much #ifdef usage can be replaced with equivalents like:
if (IS_ENABLED(CONFIG_FOO)) {
do_something_with_foo
}
This is cleaner since the compiler can generate errors and warnings for do_something_with_foo even when CONFIG_FOO is undefined.
| [in] | config_macro | Macro to check |
config_macro is defined to 1, 0 otherwise (including if config_macro is not defined) | #define NRFX_IS_EVEN | ( | val | ) |
Macro for checking whether a given number is even.
| [in] | val | Tested value. |
| true | The value is even. |
| false | The value is odd. |
| #define NRFX_IS_POWER_OF_TWO | ( | val | ) |
Macro for checking whether given number is power of 2.
| [in] | val | Tested value. |
| true | The value is power of 2. |
| false | The value is not power of 2. |
| #define NRFX_KHZ_TO_HZ | ( | freq | ) |
Macro for converting frequency in kHz to Hz.
| [in] | freq | Frequency value in kHz. |
freq kHz. | #define NRFX_LISTIFY | ( | LEN, | |
| F, | |||
| sep, | |||
| ... ) |
Macro for generating a sequence of code with configurable separator.
Example:
#define FOO(i, _) MY_PWM ## i
{ NRFX_LISTIFY(PWM_COUNT, FOO, (,)) }
The above two lines expand to:
{ MY_PWM0 , MY_PWM1 }
| [in] | LEN | The length of the sequence. Must be an integer literal less than 255. |
| [in] | F | A macro function that accepts at least two arguments: F(i, ...). F is called repeatedly in the expansion. Its first argument i is the index in the sequence, and the variable list of arguments passed to LISTIFY are passed through to F. |
| [in] | sep | Separator (e.g. comma or semicolon). Must be in parentheses; this is required to enable providing a comma as separator. |
| #define NRFX_MAX | ( | a, | |
| b ) |
Macro for getting the larger value between two arguments.
| [in] | a | First argument. |
| [in] | b | Second argument. |
| #define NRFX_MAX_N | ( | ... | ) |
Macro for getting the highest value from input arguments.
It is similar to NRFX_MAX but accepts a variable number of arguments.
| ... | Variable argument list. |
| #define NRFX_MHZ_TO_HZ | ( | freq | ) |
Macro for converting frequency in MHz to Hz.
| [in] | freq | Frequency value in MHz. |
freq MHz. | #define NRFX_MIN | ( | a, | |
| b ) |
Macro for getting the smaller value between two arguments.
| [in] | a | First argument. |
| [in] | b | Second argument. |
| #define NRFX_NUM_VA_ARGS_LESS_1 | ( | ... | ) |
Macro for calculating number of arguments in the variable arguments list minus one.
| [in] | ... | List of arguments |
| #define NRFX_OFFSETOF | ( | type, | |
| member ) |
Macro for getting the offset (in bytes) from the beginning of a structure of the specified type to its specified member.
| [in] | type | Structure type. |
| [in] | member | Structure member whose offset is searched for. |
| #define NRFX_PERIPHERAL_ID_GET | ( | base_addr | ) |
Macro for getting the ID number of the specified peripheral.
For peripherals in Nordic SoCs, there is a direct relationship between their ID numbers and their base addresses. See the chapter "Peripheral interface" (section "Peripheral ID") in the Product Specification.
| [in] | base_addr | Peripheral base address or pointer. |
| #define NRFX_REG_TO_INSTANCE | ( | periph_name, | |
| reg ) |
Macro for translating peripheral address to its instance number.
| [in] | periph_name | Peripheral name, e.g. SPIM. |
| [in] | reg | Peripheral address. |
| #define NRFX_RELEASE_VER_AT_LEAST | ( | major, | |
| minor, | |||
| micro ) |
Macro for checking if the nrfx version is greater than or equal to the specified version.
| [in] | major | Major version. |
| [in] | minor | Minor version. |
| [in] | micro | Micro version. |
| true | Current nrfx version is greater than or equal to the specified version. |
| false | Current nrfx version is smaller than the specified version. |
| #define NRFX_REVERSE_ARGS | ( | ... | ) |
Macro for reversing arguments order.
| ... | Variable argument list. |
| #define NRFX_ROUNDED_DIV | ( | a, | |
| b ) |
Macro for performing rounded integer division (as opposed to truncating the result).
| [in] | a | Numerator. |
| [in] | b | Denominator. |
a by b. | #define NRFX_WAIT_FOR | ( | condition, | |
| attempts, | |||
| delay_us, | |||
| result ) |
Macro for waiting until condition is met.
| [in] | condition | Condition to meet. |
| [in] | attempts | Maximum number of condition checks. Must not be 0. |
| [in] | delay_us | Delay between consecutive checks, in microseconds. |
| [out] | result | Boolean variable to store the result of the wait process. Set to true if the condition is met or false otherwise. |