Lines Matching refs:monitor

129 void MXC_ADC_EnableMonitor(mxc_adc_monitor_t monitor)  in MXC_ADC_EnableMonitor()  argument
131 MXC_ADC_RevA_EnableMonitor((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_EnableMonitor()
134 void MXC_ADC_DisableMonitor(mxc_adc_monitor_t monitor) in MXC_ADC_DisableMonitor() argument
136 MXC_ADC_RevA_DisableMonitor((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_DisableMonitor()
139 void MXC_ADC_SetMonitorHighThreshold(mxc_adc_monitor_t monitor, uint32_t threshold) in MXC_ADC_SetMonitorHighThreshold() argument
141 MXC_ADC_RevA_SetMonitorHighThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor, threshold); in MXC_ADC_SetMonitorHighThreshold()
144 int MXC_ADC_GetMonitorHighThreshold(mxc_adc_monitor_t monitor) in MXC_ADC_GetMonitorHighThreshold() argument
146 return MXC_ADC_RevA_GetMonitorHighThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_GetMonitorHighThreshold()
149 void MXC_ADC_SetMonitorLowThreshold(mxc_adc_monitor_t monitor, uint32_t threshold) in MXC_ADC_SetMonitorLowThreshold() argument
151 MXC_ADC_RevA_SetMonitorLowThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor, threshold); in MXC_ADC_SetMonitorLowThreshold()
154 int MXC_ADC_GetMonitorLowThreshold(mxc_adc_monitor_t monitor) in MXC_ADC_GetMonitorLowThreshold() argument
156 return MXC_ADC_RevA_GetMonitorLowThreshold((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_GetMonitorLowThreshold()
159 void MXC_ADC_SetMonitorChannel(mxc_adc_monitor_t monitor, mxc_adc_chsel_t channel) in MXC_ADC_SetMonitorChannel() argument
161 MXC_ADC_RevA_SetMonitorChannel((mxc_adc_reva_regs_t *)MXC_ADC, monitor, channel); in MXC_ADC_SetMonitorChannel()
164 int MXC_ADC_GetMonitorChannel(mxc_adc_monitor_t monitor) in MXC_ADC_GetMonitorChannel() argument
166 return MXC_ADC_RevA_GetMonitorChannel((mxc_adc_reva_regs_t *)MXC_ADC, monitor); in MXC_ADC_GetMonitorChannel()
169 void MXC_ADC_EnableMonitorAsync(mxc_adc_monitor_t monitor, mxc_adc_monitor_cb_t callback) in MXC_ADC_EnableMonitorAsync() argument
171 MXC_ADC_RevA_EnableMonitorAsync(monitor, callback); in MXC_ADC_EnableMonitorAsync()
174 void MXC_ADC_DisableMonitorAsync(mxc_adc_monitor_t monitor) in MXC_ADC_DisableMonitorAsync() argument
176 MXC_ADC_RevA_DisableMonitorAsync(monitor); in MXC_ADC_DisableMonitorAsync()