This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Simple one shot ADC example

Hi,

I'm trying to find simple ADC code for one shot modus as described in the documentation:
https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52832.ps.v1.1%2Fsaadc.html

The question has been asked before (without any concrete answer):
https://devzone.nordicsemi.com/f/nordic-q-a/46716/simple-adc-code/184681#184681

Another here (but I don't understand/cannot follow the thread):
https://devzone.nordicsemi.com/f/nordic-q-a/7188/simple-thermistor-adc-reading

The SDK provides an example with SAADC, which I got to work fine.
The disadvantage is that this example is pretty complex and uses timers (which conflicts with other parts of my code which also need timers).
Also I'm not able to integrate this SAADC example into my project, I have the same problem as here:
https://devzone.nordicsemi.com/f/nordic-q-a/33850/nrf_section_iter-problem-with-sdk-15-and-armgcc/130057#130057

I do not understand "linker script file"?

But I also don't understand why the examples are so complex? Why is it extremely difficult to combine examples?

Simple Arduino example how to perform an analog read:

I found this thread "Simple ADC read":
https://devzone.nordicsemi.com/f/nordic-q-a/19934/simple-analog-read-on-nrf52/77586#77586

And they point to an example on github:
github.com/.../main.c

The example doesn't give any output, so I updated the code a bit:



But the result is always 0 (or 3 when using VDD). Did I set the wrong ADC channel? I'm sure I need NRF_SAADC_INPUT_AIN7?

I'm sure it is possible to do a ADC read without timers, but how?

Parents
  • Hello,

    I agree that this example is a bit complex for showing some simple functionality.

    But it is actually quite simple to change this from using PPI to trigger it manually. Please check out the attached main.c file, which is a modification from the saadc examples main.c file:

    Please note that I changed one parameter in nrf_drv_timer_extended_compare() as well, in order to trigger the timer interrupt handler in the application.

    The advantage of using PPI is that you don't need to rely on/wait for the CPU in order to trigger the sampling, but it is not necessary to use it.

    Best regards,

    Edvin

  • Hi Edwin,

    Thanks for your reply.

    This code does not use one shot mode but continues mode.

    Also this code uses timers. I don't have timers available because they are being used by other peripherals.

    I know the advantage of not waiting for the CPU. But because of the limited resources I rather have a simple example that waits to the CPU than a complex example that uses a lot of fancy includes & functionality that make no sense to me.

    Is it even possible to do ADC without timer? All I need is:

    I don't mind to wait 50ms.

    /Philip

  • This is what I tried to show with the attached example.

    Use 

    nrf_drv_saadc_sample();

    or

    NRF_SAADC->TASKS_SAMPLE = 1;

    to trigger one sample from anywhere in your project. The point was that I detached the PPI from the timer, and called it in the interrupt. You can of course call it from anywhere.

  • If I follow your code.

    In the function main() there's a call to saadc_sampling_event_init().

    In the function saadc_sampling_event_init() there's a call to nrf_drv_timer_init().

    I tried to remove all timer related stuff, but then it no longer works. I'm looking specifically for an example without timers. Which means without any reference to *timer* function calls and without any *timer* includes.

  • Philip, you seem to miss my point.

    You can remove saadc_sampling_event_init() and saadc_sampling_event_enable() from my main.c file, but you will have to call nrf_drv_saadc_sample() from somewhere.

    If I removed this from the file before sending it to you, I would be sending a project that does nothing.

    Try to remove those functions, and add nrf_drv_saadc_sample() to whatever event you want to trigger the sampling from. 

Reply
  • Philip, you seem to miss my point.

    You can remove saadc_sampling_event_init() and saadc_sampling_event_enable() from my main.c file, but you will have to call nrf_drv_saadc_sample() from somewhere.

    If I removed this from the file before sending it to you, I would be sending a project that does nothing.

    Try to remove those functions, and add nrf_drv_saadc_sample() to whatever event you want to trigger the sampling from. 

Children
No Data