diff --git a/include/sta/devices/stm32/adc.hpp b/include/sta/devices/stm32/adc.hpp new file mode 100644 index 0000000..b77555f --- /dev/null +++ b/include/sta/devices/stm32/adc.hpp @@ -0,0 +1,23 @@ +#ifndef STA_CORE_STM32_ADC_HPP +#define STA_CORE_STM32_ADC_HPP + +#include +#ifdef STA_PLATFORM_STM32 + +#include + +namespace sta +{ + class STM32ADC + { + public: + STM32ADC(); + + private: + + }; +} // namespace sta + +#endif // STA_PLATFORM_STM32 + +#endif // STA_CORE_STM32_ADC_HPP diff --git a/include/sta/devices/stm32/dac.hpp b/include/sta/devices/stm32/dac.hpp new file mode 100644 index 0000000..e85ec5b --- /dev/null +++ b/include/sta/devices/stm32/dac.hpp @@ -0,0 +1,17 @@ +#ifndef STA_CORE_STM32_DAC_HPP +#define STA_CORE_STM32_DAC_HPP + +#include +#ifdef STA_PLATFORM_STM32 + +namespace sta +{ + class DAC + { + + }; +} // namespace sta + +#endif // STA_PLATFORM_STM32 + +#endif // STA_CORE_STM32_DAC_HPP \ No newline at end of file