Home
last modified time | relevance | path

Searched refs:m_tx_buffer (Results 1 – 10 of 10) sorted by relevance

/hal_nordic-latest/nrfx/samples/src/nrfx_uarte/rx_double_buffered/
Dmain.c94 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()
DREADME.md19 …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/
Dmain.c71 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()
DREADME.md21 * @p m_tx_buffer -> @p m_rx_buffer
/hal_nordic-latest/nrfx/samples/src/nrfx_spim/blocking/
Dmain.c70 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()
DREADME.md20 A specified message ( @p MSG_TO_SEND ) from @p m_tx_buffer is transmitted.
/hal_nordic-latest/nrfx/samples/src/nrfx_spim/non_blocking/
Dmain.c70 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()
DREADME.md20 A specified message ( @p MSG_TO_SEND ) from @p m_tx_buffer is transmitted.
/hal_nordic-latest/drivers/nrf_802154/driver/src/
Dnrf_802154.c89 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/
Dnrfx_usbd.c350 static uint32_t m_tx_buffer[NRFX_CEIL_DIV( variable
2222 return m_tx_buffer; in nrfx_usbd_feeder_buffer_get()