Prusa-Firmware-MMU/src/hal/adc.h

14 lines
207 B
C++

#pragma once
#include <stdint.h>
/// Hardware Abstraction Layer for the ADC's
namespace hal {
namespace adc {
/// ADC access routines
uint16_t ReadADC(uint8_t adc);
} // namespace adc
} // namespace hal