15 lines
311 B
C
15 lines
311 B
C
/**
|
|
* @file adc_mux.h
|
|
* @brief Helpers for external photodiode ADCs and internal STM32 ADC channels.
|
|
*/
|
|
|
|
#ifndef ADC_MUX_H
|
|
#define ADC_MUX_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint16_t adc_mux_read_external_channel(uint8_t channel_index);
|
|
uint16_t adc_mux_process_internal_adc_step(uint8_t step);
|
|
|
|
#endif /* ADC_MUX_H */
|