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

Related to ADC

Dear nordic,

i want to create a low power current consumption ADC. i don't need  adc value in every time. my need is just take adc value and disable it. 

whenever i want ADC value just enable and take value after it's disable.

here ADC used with softdevice and in my application RTC2 is used for calender application.

is it possible this done with app timer?

can you guide me how i implement low power adc with softdevice?

Parents
  • Here is a case that demonstrates how to trigger ADC sampling from RTC events. Be aware that RTC0 is blocked when the SoftDevice is enabled (See chapter 7.1 of the S132 SoftDevice Specification). Using RTC1 will work fine.

    Best regards,

    Simon

  • i implemented adc as per example. problem i face here is when i give 3.3 v its showing only 2.7 v why adc behave like this?

    other thing i observed that below 3v  works fine .ie when i apply below 3 v ADC voltage get perfect. why i can't get voltage above 3 volt?

    void saadc_init(void)
    {
    
    ret_code_t err_code;
        nrf_drv_saadc_config_t saadc_config;
        nrf_saadc_channel_config_t channel_config;
    
    
    	
        //Configure SAADC
        saadc_config.low_power_mode = true;                                                   //Enable 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.
    	
        //Initialize SAADC
        err_code = nrf_drv_saadc_init(&saadc_config, saadc_callback);                         //Initialize the SAADC with configuration and callback function. The application must then implement the saadc_callback function, which will be called when SAADC interrupt is triggered
        APP_ERROR_CHECK(err_code);
    		
        //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_10US;                                     //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_AIN1;                                          //Select the input pin for the channel. AIN0 pin maps to physical pin P0.02.
        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
    
    	
        //Initialize SAADC channel
        err_code = nrf_drv_saadc_channel_init(0, &channel_config);                            //Initialize SAADC channel 0 with the channel configuration
        APP_ERROR_CHECK(err_code);
    		
        if(SAADC_BURST_MODE)
        {
            NRF_SAADC->CH[0].CONFIG |= 0x01000000;                                            //Configure burst mode for channel 0. Burst is useful together with oversampling. When triggering the SAMPLE task in burst mode, the SAADC will sample "Oversample" number of times as fast as it can and then output a single averaged value to the RAM buffer. If burst mode is not enabled, the SAMPLE task needs to be triggered "Oversample" number of times to output a single averaged value to the RAM buffer.		
        }
    
        err_code = nrf_drv_saadc_buffer_convert(m_buffer_pool[0],SAADC_SAMPLES_IN_BUFFER);    //Set SAADC buffer 1. The SAADC will start to write to this buffer
        APP_ERROR_CHECK(err_code);
    
        
        err_code = nrf_drv_saadc_buffer_convert(m_buffer_pool[1],SAADC_SAMPLES_IN_BUFFER);    //Set SAADC buffer 2. The SAADC will write to this buffer when buffer 1 is full. This will give the applicaiton time to process data in buffer 1.
        APP_ERROR_CHECK(err_code);
    
    
    }
    
    
    void saadc_callback(nrf_drv_saadc_evt_t const * p_event)
    {
        if (p_event->type == NRF_DRV_SAADC_EVT_DONE)
        {
            ret_code_t err_code;
    
            err_code = nrf_drv_saadc_buffer_convert(p_event->data.done.p_buffer, SAMPLES_IN_BUFFER);
            APP_ERROR_CHECK(err_code);
    
            int i;
           // NRF_LOG_INFO("ADC event number: %d", (int)m_adc_evt_counter);
    
            for (i = 0; i < SAMPLES_IN_BUFFER; i++)
            {
               // NRF_LOG_INFO("%d", p_event->data.done.p_buffer[i]);
            }
            m_adc_evt_counter++;
        }
    		ADC_VALUE= (((p_event->data.done.p_buffer[0] * 0.6) / (4096-1)) / 0.1666);
    	
    
    }

    I need a support to rectify it?

  • Sorry for the long delay. Have you been able to figure it out? If not I will look into it.

  • Hii Simon,

    It's works fine below 3V but above 3V its not get proper ADC reading

    Is it any mistake in my procedure?

  • If you are using USB as power supply, the 5 V will be regulated down to 3.3 V through an on-board voltage regulator. Then, a voltage drop will be added due to reverse voltage protection diodes, which will result in a VDD of roughly 3 V. (I measured a VDD of 2.9 volt on my nRF52832 DK). A solution can be to disconnect the USB, and use an external power supply.

    Best regards,

    Simon

Reply
  • If you are using USB as power supply, the 5 V will be regulated down to 3.3 V through an on-board voltage regulator. Then, a voltage drop will be added due to reverse voltage protection diodes, which will result in a VDD of roughly 3 V. (I measured a VDD of 2.9 volt on my nRF52832 DK). A solution can be to disconnect the USB, and use an external power supply.

    Best regards,

    Simon

Children
No Data
Related