Part Number: MSP430FR5969
Other Parts Discussed in Thread: SYSBIOS
Hi,
Im trying to use SPIEUSCIBDMA, but after
SPI_transfer(masterSpi, &masterTransaction);
im stack in
_interrupt Void ti_sysbios_family_msp430_Hwi42(Void)
{
while(1){};
}My DMA isr is
Void myDMAISR(UArg arg)
{
// Services and clears its assigned DMA channel interrupts
SPI_serviceISR(masterSpi);
// some other user application code that's not related to the SPI driver,
// but is used to service remaining DMA channels
}