This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Serial library mode selection

I'm using the serial library for the first time. What are the advantages/disadvantages of using IRQ and DMA? How should FIFO queue and buffer sizes be chosen?

Parents
  • Hi, 

    What are the advantages/disadvantages of using IRQ and DMA?
    • NRF_SERIAL_MODE_IRQ - Interrupt mode. API can be set to work in synchronous or asynchronous mode. Queues and buffers must be passed during initialization. Events will be generated if a non NULL handler is passed as the ev_handler parameter.
    • NRF_SERIAL_MODE_DMA - Similar to IRQ mode, but it uses EasyDMA.

    How should FIFO queue and buffer sizes be chosen?

    Please see the answer in this post.  

    -Amanda H.

  • What is the advantage of using EasyDMA? I understand that direct memory access means memory copying is not required. But nrf_serial_read copies the data anyway. So is there any advantage of using EasyDMA? I assume the RX buffer could be read directly instead of using nrf_serial_read (but what function should then be called to mark the data as processed?), but if the size is 1 then there is no efficiency improvements really, the data would need copying anyway and function calls would be a greater overhead.

    In terms of buffer sizes – I understand that the buffer size is the minimum number of bytes that can be sent or received in one shot, from your serial library docs: "They are the smallest slices of data that can be transfered in a single UART driver - legacy layer driver request". So in terms of TX, it's the minimum data length I would want to send? And RX is the minimum data I expect to receive? So for most protocols, I imagine this would be problematic if set to anything other than 1, as the data may be corrupted or missing bytes, or may not fit neatly into fixed size buffers. Unless you can dynamically set the expected rx size?

    FIFO sizes – I assume these are queues of pointers to data passed into nrf_serial_write, I'm not sure what the queue is for when reading...where is the data stored for the queue of pointers waiting to be processed?

    These could do with better explanation in the docs.

Reply
  • What is the advantage of using EasyDMA? I understand that direct memory access means memory copying is not required. But nrf_serial_read copies the data anyway. So is there any advantage of using EasyDMA? I assume the RX buffer could be read directly instead of using nrf_serial_read (but what function should then be called to mark the data as processed?), but if the size is 1 then there is no efficiency improvements really, the data would need copying anyway and function calls would be a greater overhead.

    In terms of buffer sizes – I understand that the buffer size is the minimum number of bytes that can be sent or received in one shot, from your serial library docs: "They are the smallest slices of data that can be transfered in a single UART driver - legacy layer driver request". So in terms of TX, it's the minimum data length I would want to send? And RX is the minimum data I expect to receive? So for most protocols, I imagine this would be problematic if set to anything other than 1, as the data may be corrupted or missing bytes, or may not fit neatly into fixed size buffers. Unless you can dynamically set the expected rx size?

    FIFO sizes – I assume these are queues of pointers to data passed into nrf_serial_write, I'm not sure what the queue is for when reading...where is the data stored for the queue of pointers waiting to be processed?

    These could do with better explanation in the docs.

Children
Related