请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
器件型号:MSP430FR5969 Thread 中讨论的其他器件:SYSBIOS
您好!
我尝试使用 SPIEUSCIBDMA、但之后
SPI_transfer(masterSpi, &masterTransaction);
IM 堆栈
_interrupt Void ti_sysbios_family_msp430_Hwi42(Void)
{
while(1){};
}我的 DMA ISR
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
}