Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
MockDAC.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef STM32F767_MOCKDAC_H
4#define STM32F767_MOCKDAC_H
5
8#include <map>
9
10namespace imt {
11namespace base {
12namespace hal {
13namespace stm32f767 {
14namespace mock {
15
16using ::imt::base::hal::stm32f767::peripherals::DAC;
17
21class MockDAC {
22public:
23
27 explicit MockDAC() {
28 clear();
29 }
30
34 virtual ~MockDAC() {
35 }
36
40 void clear() {
41 m_isConfiguredMap.clear();
42 m_valueMap.clear();
43 m_isStartedMap.clear();
44 }
45
46 // below all necessary mock methods for the DAC Hal are implemented
47 void configChannel(DAC::Channel const channel) {
48 m_isConfiguredMap[channel] = true;
49 }
50
51 void setValue(DAC::Channel const channel, uint32_t const data) {
52 m_valueMap[channel] = data;
53 }
54
55 void setValueDual(uint32_t const dataChannel1, uint32_t const dataChannel2) {
56 m_valueMap[DAC::Channel::Channel1] = dataChannel1;
57 m_valueMap[DAC::Channel::Channel2] = dataChannel2;
58 }
59
60 void start(DAC::Channel const channel) {
61 m_isStartedMap[channel] = true;
62 }
63
64 // methods for unit tests
65 bool isConfigured(DAC::Channel const channel) {
66 return m_isConfiguredMap[channel];
67 }
68
69 uint32_t getValue(DAC::Channel const channel) {
70 return m_valueMap[channel];
71 }
72
73 bool isStarted(DAC::Channel const channel) {
74 return m_isStartedMap[channel];
75 }
76
77private:
78
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;
82};
83
84} // namespace mock
85} // namespace stm32f767
86} // namespace hal
87} // namespace base
88} // namespace imt
89
90#endif // STM32F767_MOCKDAC_H
Mock implementation for the DAC module.
Definition MockDAC.h:21
bool isStarted(DAC::Channel const channel)
Definition MockDAC.h:73
uint32_t getValue(DAC::Channel const channel)
Definition MockDAC.h:69
void setValue(DAC::Channel const channel, uint32_t const data)
Definition MockDAC.h:51
void configChannel(DAC::Channel const channel)
Definition MockDAC.h:47
void setValueDual(uint32_t const dataChannel1, uint32_t const dataChannel2)
Definition MockDAC.h:55
bool isConfigured(DAC::Channel const channel)
Definition MockDAC.h:65
void clear()
Sets the mock back to the initial state.
Definition MockDAC.h:40
void start(DAC::Channel const channel)
Definition MockDAC.h:60
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64