Hi I am trying to write a ADC framework for FSP. I am checking the SSP ADC framework, I found that it uses ELC event of a gpt to trigger ADC scanBasicaly SSP uses like that p_timer_api->infoGet(p_timer_ctrl, &timer_info);elc_event = timer_info.elc_event;g_elc_on_elc.linkSet(adc_info.elc_peripheral, elc_event);
But in FSP I could not find the ELC Event of timer in timer_info or anywhere. How can I link the adc scan and gpt timer in FSP like SSP one.Thank you for your help