Home
last modified time | relevance | path

Searched refs:address (Results 1 – 25 of 26) sorted by relevance

12

/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_nvmc.h67 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 …]
Dnrfx_rramc.h113 void nrfx_rramc_byte_write(uint32_t address, uint8_t value);
129 void nrfx_rramc_bytes_write(uint32_t address, void const * src, uint32_t num_bytes);
144 void nrfx_rramc_word_write(uint32_t address, uint32_t value);
160 void nrfx_rramc_words_write(uint32_t address, void const * src, uint32_t num_words);
252 NRFX_STATIC_INLINE uint8_t nrfx_rramc_byte_read(uint32_t address);
264 NRFX_STATIC_INLINE uint32_t nrfx_rramc_word_read(uint32_t address);
274 NRFX_STATIC_INLINE void nrfx_rramc_buffer_read(void * dst, uint32_t address, uint32_t num_bytes);
298 NRFX_STATIC_INLINE uint8_t nrfx_rramc_byte_read(uint32_t address) in nrfx_rramc_byte_read() argument
300 return nrfy_rramc_byte_read(address); in nrfx_rramc_byte_read()
303 NRFX_STATIC_INLINE uint32_t nrfx_rramc_word_read(uint32_t address) in nrfx_rramc_word_read() argument
[all …]
Dnrfx_twi.h149 uint8_t address; ///< Slave address. member
161 .address = (addr), \
172 .address = (addr), \
183 .address = (addr), \
194 .address = (addr), \
Dnrfx_twim.h155 uint8_t address; ///< Slave address. member
166 .address = (addr), \
/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_rramc.c114 void nrfx_rramc_byte_write(uint32_t address, uint8_t value) in nrfx_rramc_byte_write() argument
117 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_byte_write()
118 NRFX_ASSERT(fit_in_memory(address, true, 1)); in nrfx_rramc_byte_write()
120 nrfy_rramc_byte_write(NRF_RRAMC, address, value); in nrfx_rramc_byte_write()
123 void nrfx_rramc_bytes_write(uint32_t address, void const * src, uint32_t num_bytes) in nrfx_rramc_bytes_write() argument
127 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_bytes_write()
128 NRFX_ASSERT(fit_in_memory(address, true, num_bytes)); in nrfx_rramc_bytes_write()
130 nrfy_rramc_bytes_write(NRF_RRAMC, address, src, num_bytes); in nrfx_rramc_bytes_write()
133 void nrfx_rramc_word_write(uint32_t address, uint32_t value) in nrfx_rramc_word_write() argument
136 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_word_write()
[all …]
Dnrfx_twim.c98 uint8_t address; member
484 p_cb->address = p_xfer_desc->address; in twim_xfer()
491 nrfy_twim_address_set(p_twim, p_xfer_desc->address); in twim_xfer()
768 event.xfer_desc.address = p_cb->address; in irq_handler()
809 event.xfer_desc.address = p_cb->address; in irq_handler()
Dnrfx_qspi.c124 uint32_t address, in qspi_xfer() argument
149 nrf_qspi_write_buffer_set(NRF_QSPI, p_buffer, length, address); in qspi_xfer()
154 nrf_qspi_read_buffer_set(NRF_QSPI, p_buffer, length, address); in qspi_xfer()
177 m_cb.addr_secondary = address; in qspi_xfer()
183 m_cb.addr_primary = address; in qspi_xfer()
/hal_nordic-latest/nrfx/hal/
Dnrf_rramc.h129 uint32_t address; ///< Start address of the region. member
443 NRF_STATIC_INLINE void nrf_rramc_byte_write(uint32_t address, uint8_t value);
457 NRF_STATIC_INLINE void nrf_rramc_halfword_write(uint32_t address, uint16_t value);
471 NRF_STATIC_INLINE void nrf_rramc_word_write(uint32_t address, uint32_t value);
488 NRF_STATIC_INLINE void nrf_rramc_buffer_write(uint32_t address, void * src, uint32_t num_bytes);
497 NRF_STATIC_INLINE uint8_t nrf_rramc_byte_read(uint32_t address);
506 NRF_STATIC_INLINE uint16_t nrf_rramc_halfword_read(uint32_t address);
515 NRF_STATIC_INLINE uint32_t nrf_rramc_word_read(uint32_t address);
526 NRF_STATIC_INLINE void nrf_rramc_buffer_read(void * dst, uint32_t address, uint32_t num_bytes);
708 p_reg->REGION[region].ADDRESS = p_config->address; in nrf_rramc_region_config_set()
[all …]
Dnrf_nvmc.h172 NRF_STATIC_INLINE void nrf_nvmc_word_write(uint32_t address,
185 NRF_STATIC_INLINE uint8_t nrf_nvmc_byte_read(uint32_t address);
197 NRF_STATIC_INLINE uint16_t nrf_nvmc_halfword_read(uint32_t address);
209 NRF_STATIC_INLINE uint32_t nrf_nvmc_word_read(uint32_t address);
223 uint32_t address,
375 NRF_STATIC_INLINE void nrf_nvmc_word_write(uint32_t address, in nrf_nvmc_word_write() argument
378 *(volatile uint32_t *)address = value; in nrf_nvmc_word_write()
381 NRF_STATIC_INLINE uint8_t nrf_nvmc_byte_read(uint32_t address) in nrf_nvmc_byte_read() argument
383 return *(volatile uint8_t *)address; in nrf_nvmc_byte_read()
386 NRF_STATIC_INLINE uint16_t nrf_nvmc_halfword_read(uint32_t address) in nrf_nvmc_halfword_read() argument
[all …]
Dnrf_mpc.h321 uint32_t address);
344 uint32_t address);
413 uint32_t address);
437 uint32_t address);
828 uint32_t address) in nrf_mpc_region_startaddr_set() argument
831 NRFX_ASSERT((address & 0xFFFUL) == 0); in nrf_mpc_region_startaddr_set()
833 p_reg->REGION[index].STARTADDR = address; in nrf_mpc_region_startaddr_set()
845 uint32_t address) in nrf_mpc_region_addrmask_set() argument
848 NRFX_ASSERT((address & 0xFFFUL) == 0); in nrf_mpc_region_addrmask_set()
850 p_reg->REGION[index].ADDRMASK = address; in nrf_mpc_region_addrmask_set()
[all …]
Dnrf_acl.h75 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()
Dnrf_resetinfo.h204 uint32_t address);
303 uint32_t address) in nrf_resetinfo_error_address_set() argument
306 p_reg->RESETREAS.ERROR.ADDRESS = address; in nrf_resetinfo_error_address_set()
308 p_reg->ERROR.ADDRESS = address; in nrf_resetinfo_error_address_set()
Dnrf_vpr_csr.h124 NRF_STATIC_INLINE void nrf_vpr_csr_machine_trap_vector_table_addr_set(uint32_t address);
373 NRF_STATIC_INLINE void nrf_vpr_csr_machine_trap_vector_table_addr_set(uint32_t address) in nrf_vpr_csr_machine_trap_vector_table_addr_set() argument
375 NRFX_ASSERT(!(address & 0xF)); in nrf_vpr_csr_machine_trap_vector_table_addr_set()
377 nrf_csr_write(VPRCSR_MTVT, address); in nrf_vpr_csr_machine_trap_vector_table_addr_set()
Dnrf_twi.h311 NRF_STATIC_INLINE void nrf_twi_address_set(NRF_TWI_Type * p_reg, uint8_t address);
480 NRF_STATIC_INLINE void nrf_twi_address_set(NRF_TWI_Type * p_reg, uint8_t address) in nrf_twi_address_set() argument
482 p_reg->ADDRESS = address; in nrf_twi_address_set()
Dnrf_memconf.h261 uint8_t address);
472 uint8_t address) in nrf_memconf_bitline_address_set() argument
475 MEMCONF_REPAIR_BITLINE_ADDR_Msk) | (uint32_t)address; in nrf_memconf_bitline_address_set()
Dnrf_uicr.h169 uint32_t address; /**< Block start address. */ member
260 uint32_t address; /**< Peripheral address. */ member
507 config.address = (p_reg->MEM[index].CONFIG & UICR_MEM_CONFIG_ADDRESS_Msk); in nrf_uicr_mem_config_get()
536 config.address = (p_reg->PERIPH[index].CONFIG & UICR_PERIPH_CONFIG_ADDRESS_Msk); in nrf_uicr_periph_config_get()
Dnrf_radio.h1012 NRF_STATIC_INLINE void nrf_radio_base0_set(NRF_RADIO_Type * p_reg, uint32_t address);
1029 NRF_STATIC_INLINE void nrf_radio_base1_set(NRF_RADIO_Type * p_reg, uint32_t address);
1903 NRF_STATIC_INLINE void nrf_radio_base0_set(NRF_RADIO_Type * p_reg, uint32_t address) in nrf_radio_base0_set() argument
1905 p_reg->BASE0 = address; in nrf_radio_base0_set()
1913 NRF_STATIC_INLINE void nrf_radio_base1_set(NRF_RADIO_Type * p_reg, uint32_t address) in nrf_radio_base1_set() argument
1915 p_reg->BASE1 = address; in nrf_radio_base1_set()
Dnrf_twim.h527 uint8_t address);
923 uint8_t address) in nrf_twim_address_set() argument
925 p_reg->ADDRESS = address; in nrf_twim_address_set()
/hal_nordic-latest/nrfx/haly/
Dnrfy_rramc.h193 uint32_t address, in nrfy_rramc_byte_write() argument
204 __nrfy_internal_rramc_byte_write(p_reg, address, value); in nrfy_rramc_byte_write()
221 uint32_t address, in nrfy_rramc_bytes_write() argument
235 __nrfy_internal_rramc_byte_write(p_reg, address + i, ((uint8_t const *)src)[i]); in nrfy_rramc_bytes_write()
247 NRFY_STATIC_INLINE uint8_t nrfy_rramc_byte_read(uint32_t address) in nrfy_rramc_byte_read() argument
250 uint8_t byte = nrf_rramc_byte_read(address); in nrfy_rramc_byte_read()
267 uint32_t address, in nrfy_rramc_word_write() argument
278 __nrfy_internal_rramc_word_write(p_reg, address, value); in nrfy_rramc_word_write()
295 uint32_t address, in nrfy_rramc_words_write() argument
310 address + (NRFY_RRAMC_BYTES_IN_WORD * i), in nrfy_rramc_words_write()
[all …]
Dnrfy_mvdma.h587 uint32_t address = nrf_mvdma_last_source_address_get(p_reg); in nrfy_mvdma_last_source_address_get() local
589 return address; in nrfy_mvdma_last_source_address_get()
596 uint32_t address = nrf_mvdma_last_sink_address_get(p_reg); in nrfy_mvdma_last_sink_address_get() local
598 return address; in nrfy_mvdma_last_sink_address_get()
Dnrfy_twim.h600 uint8_t address) in nrfy_twim_address_set() argument
602 nrf_twim_address_set(p_reg, address); in nrfy_twim_address_set()
/hal_nordic-latest/nrfx/samples/src/nrfx_saadc/advanced_non_blocking_internal_timer/
DREADME.md53 - "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-latest/nrfx/samples/src/nrfx_saadc/maximum_performance/
DREADME.md55 - "Sample buffer address == 0x([0-9a-z]{8})"
60 - "Sample buffer address == 0x([0-9a-z]{8})"
/hal_nordic-latest/nrfx/samples/src/nrfx_uarte/rx_double_buffered/
DREADME.md61 > (.*) stands for memory address
/hal_nordic-latest/nrfx/
DCHANGELOG.md77 - Added getters for BLE address, BLE IR, and BLE ER in the FICR HAL.
221 - Added functions for getting the address of peripheral tasks and events in the EGU HAL.
228 - Renamed functions for getting the task of event address in the following drivers: CLOCK, GPIOTE, …
420 - Removed usage of the NRF_UICR symbol on non-secure targets in address validity checks in the NVMC…
481 - Fixed address assertions in NVMC driver for the nRF5340 network core.
499 - Updated address and task getters in all HALs to return values as uint32_t type.
629 - Added the nrfx_is_word_aligned() function for checking whether an address is word-aligned.

12