Searched refs:m_tx_buffer (Results 1 – 10 of 10) sorted by relevance
| /hal_nordic-latest/nrfx/samples/src/nrfx_uarte/rx_double_buffered/ |
| D | main.c | 94 static uint8_t m_tx_buffer[sizeof(MSG1) + sizeof(MSG2) + sizeof(MSG3)]; variable 182 memcpy(m_tx_buffer , MSG1, strlen(MSG1)); in main() 183 memcpy(m_tx_buffer + strlen(MSG1) , MSG2, strlen(MSG2)); in main() 184 memcpy(m_tx_buffer + strlen(MSG1) + strlen(MSG2), MSG3, strlen(MSG3) + 1); in main() 185 NRFX_LOG_INFO("Content of TX buffer: %s", m_tx_buffer); in main() 194 status = nrfx_uarte_tx(&uarte_inst, m_tx_buffer, NRFX_ARRAY_SIZE(m_tx_buffer), 0); in main()
|
| D | README.md | 19 …the nrfx_uarte driver, and using UARTE instance sends a specified message stored in @p m_tx_buffer. 22 * @p m_tx_buffer -> @p m_rx_buffers
|
| /hal_nordic-latest/nrfx/samples/src/nrfx_uarte/tx_rx_non_blocking/ |
| D | main.c | 71 static uint8_t m_tx_buffer[] = MSG_TO_SEND; variable 90 NRFX_LOG_INFO("Content of TX buffer: %s", m_tx_buffer); in uarte_handler() 126 NRFX_LOG_INFO("Content of TX buffer: %s", m_tx_buffer); in main() 133 status = nrfx_uarte_tx(&uarte_inst, m_tx_buffer, sizeof(m_tx_buffer), 0); in main()
|
| D | README.md | 21 * @p m_tx_buffer -> @p m_rx_buffer
|
| /hal_nordic-latest/nrfx/samples/src/nrfx_spim/blocking/ |
| D | main.c | 70 static uint8_t m_tx_buffer[] = MSG_TO_SEND; variable 100 nrfx_spim_xfer_desc_t spim_xfer_desc = NRFX_SPIM_XFER_TRX(m_tx_buffer, sizeof(m_tx_buffer), in main()
|
| D | README.md | 20 A specified message ( @p MSG_TO_SEND ) from @p m_tx_buffer is transmitted.
|
| /hal_nordic-latest/nrfx/samples/src/nrfx_spim/non_blocking/ |
| D | main.c | 70 static uint8_t m_tx_buffer[] = MSG_TO_SEND; variable 122 nrfx_spim_xfer_desc_t spim_xfer_desc = NRFX_SPIM_XFER_TRX(m_tx_buffer, sizeof(m_tx_buffer), in main()
|
| D | README.md | 20 A specified message ( @p MSG_TO_SEND ) from @p m_tx_buffer is transmitted.
|
| /hal_nordic-latest/drivers/nrf_802154/driver/src/ |
| D | nrf_802154.c | 89 static uint8_t m_tx_buffer[RAW_PAYLOAD_OFFSET + MAX_PACKET_SIZE]; variable 106 memcpy(m_tx_buffer, p_data, RAW_PAYLOAD_OFFSET + length); in tx_buffer_fill_for_modulated_carrier() 612 result = nrf_802154_request_modulated_carrier(NRF_802154_TERM_NONE, m_tx_buffer); in nrf_802154_modulated_carrier()
|
| /hal_nordic-latest/nrfx/drivers/src/ |
| D | nrfx_usbd.c | 350 static uint32_t m_tx_buffer[NRFX_CEIL_DIV( variable 2222 return m_tx_buffer; in nrfx_usbd_feeder_buffer_get()
|