This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: MSP432P401R
Hi,
i am trying to get external DMA trigger to work with an external ADC (ADS131A02).
I am receiving the INT from ADS131A02 but DMA is not getting triggert.
Is there anything wrong with my code:
#define SAMPLE_LENGTH 512 int32_t data_array1[SAMPLE_LENGTH]; int32_t data_array2[SAMPLE_LENGTH]; uint8_t data_array[4]={0x00,0x00,0x00,0x00}; volatile int switch_data = 0;
void ADS131A02_DMASetup(void) { //Assigning DMA to SPI Channels DMA_enableModule(); DMA_setControlBase(controlTable); DMA_assignChannel(DMA_CH0_EUSCIB0TX0); DMA_assignChannel(DMA_CH1_EUSCIB0RX0); DMA_assignChannel(DMA_CH6_EXTERNALPIN); DMA_disableChannelAttribute(DMA_CH6_EXTERNALPIN,UDMA_ATTR_ALTSELECT | UDMA_ATTR_USEBURST |UDMA_ATTR_HIGH_PRIORITY |UDMA_ATTR_REQMASK); // Setup the TX transfer characteristics & buffers DMA_setChannelControl( DMA_CH6_EXTERNALPIN | UDMA_PRI_SELECT,UDMA_SIZE_32 | UDMA_SRC_INC_NONE | UDMA_DST_INC_32 | UDMA_ARB_1); DMA_setChannelTransfer(DMA_CH6_EXTERNALPIN | UDMA_PRI_SELECT,UDMA_MODE_BASIC, data_array,(void *) MAP_SPI_getTransmitBufferAddressForDMA(EUSCI_B0_BASE), 4); DMA_setChannelControl (DMA_CH0_EUSCIB0TX0 | UDMA_PRI_SELECT,UDMA_SIZE_32 | UDMA_SRC_INC_NONE | UDMA_DST_INC_32 | UDMA_ARB_1); DMA_setChannelTransfer(DMA_CH0_EUSCIB0TX0 | UDMA_PRI_SELECT,UDMA_MODE_BASIC, data_array,(void *) MAP_SPI_getTransmitBufferAddressForDMA(EUSCI_B0_BASE),3); DMA_setChannelControl (DMA_CH1_EUSCIB0RX0 | UDMA_PRI_SELECT,UDMA_SIZE_32 | UDMA_SRC_INC_NONE | UDMA_DST_INC_32 | UDMA_ARB_1); DMA_setChannelTransfer(DMA_CH1_EUSCIB0RX0 | UDMA_PRI_SELECT,UDMA_MODE_PINGPONG,(void *) MAP_SPI_getReceiveBufferAddressForDMA(EUSCI_B0_BASE),data_array1,SAMPLE_LENGTH); DMA_setChannelControl (DMA_CH1_EUSCIB0RX0 | UDMA_PRI_SELECT,UDMA_SIZE_32 | UDMA_SRC_INC_NONE | UDMA_DST_INC_32 | UDMA_ARB_1); DMA_setChannelTransfer(DMA_CH1_EUSCIB0RX0 | UDMA_PRI_SELECT,UDMA_MODE_PINGPONG,(void *) MAP_SPI_getReceiveBufferAddressForDMA(EUSCI_B0_BASE),data_array2,SAMPLE_LENGTH); DMA_assignInterrupt(DMA_INT1, 6); DMA_clearInterruptFlag(INT_DMA_INT1); DMA_clearInterruptFlag(6); Interrupt_enableInterrupt(DMA_INT1); Interrupt_enableMaster(); DMA_enableChannel(6); DMA_enableChannel(0); DMA_enableChannel(1); }
And here is my DMA INT:
void DMA_INT1_IRQHandler(void) { DMA_clearInterruptFlag(6); /* Switch between primary and alternate bufferes with DMA's PingPong mode */ if (DMA_getChannelAttribute(6) & UDMA_ATTR_ALTSELECT) { DMA_setChannelControl(UDMA_PRI_SELECT | DMA_CH1_EUSCIB0RX0,UDMA_SIZE_32 | UDMA_SRC_INC_NONE | UDMA_DST_INC_32 | UDMA_ARB_1); DMA_setChannelTransfer(UDMA_PRI_SELECT | DMA_CH1_EUSCIB0RX0,UDMA_MODE_PINGPONG, (void*)MAP_SPI_getReceiveBufferAddressForDMA(EUSCI_B0_BASE),data_array1, SAMPLE_LENGTH); switch_data = 1; } else { DMA_setChannelControl(UDMA_ALT_SELECT | DMA_CH1_EUSCIB0RX0,UDMA_SIZE_32 | UDMA_SRC_INC_NONE | UDMA_DST_INC_32 | UDMA_ARB_1); DMA_setChannelTransfer(UDMA_ALT_SELECT | DMA_CH1_EUSCIB0RX0,UDMA_MODE_PINGPONG, (void*)MAP_SPI_getReceiveBufferAddressForDMA(EUSCI_B0_BASE),data_array2, SAMPLE_LENGTH); switch_data = 0; } }
Hi Sai,
i know this examples and i already have SPI with DMA working with an other project.
What i am not so sure, is adding the DMAE0 External PIN to trigger DMA.
Is there any example of this?
Hi Bruce,
what do you mean about alternate function? DMAE0 should only be an external PIN connectec to ADC INT. Once INT from ADC is fired, it will trigger the external DMAE0 (PIN 7.0) and this should handle the SPI transfer without needing to wake the CPU up.
If the DMA receive buffer has like 512 values, it should fired the DMA_INT1_IR to wake the CPU after reading 512 values. Once CPU reads from the first buffer, the DMA keeps reading data and saving it to the second buffer. (PINGPONG)
I have an example that this is working with the internal 14Bit ADC, but here it uses DMA_CH7_ADC14 to trigger the DMA.
My problem is that DMA_INT1_IR gets never called. I change the buffer size to 1 Byte and hope to get DMA_INT1_IR fired but its not happening. I think DMA_CH6_EXTERNALPIN is not proper set on my code or something.
Any idea?
Hi Bruce,
my configuration is correct i think:
GPIO_setAsInputPinWithPullUpResistor(GPIO_PORT_P7, GPIO_PIN0); GPIO_setAsPeripheralModuleFunctionInputPin(GPIO_PORT_P7, GPIO_PIN0, GPIO_PRIMARY_MODULE_FUNCTION);
And here is the table:
right? DMAE0 should only be an interrupt that trigger the DMA. Once DMA is done it will wake up the MCU and it will swap the arrays. Thats it.
**Attention** This is a public forum