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.

[参考译文] MSP430FR5969:具有 DMA 的 TI-RTOS SPI

Guru**** 2538950 points
Other Parts Discussed in Thread: SYSBIOS

请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/microcontrollers/msp-low-power-microcontrollers-group/msp430/f/msp-low-power-microcontroller-forum/1034130/msp430fr5969-ti-rtos-spi-with-dma

器件型号: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
 }


  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好、Adrian、

    看起来、void ti_SysBIOS_family_MSP430_Hwi42 (void)正在等待 将 其从无限循环中中断的某个操作、并且该组件缺失。

    您能否提供有关 SPI_TRANSF传输(masterSpi、&masterTransaction)何时被调用以及 DMAISR 是否被调用的信息?

    此致、

    Luke