/hal_nordic-3.5.0/nrfx/drivers/include/ |
D | nrfx_nvmc.h | 67 nrfx_err_t nrfx_nvmc_page_erase(uint32_t address); 103 nrfx_err_t nrfx_nvmc_page_partial_erase_init(uint32_t address, uint32_t duration_ms); 144 bool nrfx_nvmc_byte_writable_check(uint32_t address, uint8_t value); 158 void nrfx_nvmc_byte_write(uint32_t address, uint8_t value); 175 bool nrfx_nvmc_halfword_writable_check(uint32_t address, uint16_t value); 189 void nrfx_nvmc_halfword_write(uint32_t address, uint16_t value); 206 bool nrfx_nvmc_word_writable_check(uint32_t address, uint32_t value); 220 void nrfx_nvmc_word_write(uint32_t address, uint32_t value); 235 void nrfx_nvmc_bytes_write(uint32_t address, void const * src, uint32_t num_bytes); 250 void nrfx_nvmc_words_write(uint32_t address, void const * src, uint32_t num_words); [all …]
|
D | nrfx_twi.h | 149 uint8_t address; ///< Slave address. member 161 .address = (addr), \ 172 .address = (addr), \ 183 .address = (addr), \ 194 .address = (addr), \
|
D | nrfx_twim.h | 155 uint8_t address; ///< Slave address. member 166 .address = (addr), \
|
/hal_nordic-3.5.0/nrfx/hal/ |
D | nrf_nvmc.h | 155 NRF_STATIC_INLINE void nrf_nvmc_word_write(uint32_t address, 168 NRF_STATIC_INLINE uint8_t nrf_nvmc_byte_read(uint32_t address); 180 NRF_STATIC_INLINE uint16_t nrf_nvmc_halfword_read(uint32_t address); 192 NRF_STATIC_INLINE uint32_t nrf_nvmc_word_read(uint32_t address); 206 uint32_t address, 358 NRF_STATIC_INLINE void nrf_nvmc_word_write(uint32_t address, in nrf_nvmc_word_write() argument 361 *(volatile uint32_t *)address = value; in nrf_nvmc_word_write() 364 NRF_STATIC_INLINE uint8_t nrf_nvmc_byte_read(uint32_t address) in nrf_nvmc_byte_read() argument 366 return *(volatile uint8_t *)address; in nrf_nvmc_byte_read() 369 NRF_STATIC_INLINE uint16_t nrf_nvmc_halfword_read(uint32_t address) in nrf_nvmc_halfword_read() argument [all …]
|
D | nrf_acl.h | 75 uint32_t address, 115 uint32_t address, in nrf_acl_region_set() argument 120 NRFX_ASSERT(address % nrf_ficr_codepagesize_get(NRF_FICR) == 0); in nrf_acl_region_set() 125 p_reg->ACL[region_id].ADDR = address; in nrf_acl_region_set()
|
D | nrf_twi.h | 292 NRF_STATIC_INLINE void nrf_twi_address_set(NRF_TWI_Type * p_reg, uint8_t address); 443 NRF_STATIC_INLINE void nrf_twi_address_set(NRF_TWI_Type * p_reg, uint8_t address) in nrf_twi_address_set() argument 445 p_reg->ADDRESS = address; in nrf_twi_address_set()
|
D | nrf_twim.h | 458 uint8_t address); 772 uint8_t address) in nrf_twim_address_set() argument 774 p_reg->ADDRESS = address; in nrf_twim_address_set()
|
D | nrf_radio.h | 949 NRF_STATIC_INLINE void nrf_radio_base0_set(NRF_RADIO_Type * p_reg, uint32_t address); 966 NRF_STATIC_INLINE void nrf_radio_base1_set(NRF_RADIO_Type * p_reg, uint32_t address); 1818 NRF_STATIC_INLINE void nrf_radio_base0_set(NRF_RADIO_Type * p_reg, uint32_t address) in nrf_radio_base0_set() argument 1820 p_reg->BASE0 = address; in nrf_radio_base0_set() 1828 NRF_STATIC_INLINE void nrf_radio_base1_set(NRF_RADIO_Type * p_reg, uint32_t address) in nrf_radio_base1_set() argument 1830 p_reg->BASE1 = address; in nrf_radio_base1_set()
|
/hal_nordic-3.5.0/nrfx/samples/src/nrfx_saadc/advanced_non_blocking_internal_timer/ |
D | README.md | 53 - "Sample buffer address == 0x([0-9a-z]{8})" 59 - "Sample buffer address == 0x([0-9a-z]{8})" 65 - "Sample buffer address == 0x([0-9a-z]{8})" 71 - "Sample buffer address == 0x([0-9a-z]{8})"
|
/hal_nordic-3.5.0/nrfx/drivers/src/ |
D | nrfx_twim.c | 98 uint8_t address; member 447 p_cb->address = p_xfer_desc->address; in twim_xfer() 454 nrfy_twim_address_set(p_twim, p_xfer_desc->address); in twim_xfer() 726 event.xfer_desc.address = p_cb->address; in irq_handler() 767 event.xfer_desc.address = p_cb->address; in irq_handler()
|
D | nrfx_qspi.c | 110 uint32_t address, in qspi_xfer() argument 134 m_cb.addr_secondary = address; in qspi_xfer() 140 m_cb.addr_primary = address; in qspi_xfer() 150 nrf_qspi_write_buffer_set(NRF_QSPI, p_buffer, length, address); in qspi_xfer() 155 nrf_qspi_read_buffer_set(NRF_QSPI, p_buffer, length, address); in qspi_xfer()
|
D | nrfx_twi.c | 636 nrf_twi_address_set(p_twi, p_xfer_desc->address); in twi_xfer()
|
/hal_nordic-3.5.0/nrfx/samples/src/nrfx_saadc/maximum_performance/ |
D | README.md | 55 - "Sample buffer address == 0x([0-9a-z]{8})" 60 - "Sample buffer address == 0x([0-9a-z]{8})"
|
/hal_nordic-3.5.0/nrfx/samples/src/nrfx_uarte/rx_double_buffered/ |
D | README.md | 61 > (.*) stands for memory address
|
/hal_nordic-3.5.0/nrfx/haly/ |
D | nrfy_twim.h | 593 uint8_t address) in nrfy_twim_address_set() argument 595 nrf_twim_address_set(p_reg, address); in nrfy_twim_address_set()
|
/hal_nordic-3.5.0/nrfx/ |
D | CHANGELOG.md | 36 - Added functions for getting the address of peripheral tasks and events in the EGU HAL. 43 - Renamed functions for getting the task of event address in the following drivers: CLOCK, GPIOTE, … 235 - Removed usage of the NRF_UICR symbol on non-secure targets in address validity checks in the NVMC… 296 - Fixed address assertions in NVMC driver for the nRF5340 network core. 314 - Updated address and task getters in all HALs to return values as uint32_t type. 444 - Added the nrfx_is_word_aligned() function for checking whether an address is word-aligned.
|