Hi Nordic:
I have a question about retart saadc. i want to restart saadc in a bsp event(BSP_EVENT_KEY_3) and it works. the following is my code:
int spcr_flag = 0; void bsp_event_handler(bsp_event_t event) { switch (event) { case BSP_EVENT_KEY_3: if(opswitch) { spcr_flag = 1; stop_saadc(); start_saadc(); } break; default: break; } } void stop_saadc(void) { nrf_drv_timer_disable(&m_timer); nrf_drv_timer_uninit(&m_timer); nrf_drv_ppi_channel_disable(m_ppi_channel); nrf_drv_ppi_uninit(); nrf_drv_saadc_abort(); nrf_drv_saadc_uninit(); while(nrf_drv_saadc_is_busy()); } void start_saadc(void) { saadc_sampling_event_init(); saadc_init(); saadc_sampling_event_enable(); m_adc_evt_counter= 0; }
i learned in this forum that this stop_saadc function can solve the channel data shifting problem, but is it really neccessary with so many steps like that?
and how many times it takes to finish stop_saadc() and start_saadc() ? how could i measure it? i hope it is as short as possible.
i sampled 4 channels(ch0~ch3) with two buffers, the buffer size(SAMPLES_IN_BUFFER) is 4.
in my opinion, if the last sample is not finished when i restart saadc, there may be some residual data in p_buffer(for example, channel0 and channel1 data), and the next sample channel0 and channel1 data may store with them in the same buffer. in the end,the numbers of saadc data for each channel may be different. so i want to clear the p_buffer before restart saadc,i don't know how to ? memset(p_event->data.done.p_buffer,'\0',4)?. i don't know if my understanding is right.