mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-12 01:25:59 +00:00
added skelettons for stm32 dac and adc
This commit is contained in:
parent
5e04b2cfcb
commit
2265131b3f
23
include/sta/devices/stm32/adc.hpp
Normal file
23
include/sta/devices/stm32/adc.hpp
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
#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
|
17
include/sta/devices/stm32/dac.hpp
Normal file
17
include/sta/devices/stm32/dac.hpp
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#ifndef STA_CORE_STM32_DAC_HPP
|
||||||
|
#define STA_CORE_STM32_DAC_HPP
|
||||||
|
|
||||||
|
#include <sta/config.hpp>
|
||||||
|
#ifdef STA_PLATFORM_STM32
|
||||||
|
|
||||||
|
namespace sta
|
||||||
|
{
|
||||||
|
class DAC
|
||||||
|
{
|
||||||
|
|
||||||
|
};
|
||||||
|
} // namespace sta
|
||||||
|
|
||||||
|
#endif // STA_PLATFORM_STM32
|
||||||
|
|
||||||
|
#endif // STA_CORE_STM32_DAC_HPP
|
Loading…
x
Reference in New Issue
Block a user