mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-12 01:25:59 +00:00
24 lines
341 B
C++
24 lines
341 B
C++
#ifndef STA_CORE_STM32_ADC_HPP
|
|
#define STA_CORE_STM32_ADC_HPP
|
|
|
|
#include <sta/config.hpp>
|
|
#ifdef STA_PLATFORM_STM32
|
|
|
|
#include <sta/devices/stm32/hal.hpp>
|
|
|
|
namespace sta
|
|
{
|
|
class STM32ADC
|
|
{
|
|
public:
|
|
STM32ADC();
|
|
|
|
private:
|
|
|
|
};
|
|
} // namespace sta
|
|
|
|
#endif // STA_PLATFORM_STM32
|
|
|
|
#endif // STA_CORE_STM32_ADC_HPP
|