I am using CC3220SF to communicate the sensor and other data with another MCU c2000. Also, simultaneously I am using networking functionality where CC3220SF is in AP mode and the data sharing protocol is HTTP. SPI communication with MCU c2000 has a large size of sensor data and uses DMA on cc3220SF. I see that Networking threads also use the DMA functionality. While serving both peripheral SPI and HTTP data GET request, I faced an issue where HTTP GET Requests were getting declined. Then I had to implement mutex between network data send and SPI data send, it started working fine. So Can you please help that if DMA is getting shared in between these two applications and if it is than how to solve the issue?