mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-06 07:53:43 +08:00
12 lines
230 B
C
12 lines
230 B
C
#ifndef ADC_GENERIC_H
|
|
#define ADC_GENERIC_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
extern uint16_t adc_generic_val1;
|
|
extern uint16_t adc_generic_val2;
|
|
void adc_generic_init( void );
|
|
void adc_generic_periodic( void );
|
|
|
|
#endif /* ADC_GENERIC_H */
|