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

Difference in SAADC with softdevice and without softdevice

Hello Nordic team,

I am using SAADC in order to read values coming out of my current sense amplifier [INA180]. I am sensing the current through a fan which takes up to 0.27A. I basically want to detect when there is no current flowing through the path and report it accordingly. 

When using your saadc example - a negative value is detected when no current flows. A very small voltage count is detected when the fan is connected. However, when loading it in a project those 2 scenarios report the same values making it very hard for me to detect a change. I am not sure what is causing this as the saadc and channels are running the same configuration. I am planning on using this in non-blocking mode. Does using blocking mode make more sense?

I can post my code here if needed. 

Appreciate your time and help,

  • How have you configured the SAADC?

    "A very small voltage count is detected when the fan is connected."
    What are the two different voltage levels when the fan is on and off?

    "I am planning on using this in non-blocking mode. Does using blocking mode make more sense?"
    That has no impact on the SAADC, the only impact is whether you block the CPU or not. 

    "Difference in SAADC with softdevice and without softdevice"
    What do you mean by this statement, what are your observations?

  • This is my SAADC config:

        //Configure SAADC
        saadc_config.low_power_mode = false;                                                  //Disable low power mode.
        saadc_config.resolution = NRF_SAADC_RESOLUTION_12BIT;                                 //Set SAADC resolution to 12-bit. This will make the SAADC output values from 0 (when input voltage is 0V) to 2^12=2048 (when input voltage is 3.6V for channel gain setting of 1/6).
        saadc_config.oversample = SAADC_OVERSAMPLE;                                           //Set oversample to 4x. This will make the SAADC output a single averaged value when the SAMPLE task is triggered 4 times.
        saadc_config.interrupt_priority = APP_IRQ_PRIORITY_LOW;                               //Set SAADC interrupt to low priority.
    This is my channel config:

    //Configure SAADC channel
        channel_config.reference = NRF_SAADC_REFERENCE_INTERNAL;                              //Set internal reference of fixed 0.6 volts
        channel_config.gain = NRF_SAADC_GAIN1_6;                                              //Set input gain to 1/6. The maximum SAADC input voltage is then 0.6V/(1/6)=3.6V. The single ended input range is then 0V-3.6V
        channel_config.acq_time = NRF_SAADC_ACQTIME_40US;                                     //Set acquisition time. Set low acquisition time to enable maximum sampling frequency of 200kHz. Set high acquisition time to allow maximum source resistance up to 800 kohm, see the SAADC electrical specification in the PS. 
        channel_config.mode = NRF_SAADC_MODE_SINGLE_ENDED;                                    //Set SAADC as single ended. This means it will only have the positive pin as input, and the negative pin is shorted to ground (0V) internally.
        channel_config.pin_p = NRF_SAADC_INPUT_AIN7;                                          //Select the input pin for the channel. AIN7 pin maps to physical pin P0.31.
        channel_config.pin_n = NRF_SAADC_INPUT_DISABLED;                                      //Since the SAADC is single ended, the negative pin is disabled. The negative pin is shorted to ground internally.
        channel_config.resistor_p = NRF_SAADC_RESISTOR_DISABLED;                              //Disable pullup resistor on the input pin
        channel_config.resistor_n = NRF_SAADC_RESISTOR_DISABLED;                              //Disable pulldown resistor on the input pin

    What are the two different voltage levels when the fan is on and off?

    Now, when the fan is running I see hex codes ranging from 0x003A - 0x004A. When the fan is unplugged I see 0xFFFF and the occasional 0x0000.  

    Please note that switching to a blocking mode is giving me far better results, than non-blocking mode. I have opted to go with that. Using a timer - every 6 seconds I am to read the SAADC input.

    What do you mean by this statement, what are your observations?

    What I meant by this was that when I am using just the peripherals/saadc example under non-blocking mode and I was seeing values as described above. But when included with my main project that doesn't seem to be the case. With fanOFF i see 0xEB and with fanON i see a value lesser than that. Which doesn't make much sense

    Anyhow, blocking mode operations seems to be working fine for this application.

  • The radio can induce a small amount of noise in the SAADC, but other than that there's no difference in blocking vs non-blocking. If you're experiencing vastly different behavior then there's something wrong in the way the sampling is set up. 

    If you're okay with blocking mode then there's no real reason to investigate any further. 

Related