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.

[MCSDK / QMSS] How to allocate QMSS accumulator resources and eventIds?

We are implementing a simple inter-core communication system on the 6670 DSP using the QMSS features of MCSDK.  We only need to support two cores.  Each core will have a reception (Rx) queue that the other core can post a message (i.e. descriptor to).  We have already got this working using polling, i.e. each core polls its own Rx queue for messages.
 
We have now implemented this with an interrupt in one core only, i.e. the core is interrupted when a descriptor is posted in its Rx queue.  We did this by following the MCSDK example project ‘PA_emacExample’.  We used the same resources as in the example, that is:
 
IRQ number           7
 
System event        48   (the example code states that this corresponds to Accumulator Channel 0)
 
Accumulator channel  0
 
PDSP                 0
 
My question is, what numbers of the above parameters can I use for the other core?
 
E.g. should I use accumulator channel 1 for the other core and, if so, which event id should I use?
 
Best regards
 
David