now i work with nrf52832 saadc sample program. i have to change saadc resolution into 14bit. what changes i need to do?
now i work with nrf52832 saadc sample program. i have to change saadc resolution into 14bit. what changes i need to do?
Hi
nrf_drv_saadc_config_t saadc_config = NRF_DRV_SAADC_DEFAULT_CONFIG;
saadc_config.resolution = NRF_SAADC_RESOLUTION_12BIT;
err_code = nrf_drv_saadc_init(&saadc_config, saadc_callback);
APP_ERROR_CHECK(err_code);
add this in initialisation part ,then can change the SAADC resolution in nRF52832
Hi
nrf_drv_saadc_config_t saadc_config = NRF_DRV_SAADC_DEFAULT_CONFIG;
saadc_config.resolution = NRF_SAADC_RESOLUTION_12BIT;
err_code = nrf_drv_saadc_init(&saadc_config, saadc_callback);
APP_ERROR_CHECK(err_code);
add this in initialisation part ,then can change the SAADC resolution in nRF52832