Home
last modified time | relevance | path

Searched refs:inst_num (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/modules/hal_nordic/nrfx/
Dnrfx_zephyr_utils.h46 #define NRFX_DPPI_PUB_CONFIG_ALLOWED_CHANNELS_MASK_BY_INST_NUM(inst_num) \ argument
47 NRFX_CONFIG_MASK_DT(DT_NODELABEL(_CONCAT(dppic, inst_num)), source_channels)
50 #define NRFX_DPPI_SUB_CONFIG_ALLOWED_CHANNELS_MASK_BY_INST_NUM(inst_num) \ argument
51 NRFX_CONFIG_MASK_DT(DT_NODELABEL(_CONCAT(dppic, inst_num)), sink_channels)
53 #define NRFX_DPPI_PUB_OR_SUB_MASK(inst_num) \ argument
54 UTIL_OR(DT_NODE_HAS_PROP(DT_NODELABEL(_CONCAT(dppic, inst_num)), source_channels), \
55 DT_NODE_HAS_PROP(DT_NODELABEL(_CONCAT(dppic, inst_num)), sink_channels))
59 #define NRFX_DPPI_CHANNELS_SINGLE_VAR_NAME_BY_INST_NUM(inst_num) \ argument
60 NRFX_CONFIG_DPPI_CHANNELS_ENTRY_NAME(DT_NODELABEL(_CONCAT(dppic, inst_num)))
98 #define NRFX_CONFIG_IPCT_NODE_BY_INST_NUM(inst_num) \ argument
[all …]
Dnrfx_kconfig.h1008 #define NRFX_CONFIG_IPCT_NODE_BY_INST_NUM(inst_num) \ argument
1009 COND_CODE_1(IS_EMPTY(inst_num), \
1011 (DT_NODELABEL(_CONCAT(ipct, inst_num))))
1013 #define NRFX_IPCTx_PUB_CONFIG_ALLOWED_CHANNELS_MASK_BY_INST_NUM(inst_num) \ argument
1014 NRFX_CONFIG_IPCT_MASK_DT(NRFX_CONFIG_IPCT_NODE_BY_INST_NUM(inst_num))
1016 #define NRFX_IPCTx_SUB_CONFIG_ALLOWED_CHANNELS_MASK_BY_INST_NUM(inst_num) \ argument
1017 NRFX_CONFIG_IPCT_MASK_DT(NRFX_CONFIG_IPCT_NODE_BY_INST_NUM(inst_num))
1019 #define NRFX_IPCT_PUB_OR_SUB_MASK(inst_num) \ argument
1020 COND_CODE_1(IS_EMPTY(inst_num), \
1022 (DT_NODE_HAS_PROP(DT_NODELABEL(_CONCAT(ipct, inst_num)), owned_channels)))
[all …]
/Zephyr-latest/drivers/usb_c/tcpc/
Ducpd_stm32.c1445 static int inst_num; in config_tcpc_irq() local
1450 if (++inst_num == DT_NUM_INST_STATUS_OKAY(DT_DRV_COMPAT)) { in config_tcpc_irq()