Searched refs:peripheral (Results 1 – 8 of 8) sorted by relevance
/lk-master/external/platform/nrfx/drivers/src/ |
A D | nrfx_spim.c | 55 #define SPIMX_LENGTH_VALIDATE(peripheral, drv_inst_idx, rx_len, tx_len) \ argument 56 (((drv_inst_idx) == NRFX_CONCAT_3(NRFX_, peripheral, _INST_IDX)) && \ 57 NRFX_EASYDMA_LENGTH_VALIDATE(peripheral, rx_len, tx_len)) 59 #define SPIMX_HW_CSN_PRESENT_VALIDATE(peripheral, drv_inst_idx) \ argument 60 (((drv_inst_idx) == NRFX_CONCAT_3(NRFX_, peripheral, _INST_IDX)) && \ 61 NRFX_CONCAT_2(peripheral, _FEATURE_HARDWARE_CSN_PRESENT)) 63 #define SPIMX_DCX_PRESENT_VALIDATE(peripheral, drv_inst_idx) \ argument 64 (((drv_inst_idx) == NRFX_CONCAT_3(NRFX_, peripheral, _INST_IDX)) && \ 65 NRFX_CONCAT_2(peripheral, _FEATURE_DCX_PRESENT)) 67 #define SPIMX_SUPPORTED_FREQ_VALIDATE(peripheral, drv_inst_idx, freq) \ argument [all …]
|
A D | nrfx_spis.c | 54 #define SPISX_LENGTH_VALIDATE(peripheral, drv_inst_idx, rx_len, tx_len) \ argument 55 (((drv_inst_idx) == NRFX_CONCAT_3(NRFX_, peripheral, _INST_IDX)) && \ 56 NRFX_EASYDMA_LENGTH_VALIDATE(peripheral, rx_len, tx_len))
|
A D | nrfx_uarte.c | 54 #define UARTEX_LENGTH_VALIDATE(peripheral, drv_inst_idx, len1, len2) \ argument 55 (((drv_inst_idx) == NRFX_CONCAT_3(NRFX_, peripheral, _INST_IDX)) && \ 56 NRFX_EASYDMA_LENGTH_VALIDATE(peripheral, len1, len2))
|
A D | nrfx_twim.c | 82 #define TWIMX_LENGTH_VALIDATE(peripheral, drv_inst_idx, len1, len2) \ argument 83 (((drv_inst_idx) == NRFX_CONCAT_3(NRFX_, peripheral, _INST_IDX)) && \ 84 NRFX_EASYDMA_LENGTH_VALIDATE(peripheral, len1, len2))
|
/lk-master/external/platform/nrfx/drivers/ |
A D | nrfx_common.h | 176 #define NRFX_EASYDMA_LENGTH_VALIDATE(peripheral, length1, length2) \ argument 177 (((length1) < (1U << NRFX_CONCAT_2(peripheral, _EASYDMA_MAXCNT_SIZE))) && \ 178 ((length2) < (1U << NRFX_CONCAT_2(peripheral, _EASYDMA_MAXCNT_SIZE))))
|
/lk-master/external/platform/nrfx/doc/ |
A D | main_page.dox | 17 The purpose of nrfx is to make it possible to use the same set of peripheral
|
/lk-master/external/platform/nrfx/ |
A D | CHANGELOG.md | 35 - Added missing secure and non-secure peripheral symbol translations for nRF5340 and nRF9160. 104 - Updated all HAL functions to take the pointer to the structure of registers of the peripheral as … 141 …, the timing of the SENS_RES response could be violated after the NFCT peripheral was put to the S… 243 - Corrected the way of disabling interrupts in the NFCT driver when moving the peripheral to the di…
|
/lk-master/external/platform/stm32f0xx/CMSIS/ |
A D | CMSIS_END_USER_LICENCE_AGREEMENT.txt | 8 ”CMSIS-DRIVER” means the specification defining a generic peripheral driver application programming…
|
Completed in 11 milliseconds