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.

CLA on Piccolo 28035

hi ,

 

Is it possible to program the CLA , that it will inform the CPU once ,  after collecting number of samples (more than one)  from ADC  ?

meaning that the task in CLA will wait to collect the required number of ADC samples , and only then will issue interrupt to the CPU.

  • Hi Eyal

    The CLA can only issue interrupts on the completion of a task. What you are looking for is something akin to a DMA. If your device doesnt have a DMA you could do this:

    1. ADCINT1 -> trigger CLA Task 1
    2. Task 1: save sample in buffer
    3. increment buffer count
    4. if buffer count == N, set flag in message RAM
    5. task complete, send interrupt to C28
    6. C28 services End_of_Task interrupt
    7. ISR: if flag set, process buffer else exit ISR

    There is a little overhead in this method but you can have  a pretty high sampling rate.

  • Thanks , it is quite helpful.......