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.

Reply
  • 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.

Children
Related