Can i connect channel 0 for multiple DMA2 streams ?
Board : STM32F746g disco
I configure ADC1 with DMA2 Stream4
My LCD configured in DMA2 Stream 0
Both are having the same DMA Channel 0. Is it okay or not. any conflict are there for this configuration. Because i did not get any output from both ADC and LCD side. Can i use DMA_CHANNEL_0 both cases ?.
ADC1:
hdma_adc1.Instance = DMA2_Stream4;
hdma_adc1.Init.Channel = DMA_CHANNEL_0;
LCD :
DmaHandle.Instance = DMA2_Stream0;
DmaHandle.Init.Channel = DMA_CHANNEL_0;
Thanks
Manikandan
