Tool/software:
Hi
how to do the code like below for ss0
because ss0 will sample 8 channels continuously
how to get 8 sample data from ssfifo0 buffer, I am unable to proceed further in code
all examples show, only for ss3 single channel
while(1) {
ADC0->PSSI |= (1<<3); /* Enable SS3 conversion or start sampling data from AN0 */
while((ADC0->RIS & 8) == 0) ; /* Wait untill sample conversion completed*/
adc_value = ADC0->SSFIFO3; /* read adc coversion result from SS3 FIFO*/
ADC0->ISC = 8; /* clear coversion clear flag bit*/
The above example, is for ss3, with single channel
i don't want to use ADCSequenceDataGet