On Thu, Nov 5, 2015 at 11:36 AM, Roberto Fichera <[email protected]> wrote: > The question is, can I call the dahdi_transmit() from the TX DMA callback and > the dahdi_receive() from > the RX DMA callback or should use a particular order for them?
I don't think it will be a problem to call them asynchronously. Depending on your signal, _dahdi_transmit() and _dahdi_recieve() can potentially do a lot of processing. They're better suited in a bottom half than in interrupt context. -- Russ Meyerriecks Digium, Inc. | Linux Kernel Developer 445 Jan Davis Drive NW - Huntsville, AL 35806 - USA direct: +1 256-428-6025 Check us out at: www.digium.com & www.asterisk.org -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live introductory webinar every Thurs: http://www.asterisk.org/hello asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
