| /hal_nordic-latest/nrfx/samples/src/nrfx_twim_twis/txtx/ |
| D | main.c | 125 … uint8_t bytes[sizeof(drone_reg_map_t)]; ///< Array for referring to individual structure elements. member 166 NRFX_LOG_INFO("drone_idx: %d \t| 0x%X", p_drone_regs->bytes[DRONE_REG_ID], in drone_reg_print() 167 p_drone_regs->bytes[DRONE_REG_ID]); in drone_reg_print() 168 NRFX_LOG_INFO("drone_mass: %d \t| 0x%X", p_drone_regs->bytes[DRONE_REG_MASS], in drone_reg_print() 169 p_drone_regs->bytes[DRONE_REG_MASS]); in drone_reg_print() 170 NRFX_LOG_INFO("x_force: %d \t| 0x%X", p_drone_regs->bytes[DRONE_REG_FORCE_X], in drone_reg_print() 171 p_drone_regs->bytes[DRONE_REG_FORCE_X]); in drone_reg_print() 172 NRFX_LOG_INFO("y_force: %d \t| 0x%X", p_drone_regs->bytes[DRONE_REG_FORCE_Y], in drone_reg_print() 173 p_drone_regs->bytes[DRONE_REG_FORCE_Y]); in drone_reg_print() 174 NRFX_LOG_INFO("z_force: %d \t| 0x%X", p_drone_regs->bytes[DRONE_REG_FORCE_Z], in drone_reg_print() [all …]
|
| /hal_nordic-latest/nrfx/samples/src/nrfx_twim_twis/txrx/ |
| D | main.c | 127 …uint8_t bytes[sizeof(drone_reg_map_t)]; ///< Array for referring to individual structure e… member 168 NRFX_LOG_INFO("drone_idx: %d \t| 0x%X", p_drone_regs->bytes[DRONE_REG_ID], in drone_reg_print() 169 p_drone_regs->bytes[DRONE_REG_ID]); in drone_reg_print() 170 NRFX_LOG_INFO("drone_mass: %d \t| 0x%X", p_drone_regs->bytes[DRONE_REG_MASS], in drone_reg_print() 171 p_drone_regs->bytes[DRONE_REG_MASS]); in drone_reg_print() 172 NRFX_LOG_INFO("x_force: %d \t| 0x%X", p_drone_regs->bytes[DRONE_REG_FORCE_X], in drone_reg_print() 173 p_drone_regs->bytes[DRONE_REG_FORCE_X]); in drone_reg_print() 174 NRFX_LOG_INFO("y_force: %d \t| 0x%X", p_drone_regs->bytes[DRONE_REG_FORCE_Y], in drone_reg_print() 175 p_drone_regs->bytes[DRONE_REG_FORCE_Y]); in drone_reg_print() 176 NRFX_LOG_INFO("z_force: %d \t| 0x%X", p_drone_regs->bytes[DRONE_REG_FORCE_Z], in drone_reg_print() [all …]
|
| /hal_nordic-latest/nrfx/drivers/src/ |
| D | nrfx_uart.c | 576 size_t bytes, in rx_done_event() argument 582 event.data.rxtx.bytes = bytes; in rx_done_event() 589 size_t bytes) in tx_done_event() argument 594 event.data.rxtx.bytes = bytes; in tx_done_event() 653 event.data.error.rxtx.bytes = p_cb->rx_buffer_length; in irq_handler()
|
| D | nrfx_rramc.c | 87 NRFX_STATIC_INLINE bool fit_in_memory(uint32_t addr, bool uicr_allowed, uint32_t bytes) in fit_in_memory() argument 89 if ((addr - NRFY_RRAMC_RRAM_BASE_ADDRESS + bytes) < total_memory_size_get()) in fit_in_memory() 94 if (uicr_allowed && (addr - (uint32_t)NRF_UICR + bytes) < sizeof(NRF_UICR_Type)) in fit_in_memory()
|
| D | nrfx_nvmc.c | 178 static uint32_t partial_word_create(uint32_t addr, uint8_t const * bytes, uint32_t bytes_count) in partial_word_create() argument 190 ((uint8_t *)&value32)[byte_shift] = bytes[i]; in partial_word_create()
|
| /hal_nordic-latest/drivers/nrf_802154/serialization/spinel_base/ |
| D | spinel.h | 666 uint8_t bytes[8]; member 671 uint8_t bytes[8]; member 676 uint8_t bytes[16]; member 681 uint8_t bytes[6]; member 686 uint8_t bytes[16]; member 4231 SPINEL_API_EXTERN spinel_ssize_t spinel_packed_uint_decode(const uint8_t *bytes, 4234 SPINEL_API_EXTERN spinel_ssize_t spinel_packed_uint_encode(uint8_t *bytes, spinel_size_t len, unsig…
|
| D | spinel.c | 236 spinel_ssize_t spinel_packed_uint_decode(const uint8_t *bytes, spinel_size_t len, unsigned int *val… in spinel_packed_uint_decode() argument 251 value |= (unsigned int)(bytes[0] & 0x7F) << i; in spinel_packed_uint_decode() 254 bytes += sizeof(uint8_t); in spinel_packed_uint_decode() 256 } while ((bytes[-1] & 0x80) == 0x80); in spinel_packed_uint_decode() 294 spinel_ssize_t spinel_packed_uint_encode(uint8_t *bytes, spinel_size_t len, unsigned int value) in spinel_packed_uint_encode() argument 304 *bytes++ = (value & 0x7F) | 0x80; in spinel_packed_uint_encode() 308 *bytes++ = (value & 0x7F); in spinel_packed_uint_encode()
|
| /hal_nordic-latest/nrfx/drivers/include/ |
| D | nrfx_uart.h | 157 uint32_t bytes; ///< Number of bytes transfered. member
|
| /hal_nordic-latest/nrfx/haly/ |
| D | nrfy_nfct.h | 821 uint16_t bytes = (nrf_nfct_rx_bits_get(p_reg, true) >> 3U); in __nrfy_internal_nfct_events_process() local 824 NRFY_CACHE_INV(buffer, bytes); in __nrfy_internal_nfct_events_process()
|
| /hal_nordic-latest/nrfx/ |
| D | CHANGELOG.md | 564 - Fixed handling of short unaligned write requests (1 or 2 bytes in length) in the nrfx_nvmc_bytes_… 638 …d the type of the nrfx_uarte_xfer_evt_t structure field that holds the amount of transferred bytes.
|