Lines Matching refs:monitor
134 void MXC_ADC_EnableMonitor(mxc_adc_monitor_t monitor) in MXC_ADC_EnableMonitor() argument
136 MXC_ADC_RevA_EnableMonitor((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_EnableMonitor()
140 void MXC_ADC_DisableMonitor(mxc_adc_monitor_t monitor) in MXC_ADC_DisableMonitor() argument
142 MXC_ADC_RevA_DisableMonitor((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_DisableMonitor()
146 void MXC_ADC_SetMonitorHighThreshold(mxc_adc_monitor_t monitor, uint32_t threshold) in MXC_ADC_SetMonitorHighThreshold() argument
148 MXC_ADC_RevA_SetMonitorHighThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor, threshold); in MXC_ADC_SetMonitorHighThreshold()
152 int MXC_ADC_GetMonitorHighThreshold(mxc_adc_monitor_t monitor) in MXC_ADC_GetMonitorHighThreshold() argument
154 return MXC_ADC_RevA_GetMonitorHighThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_GetMonitorHighThreshold()
158 void MXC_ADC_SetMonitorLowThreshold(mxc_adc_monitor_t monitor, uint32_t threshold) in MXC_ADC_SetMonitorLowThreshold() argument
160 MXC_ADC_RevA_SetMonitorLowThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor, threshold); in MXC_ADC_SetMonitorLowThreshold()
164 int MXC_ADC_GetMonitorLowThreshold(mxc_adc_monitor_t monitor) in MXC_ADC_GetMonitorLowThreshold() argument
166 return MXC_ADC_RevA_GetMonitorLowThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_GetMonitorLowThreshold()
170 void MXC_ADC_SetMonitorChannel(mxc_adc_monitor_t monitor, mxc_adc_chsel_t channel) in MXC_ADC_SetMonitorChannel() argument
172 MXC_ADC_RevA_SetMonitorChannel((mxc_adc_reva_regs_t *)MXC_ADC, monitor, channel); in MXC_ADC_SetMonitorChannel()
176 int MXC_ADC_GetMonitorChannel(mxc_adc_monitor_t monitor) in MXC_ADC_GetMonitorChannel() argument
178 return MXC_ADC_RevA_GetMonitorChannel((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_GetMonitorChannel()
182 void MXC_ADC_EnableMonitorAsync(mxc_adc_monitor_t monitor, mxc_adc_monitor_cb_t callback) in MXC_ADC_EnableMonitorAsync() argument
184 MXC_ADC_RevA_EnableMonitorAsync(monitor, callback); in MXC_ADC_EnableMonitorAsync()
188 void MXC_ADC_DisableMonitorAsync(mxc_adc_monitor_t monitor) in MXC_ADC_DisableMonitorAsync() argument
190 MXC_ADC_RevA_DisableMonitorAsync(monitor); in MXC_ADC_DisableMonitorAsync()