6 posts / 0 new
Last post
Rony
Offline
Last seen:4 years 9 months ago
Master
加入:2014-05-15 15:02
ADC at 2Khz

Until now I have been using the ADC with the app_timer but that is limited to 100Hz.
I need to measure at 2kHz.
How do I do that?
Thanks

JE_Dialog
Offline
Last seen:5 hours 14 min ago
工作人员
加入:2013-12-05 14:02
Hello Rony, I need to

Hello Rony, I need to research this a bit more - we don't have simple instructions on using the ADC i'm afraid. Let me provide you what i have now..

BR JE_Dialog

Enabling/disabling of the ADC is triggered by configuringbit GP_ADC_CTRL_REG[GP_ADC_LDO_EN].

After enabling the LDO, a settling time of 20 us isrequired before an AD-conversion can be started.Each conversion has two phases: the sampling phaseand the conversion phase. When bit

GP_ADC_CTRL_REG[GP_ADC_EN] is set to ‘1’, theADC continuously tracks (samples) the selected inputvoltage. Writing a '1' at bitGP_ADC_CTRL_REG[GP_ADC_START] ends the

sampling phase and triggers the conversion phase.When the conversion is ready, the ADC resets bitGP_ADC_START to ‘0’ and returns to the sampling

phase.The conversion itself is fast and takes approximately一个时钟周期16兆赫,though the data handlingwill require several additional clock cycles, depending

on the software code style. The fastest code can handlethe data in four clock cycles of 16 MHz, resulting toa highest sampling rate of 16 MHz/5 = 3.3 Msample/s.

Rony
Offline
Last seen:4 years 9 months ago
Master
加入:2014-05-15 15:02
The problem is not with the

The problem is not with the adc.
All I need is to wake up every 100 microsecs and do a measurement.
I can't use the app_timer for that because it can't do better than 100hz.
Can you send me a piece of code how I setup the timer, the callbacks,etc?

RvA
Offline
Last seen:1 week 1 day ago
工作人员
加入:2014-02-07 14:10
Hi Rony,

Hi Rony,

For a 2kHz sampling rate you need to wake up every 500us. For this interval speed it is not possible to use the sleep modes as the wake-up from extended sleep already takes a few milliseconds. Therefore you can use any timer to generate an interrupt at the 500us interval to initiate a conversion cycle.

Best regards, RvA (dialog)

RvA
Offline
Last seen:1 week 1 day ago
工作人员
加入:2014-02-07 14:10
Hi Rony, a related issue is

Hi Rony, a related issue is discussed herehttp://support.dialog-semiconductor.com/ultra-low-power-adc.

Best regards, RvA(Dialog)

Rony
Offline
Last seen:4 years 9 months ago
Master
加入:2014-05-15 15:02
Thanks

Thanks