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.

strange parameter in DMA interrupt function with the last halcogen update

Other Parts Discussed in Thread: HALCOGEN

Hi,

I'm working with a RM48. The last halcogen update (v03.08.03) has modified the prototype of DMA interrupt notification function from:

void dmaGroupANotification(dmaInterrupt_t inttype, sint32 channel)

to

void dmaGroupANotification(dmaInterrupt_t inttype, uint32 channel)

Before the HalcCoGen update the channel value was 0 for DMA_CH0 (as expected from DMA_CH0 define) and now is 4294967295 (uint32 MAX). Perhaps somewhere is wrongly casted?

For the moment I'm using interrupt only for DMA ch 0 so I can avoid the channel control, but I suspect a bug here.


Thank you