Home
last modified time | relevance | path

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

/Zephyr-latest/tests/boards/mec172xevb_assy6906/qspi/src/
Dmain.c126 uint32_t txdata = 0; in spi_flash_read_status() local
130 txdata = opcode; in spi_flash_read_status()
132 spi_bufs[0].buf = &txdata; in spi_flash_read_status()
161 uint32_t txdata = 0; in spi_flash_write_status() local
164 txdata = spi_status; in spi_flash_write_status()
165 txdata <<= 8U; in spi_flash_write_status()
166 txdata |= opcode; in spi_flash_write_status()
168 spi_bufs[0].buf = &txdata; in spi_flash_write_status()
187 uint32_t txdata = 0; in spi_flash_tx_one_byte_cmd() local
190 txdata = opcode; in spi_flash_tx_one_byte_cmd()
[all …]
/Zephyr-latest/samples/boards/microchip/mec172xevb_assy6906/qmspi_ldma/src/
Dmain.c234 uint8_t txdata[8] = {0}; in spi_flash_read_fd_sync() local
243 txdata[0] = opcode; in spi_flash_read_fd_sync()
249 &txdata[1], sizeof(txdata)-1); in spi_flash_read_fd_sync()
256 spi_bufs[cnt].buf = txdata; in spi_flash_read_fd_sync()
289 uint8_t txdata[8] = {0}; in spi_flash_read_hd_sync() local
298 txdata[0] = opcode; in spi_flash_read_hd_sync()
300 &txdata[1], sizeof(txdata)-1); in spi_flash_read_hd_sync()
305 spi_bufs[0].buf = txdata; in spi_flash_read_hd_sync()
/Zephyr-latest/tests/kernel/stack/stack/src/
Dmain.c257 stack_data_t *txdata = p3; in thread_entry_wait() local
259 k_stack_push(p1, *(txdata + 2)); in thread_entry_wait()
260 k_stack_push(p1, *(txdata + 3)); in thread_entry_wait()