added skelettons for stm32 dac and adc

This commit is contained in:
Dario 2023-07-15 16:41:29 +01:00
parent 5e04b2cfcb
commit 2265131b3f
2 changed files with 40 additions and 0 deletions

View 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

View 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