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.

MSPM0G3507: ADC Simultaneous Sampling

Part Number: MSPM0G3507

Tool/software:

Hello.

Two questions.

1. Simultaneous sampling - if both ADCs have interrupt set...what has priority ?

2. Is there some way I can read the data from both ADCs at the same time  - I am very pushed for time !

I can do

adc0Res = DL_ADC12_getMemResult(ADC12_0_INST, DL_ADC12_MEM_IDX_0);
adc1Res = DL_ADC12_getMemResult(ADC12_1_INST, DL_ADC12_MEM_IDX_0);
But would prefer a single read...

Regards

Phil

  • Hi, Philip

    1. Simultaneous sampling - if both ADCs have interrupt set...what has priority ?

    There are ADC interrupt's priority setting in syscfg - ADC - interrupt.

    You can control this manually.

    But enter and exit interrupt will take about 60+ CPU cycles totally.

    2. Is there some way I can read the data from both ADCs at the same time  - I am very pushed for time !

    Single read is not possible.

    But we can control ADC start together, and then waiting for ADC conversion stop.

    Use a Timer to generate a 1:2 event and connect this event to both ADC.

    Then the ADC0 and ADC1 result will be the same time's sampling result.

    But you still need to read two ADC's result in two steps.

    -------------

    Or, you can try using two DMA channel to transfer two ADC's result to RAM, without using CPU operation.

    Regards,

    Helic

  • Thanks.....but 30 cycles to enter an interrupt ??

    That is terrible !

    Is this due to software overhead ?...it can't be the M0...they can normally service an interrupt in maybe six cycles...

    How long does an NMI take to service ?

    Regards

    Phil

  • Hi, 

    but 30 cycles to enter an interrupt ??

    Correct. Test result of external interrupt.

    about 30 cycles and takes about 370ns @CPU 80MHz.

    How long does an NMI take to service ?

    I think it takes the same count cycles. But never test this.

    Regards,

    Helic