Based on all comments provided below, complete the following…
Based on all comments provided below, complete the following “C” function, adca_init, by selecting the appropriate choice in each of the given dropdown boxes. The response chosen for some dropdown box is meant to replace the “” statement that immediately precedes this box. /*————————————————————– adca_init — Description: Initialize and enable the ADCA module of the ATxmega128A1U, as described within the first item of the prompt given before this question, following the standard assumption that the ATxmega128A1U has a system clock frequency of 2 MHz. Input(s): N/A Output(s): N/A————————————————————–*/void adca_init(void){ /* Prepare the ADCA module. */ ADCA.CTRLB = ; ADCA.REFCTRL = ; ADCA.PRESCALER = ; /* Configure CH1 of ADCA. */ ADCA.CH1.CTRL = ; ADCA.CH1.MUXCTRL = ; /* Enable ADCA. */ ADCA.CTRLA = ; }