Could other interrupt influence ADC converter time?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Could other interrupt influence ADC converter time?

1,726 Views
李风heart
Contributor II

Hi:

   I am using S2K144 ,I can find the total ADC converter time in the RM:pastedImage_1.png

   So let's say I calculate total conversion time is 80 bus clock in this way, will the 80 changed to 100 while there is another Interrupt happened and take up 20 bus clock during ADC conversion? Or any other peripherals (such as FLEXCAN LPSPI and so on) able to influence the ADC conversion time?

Tags (2)
0 Kudos
9 Replies

1,518 Views
williamsont
Contributor I

The conversion times deduced above are not particularly fast by today's standards and there will be occasions when a faster conversion time is needed MCDVOICE

0 Kudos

1,518 Views
李风heart
Contributor II

?

0 Kudos

1,520 Views
Robin_Shen
NXP TechSupport
NXP TechSupport

Hi Feng,

Other peripherals and interrupts will not influence the ADC conversion time.
But higher priority may influence ADC interrupt. You can refer: A Beginner’s Guide on Interrupt Latency - and Interrupt Latency of the Arm Cortex-M processors

Figure 2 Nested Interrupt support.jpg

Best Regards,

Robin

 

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos

1,520 Views
李风heart
Contributor II

Hi Robin,

   What about use PDB moudle  to trigger mulity ADC channel? Each PDB pre-trigger channel'delay is fixed, and they while trigger ADC channel one by one. Could this process be interrupt by Interrupt or other peripherals ?

   I mean if I set up PDB1 channel 0 delay 100 bus clock to trigger ADC1 channel 0,and PDB1 channel 1 delay 300 bus clock to trigger ADC1 channel 1, so the ADC1 channel 0 will start conversion at 100 bus clock and end conversion at 180 bus clock,  ADC1 channel 1 will start conversion at 300 bus clock and end conversion at 380 bus clock. Is there some case that could make 180 and 380 be other value(such as 200 and 400 or even more)? such as a higher priority interrupt is occurring or some other peripherals is in progress?

Best Regards,

Feng

0 Kudos

1,520 Views
Robin_Shen
NXP TechSupport
NXP TechSupport

no.

Are you sure you calculated the ADC total conversion time correctly?

Maybe you can refer the method described in : verify ADC conversion rate with oscilloscope

You should notice the PDB trigger time delay is configured larger than the ADC total conversion time.

PDB Sequence Error Interrupt.png

Best Regards,

Robin

 

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos

1,520 Views
李风heart
Contributor II

   Bcause I config some AD channels in my project, I also use some other peripherals (FLEXCAN, LPSPI,LPIT FTM and so on). AD conversion works well(all channels) while there are not some CAN frames on CAN bus. But while there are some CAN frames on the bus(I use interrupt to receive CAN frame in my project), the AD conversion just doesn't work well. It stoped(AD1 channel 0-7) ,But other peripherals seems works well (AD1 channel 8-15 also works well). It confused me a lot.Are there any probabilities?

Best Regards,

Feng

0 Kudos

1,518 Views
Robin_Shen
NXP TechSupport
NXP TechSupport

Hi Feng,

I just read another question that you posted: S32K144 DMA Mode Conflict with ADC and CAN
Have you try to reduce the execution time in interrupts?
Would you please try to read out all ADC result one time by using DMA in order to reduce the load on the CPU? Seems that your are unable to read ADC result in time by using interrupt, and the ADC interrupt seems influenced by other interrupts.

43.3 DMA Support on ADC.png

Best Regards,

Robin

 

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos

1,518 Views
李风heart
Contributor II

Hi Robin,

   I tried to read AD result in interrupt, But the AD1 channel 0-7 still stops while there are some CAN frames received.

Best Regards,

Feng

0 Kudos

1,518 Views
李风heart
Contributor II

   Actualy, I didnot read AD conversion result in Interrupt or DMA, I read all the results one time. I creat a 10ms task in my project and read all the AD results at the begining of the task ,after I read all the results, I start a new AD conversion by trigger the PDB moudle. And at the next 10ms task running, it kept repeating this process. It seems 120 counter for each PDB channel is enough for AD to complete a conversion while there isnot any CAN message to be received. Isn't it right?

   And I changge the PDB counter for each channel to a big number such as 640, seems the AD conversion works well whether there are some messages on the CAN bus to be received. why? It seems there must something influenced by CAN moudle, it make the AD conversion time longer,right? How?

Best Regards,

Feng

0 Kudos