Lines Matching full:in

5  * Redistribution and use in source and binary forms, with or without
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
150 …* @param[in] p_event Pointer to event structure. Event is allocated on the stack so it is avail…
152 * @param[in] p_context Context passed to interrupt handler, set on initialization.
162 * @param[in] p_instance Pointer to the driver instance structure.
163 * @param[in] p_config Pointer to the structure with initial configuration.
164 * @param[in] event_handler Event handler provided by the user. If not provided driver works in
170 * instance ID is already in use. This is
180 * @param[in] p_instance Pointer to the driver instance structure.
187 * @param[in] p_instance Pointer to the driver instance structure.
188 * @param[in] task Task.
198 * @param[in] p_instance Pointer to the driver instance structure.
199 * @param[in] event Event.
209 * If an event handler was provided in nrfx_uart_init() call, this function
211 * Otherwise, the transfer is performed in blocking mode, i.e. this function
215 * @param[in] p_instance Pointer to the driver instance structure.
216 * @param[in] p_data Pointer to data.
217 * @param[in] length Number of bytes to send.
231 * @param[in] p_instance Pointer to the driver instance structure.
240 * @note @ref NRFX_UART_EVT_TX_DONE event will be generated in non-blocking mode.
244 * @param[in] p_instance Pointer to the driver instance structure.
251 * If an event handler was provided in the nrfx_uart_init() call, this function
253 * Otherwise, the transfer is performed in blocking mode, meaning that this function
257 * The receive buffer pointer is double buffered in non-blocking mode. The secondary
263 * will be stopped on error or when the supplied buffer fills up. In both cases,
264 * RX FIFO gets disabled. This means that, in case of error, the bytes that follow are lost.
266 * the reception is stopped in case of error, but FIFO is still ongoing. The receiver is still
271 * @param[in] p_instance Pointer to the driver instance structure.
272 * @param[in] p_data Pointer to data.
273 * @param[in] length Number of bytes to receive.
275 * @retval NRFX_SUCCESS If reception is complete (in case of blocking mode) or it is
276 * successfully started (in case of non-blocking mode).
279 * in non-blocking mode).
291 * @brief Function for testing the receiver state in blocking mode.
293 * @param[in] p_instance Pointer to the driver instance structure.
307 * @param[in] p_instance Pointer to the driver instance structure.
317 * @param[in] p_instance Pointer to the driver instance structure.
323 * @note @ref NRFX_UART_EVT_TX_DONE event will be generated in non-blocking mode.
327 * @param[in] p_instance Pointer to the driver instance structure.
333 …* @note Function should be used in blocking mode only. In case of non-blocking mode, an error even…
336 * @param[in] p_instance Pointer to the driver instance structure.