Lines Matching refs:monitor

125 void MXC_ADC_EnableMonitor(mxc_adc_monitor_t monitor)  in MXC_ADC_EnableMonitor()  argument
127 MXC_ADC_RevA_EnableMonitor((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_EnableMonitor()
130 void MXC_ADC_DisableMonitor(mxc_adc_monitor_t monitor) in MXC_ADC_DisableMonitor() argument
132 MXC_ADC_RevA_DisableMonitor((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_DisableMonitor()
135 void MXC_ADC_SetMonitorHighThreshold(mxc_adc_monitor_t monitor, uint32_t threshold) in MXC_ADC_SetMonitorHighThreshold() argument
137 MXC_ADC_RevA_SetMonitorHighThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor, threshold); in MXC_ADC_SetMonitorHighThreshold()
140 int MXC_ADC_GetMonitorHighThreshold(mxc_adc_monitor_t monitor) in MXC_ADC_GetMonitorHighThreshold() argument
142 return MXC_ADC_RevA_GetMonitorHighThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_GetMonitorHighThreshold()
145 void MXC_ADC_SetMonitorLowThreshold(mxc_adc_monitor_t monitor, uint32_t threshold) in MXC_ADC_SetMonitorLowThreshold() argument
147 MXC_ADC_RevA_SetMonitorLowThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor, threshold); in MXC_ADC_SetMonitorLowThreshold()
150 int MXC_ADC_GetMonitorLowThreshold(mxc_adc_monitor_t monitor) in MXC_ADC_GetMonitorLowThreshold() argument
152 return MXC_ADC_RevA_GetMonitorLowThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_GetMonitorLowThreshold()
155 void MXC_ADC_SetMonitorChannel(mxc_adc_monitor_t monitor, mxc_adc_chsel_t channel) in MXC_ADC_SetMonitorChannel() argument
157 MXC_ADC_RevA_SetMonitorChannel((mxc_adc_reva_regs_t *)MXC_ADC, monitor, channel); in MXC_ADC_SetMonitorChannel()
160 int MXC_ADC_GetMonitorChannel(mxc_adc_monitor_t monitor) in MXC_ADC_GetMonitorChannel() argument
162 return MXC_ADC_RevA_GetMonitorChannel((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_GetMonitorChannel()
165 void MXC_ADC_EnableMonitorAsync(mxc_adc_monitor_t monitor, mxc_adc_monitor_cb_t callback) in MXC_ADC_EnableMonitorAsync() argument
167 MXC_ADC_RevA_EnableMonitorAsync(monitor, callback); in MXC_ADC_EnableMonitorAsync()
169 void MXC_ADC_DisableMonitorAsync(mxc_adc_monitor_t monitor) in MXC_ADC_DisableMonitorAsync() argument
171 MXC_ADC_RevA_DisableMonitorAsync(monitor); in MXC_ADC_DisableMonitorAsync()