3#ifndef STM32F767_MOCKDAC_H
4#define STM32F767_MOCKDAC_H
16using ::imt::base::hal::stm32f767::peripherals::DAC;
41 m_isConfiguredMap.clear();
43 m_isStartedMap.clear();
48 m_isConfiguredMap[channel] =
true;
52 m_valueMap[channel] = data;
56 m_valueMap[DAC::Channel::Channel1] = dataChannel1;
57 m_valueMap[DAC::Channel::Channel2] = dataChannel2;
60 void start(DAC::Channel
const channel) {
61 m_isStartedMap[channel] =
true;
66 return m_isConfiguredMap[channel];
70 return m_valueMap[channel];
74 return m_isStartedMap[channel];
79 std::map<DAC::Channel, bool> m_isConfiguredMap;
80 std::map<DAC::Channel, uint32_t> m_valueMap;
81 std::map<DAC::Channel, bool> m_isStartedMap;
Mock implementation for the DAC module.
bool isStarted(DAC::Channel const channel)
uint32_t getValue(DAC::Channel const channel)
void setValue(DAC::Channel const channel, uint32_t const data)
void configChannel(DAC::Channel const channel)
void setValueDual(uint32_t const dataChannel1, uint32_t const dataChannel2)
bool isConfigured(DAC::Channel const channel)
void clear()
Sets the mock back to the initial state.
void start(DAC::Channel const channel)
virtual ~MockDAC()
Destructor.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t