uint8_t sdadc_lld_read(SDADCDriver *sdadcp, float* converted_value) {
int16_t data;
uint8_t return_value = SDADC_DATA_NOTVALID;
/* check if valid data is available */
if (sdadcp->sdadc->SFR.B.DFEF == 0U) /* <- Check if the FIFO is not emp...
Hi Erwan, thank you for the reply. I found in this project this solution:SDADC is inited and the "start_conversion" is called;Then, the sdadc_lld_read is called to get the data into a task (no period, is called continuously, I will check the clock);I...