Part Number: MSP432P401R
I have a logic analyzer attached to MSP432-EUSCI_B3-Pins in SPI slave mode. I read data using DMA channel 7 (DMA_CH7_EUSCIB3RX0). The DMA-finished-interrupt gets called so we have some DMA transfer taking place.
But when I try to capture/visualize data in logic analyzer I only see some peaks but no proper signal for SPI slave. Here is an example of two 32 bit transfers:
However, if I add the following code after initialization/enabling of PRIMARY_MODULE_FUNCTION the logic analyzer shows correct signals - but then the DMA does not work anymore!
GPIO_setAsInputPinWithPullDownResistor(GPIO_PORT_P10, GPIO_PIN3 | GPIO_PIN2 | GPIO_PIN1);
Any ideas how I can have both DMA and logic analyzer working properly?