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